/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --dark-hero:    #1C0F08;
  --dark-section: #3A2416;
  --warm-brown:   #8A5A35;
  --warm-brown-hover: #6B4526;
  --cream:        #F3E6D0;
  --cream-dark:   #E8D5B8;
  --linen:        #C8B79B;
  --green:        #5E6B48;
  --bordeaux:     #7A1F1F;
  --off-black:    #17120E;
  --white:        #FFFFFF;
  --text-on-dark: rgba(243,230,208,0.85);
  --overlay-dark: rgba(28,15,8,0.72);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --section-pad: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 80px);
  --max-w: 1280px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--off-black);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(243, 230, 208, 0.88);
  color: var(--dark-hero);
}

::-moz-selection {
  background: rgba(243, 230, 208, 0.88);
  color: var(--dark-hero);
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.font-display { font-family: 'Playfair Display', serif; }

.section-label {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-brown);
  margin-bottom: 16px;
}

.section-label--light {
  color: var(--linen);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--off-black);
}

.section-title--light {
  color: var(--white);
}

.section-body {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: #5a4a3a;
  max-width: 540px;
}

.section-body--light {
  color: var(--text-on-dark);
  max-width: 540px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--warm-brown);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--warm-brown-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(58,36,22,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(243,230,208,0.6);
}
.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(243,230,208,0.08);
}

.btn-outline--dark {
  background: transparent;
  color: var(--warm-brown);
  border: 1.5px solid var(--warm-brown);
}
.btn-outline--dark:hover {
  background: var(--warm-brown);
  color: var(--white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 5vw, 80px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(28, 15, 8, 0.0);
  backdrop-filter: blur(0px);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,15,8,0.65) 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

.navbar--scrolled {
  background: rgba(28, 15, 8, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(0,0,0,0.35);
}

.navbar--scrolled::after { display: none; }

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo__badge {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.nav-logo__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-logo__text {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-logo__sub {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--linen);
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--warm-brown);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* TR | EN Dil Toggle */
.nav-lang-toggle {
  background: none;
  border: 1.5px solid rgba(243,230,208,0.35);
  border-radius: 20px;
  padding: 5px 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(243,230,208,0.55);
  transition: border-color 0.25s, color 0.25s;
  flex-shrink: 0;
}

.nav-lang-toggle:hover {
  border-color: var(--cream);
  color: var(--cream);
}

.lang-opt {
  transition: color 0.2s;
}

.lang-opt.active {
  color: var(--warm-brown);
  font-weight: 700;
}

.lang-sep {
  opacity: 0.35;
  font-size: 10px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile overlay */
.nav-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--dark-hero);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px);
  transition:
    opacity 0.45s cubic-bezier(0.4,0,0.2,1),
    visibility 0.45s,
    transform 0.45s cubic-bezier(0.4,0,0.2,1);
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.nav-overlay a {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(22px);
  transition:
    color var(--transition),
    opacity 0.4s ease,
    transform 0.4s ease;
}

.nav-overlay.open a:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.10s; }
.nav-overlay.open a:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.18s; }
.nav-overlay.open a:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.26s; }
.nav-overlay.open a:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.34s; }

.nav-overlay a:hover,
.nav-overlay a.active {
  color: var(--warm-brown);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark-hero);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero arka plan — tam ekran (video veya görsel) */
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.hero__img-wrap img,
.hero__img-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Gradient overlay — metin okunabilirliği */
.hero__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(28,15,8,0.88) 0%,
      rgba(28,15,8,0.65) 35%,
      rgba(28,15,8,0.30) 60%,
      rgba(28,15,8,0.12) 100%
    ),
    linear-gradient(
      to top,
      rgba(28,15,8,0.45) 0%,
      transparent 40%
    );
  z-index: 1;
}

/* Hero içerik — video başlarken gizli, JS ile açılır */
.hero__content {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s ease;
}

.hero__content.hero--revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Breadcrumb da birlikte gelsin ama biraz gecikmeli */
.hero__breadcrumb {
  transition-delay: 0s;
}
.hero__title {
  transition-delay: 0.15s;
}
.hero__subtitle {
  transition-delay: 0.25s;
}
.hero__actions {
  transition-delay: 0.35s;
}
.hero__badge {
  transition-delay: 0.45s;
}

/* hero__inner: artık yalnızca metin içeriği taşır */
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px clamp(20px, 5vw, 80px) 80px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--linen);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.7;
}

.hero__breadcrumb span { opacity: 0.5; }

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__title em {
  font-style: italic;
  color: var(--linen);
}

.hero__subtitle {
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--text-on-dark);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 440px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--linen);
  opacity: 0.8;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--warm-brown);
  border-radius: var(--radius-full);
}


/* Hafif radyal warm-tone vurgusu */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 10% 80%, rgba(28,15,8,0.5) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   PLACEHOLDER IMAGES
   ============================================================ */
.placeholder-img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: linear-gradient(135deg, #2E1A0F 0%, #4A2E1A 50%, #3A2416 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: inherit;
  overflow: hidden;
}

.placeholder-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(138,90,53,0.04) 40px,
      rgba(138,90,53,0.04) 41px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(138,90,53,0.04) 40px,
      rgba(138,90,53,0.04) 41px
    );
}

.placeholder-img span {
  position: relative;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(200,183,155,0.5);
  text-transform: uppercase;
}

.placeholder-img--light {
  background: linear-gradient(135deg, #E8D5B8 0%, #D4BFA0 50%, #C8B79B 100%);
}

.placeholder-img--light span {
  color: rgba(90,74,58,0.45);
}

.placeholder-img--hero {
  min-height: 400px;
  background: linear-gradient(160deg, #251408 0%, #3A2416 60%, #4A2E1A 100%);
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section {
  padding: var(--section-pad);
}

.section--cream { background: var(--cream); }
.section--dark  { background: var(--dark-section); position: relative; overflow: hidden; }
.section--hero-dark { background: var(--dark-hero); }
.section--off-black { background: var(--off-black); }

/* ============================================================
   SECTION BANNER — dark section arkaplan görseli
   ============================================================ */
.section-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.section-banner picture {
  display: block;
  width: 100%;
  height: 100%;
}

.section-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.38;
}

.banner-cta-section--contact .section-banner {
  background: #2B190F;
}

.banner-cta-section--contact .section-banner img {
  object-position: center bottom;
  opacity: 0.5;
  transform: none;
}

/* Dark section içeriği banner'ın üzerinde kalır */
.section--dark > .container,
.section--dark > nav,
.section--dark > div:not(.section-banner) {
  position: relative;
  z-index: 1;
}

/* Banner-only section (iletişim gibi) — özel yükseklik */
.banner-cta-section {
  min-height: 420px;
  display: flex;
  align-items: center;
}

.banner-cta-section .container {
  width: 100%;
}

.banner-cta {
  max-width: 560px;
}

.section__head {
  margin-bottom: 52px;
}

.section__head--center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

/* ============================================================
   BIZ KIMIZ ÖNIZLEME (ANA SAYFA)
   ============================================================ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ============================================================
   STORY FULL-WIDTH (biz-kimiz hikaye bölümü)
   ============================================================ */
.story-fullwidth {
  max-width: 820px;
}

.story-fullwidth__label {
  margin-bottom: 20px;
}

.story-fullwidth__title {
  display: flex;
  flex-direction: column;
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6.5vw, 82px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--off-black);
  margin: 0 0 44px;
}

.story-fullwidth__line {
  display: block;
}

.story-fullwidth__line--em {
  font-style: italic;
  color: var(--warm-brown);
}

.story-photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  margin-bottom: 44px;
}

.story-photo-strip img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.story-photo-strip img:first-child {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .story-photo-strip {
    grid-template-columns: 1fr;
  }
}

.story-fullwidth__rule {
  width: 100%;
  height: 1px;
  background: rgba(138, 90, 53, 0.18);
  margin: 0 0 44px;
}

.story-fullwidth__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 52px;
  margin-bottom: 36px;
}

.story-fullwidth__body .section-body:last-child {
  grid-column: 1 / -1;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .story-fullwidth__body {
    grid-template-columns: 1fr;
  }
  .story-fullwidth__body .section-body:last-child {
    grid-column: 1;
    margin-top: 14px;
  }
}

/* === 2×2 simetrik grid (biz-kimiz) === */
.images-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 540px;
}

.images-grid-2x2__item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* === Editorial collage layout === */
.about-preview__images {
  position: relative;
  height: 540px;
}

.about-preview__img {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Büyük ana görsel — sol, tam yükseklik */
.about-preview__img:nth-child(1) {
  top: 0;
  left: 0;
  width: 58%;
  height: 100%;
  box-shadow: 0 12px 40px rgba(28,15,8,0.14);
}

/* Küçük üst sağ görsel */
.about-preview__img:nth-child(2) {
  top: 0;
  right: 0;
  width: 40%;
  height: 46%;
  box-shadow: 0 8px 28px rgba(28,15,8,0.12);
}

/* Küçük alt sağ görsel — hafif aşağıda, border ile derinlik */
.about-preview__img:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 46%;
  height: 50%;
  border: 4px solid var(--cream);
  box-shadow: 0 12px 36px rgba(28,15,8,0.18);
  z-index: 2;
}

.about-preview__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-preview__content {
  padding: 24px 0;
}

.about-preview__content .section-title {
  margin-bottom: 20px;
}

.about-preview__content .section-body {
  margin-bottom: 32px;
}

.about-preview__signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--warm-brown);
  opacity: 0.8;
  margin-top: 20px;
  line-height: 1;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.products-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.products-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.product-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--dark-section);
}

.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__img,
.product-card:hover .placeholder-img {
  transform: scale(1.04);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,15,8,0.88) 0%,
    rgba(28,15,8,0.4) 40%,
    transparent 70%
  );
  transition: opacity var(--transition);
}

.product-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 20px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.product-card__name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  max-width: 75%;
}

.product-card__desc {
  font-size: 12px;
  color: var(--linen);
  margin-top: 4px;
  font-weight: 400;
  line-height: 1.4;
}

.product-card__arrow {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(243,230,208,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--cream);
}

.product-card:hover .product-card__arrow {
  background: var(--warm-brown);
  border-color: var(--warm-brown);
}

.product-card__arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ============================================================
   USTALLIK SECTION (DARK)
   ============================================================ */
.craft-section {
  position: relative;
  overflow: hidden;
}

.craft-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.craft-section__decor {
  display: none;
}

.craft-section__decor img {
  width: 100%;
  filter: brightness(1.5) saturate(0);
}

/* Flowers dekor — krem sectionlar için */
.section--cream {
  position: relative;
}

.flowers-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

.flowers-decor img {
  width: 100%;
  display: block;
}

.flowers-decor--tr {
  top: -20px;
  right: -30px;
  width: 280px;
  transform: scaleX(-1);
}

.flowers-decor--bl {
  bottom: -20px;
  left: -30px;
  width: 260px;
}

/* Section içerikleri flowers'ın üzerinde kalır */
.section--cream > .container,
.section--cream > * {
  position: relative;
  z-index: 1;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: rgba(138,90,53,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feature-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--warm-brown);
  fill: none;
  stroke-width: 1.8;
}

.feature-item__title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.feature-item__text {
  font-size: 13px;
  color: var(--text-on-dark);
  line-height: 1.65;
}

/* ============================================================
   VALUE CARDS (BİZ KİMİZ)
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 20px rgba(58,36,22,0.06);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(58,36,22,0.12);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: rgba(138,90,53,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--warm-brown);
  fill: none;
  stroke-width: 1.8;
}

.value-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--off-black);
  margin-bottom: 10px;
  line-height: 1.3;
}

.value-card__text {
  font-size: 13px;
  color: #7a6555;
  line-height: 1.65;
}

/* ============================================================
   INFO CARDS (İLETİŞİM)
   ============================================================ */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(58,36,22,0.06);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(58,36,22,0.10);
}

.info-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: rgba(138,90,53,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.info-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--warm-brown);
  fill: none;
  stroke-width: 1.8;
}

.info-card__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-brown);
  margin-bottom: 8px;
}

.info-card__value {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--off-black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.info-card__sub {
  font-size: 12px;
  color: #9a8878;
  line-height: 1.6;
}

/* ============================================================
   FEATURED SECTION (ÜRÜNLER — DARK BAND)
   ============================================================ */
.featured-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.featured-section__content {
  padding: 24px 0;
}

.featured-section__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
}

/* ============================================================
   INSPIRATION CARDS (4 küçük kart)
   ============================================================ */
.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.inspiration-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.inspiration-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.inspiration-card:hover .inspiration-card__img,
.inspiration-card:hover .placeholder-img {
  transform: scale(1.04);
}

.inspiration-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,15,8,0.75) 0%,
    transparent 55%
  );
}

.inspiration-card__body {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.inspiration-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.inspiration-card__desc {
  font-size: 12px;
  color: var(--linen);
}

/* ============================================================
   MATERIAL FEATURES (icon row)
   ============================================================ */
.material-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.material-item__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: var(--radius-full);
  background: rgba(138,90,53,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.material-item__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--warm-brown);
  fill: none;
  stroke-width: 1.8;
}

.material-item__title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--off-black);
  margin-bottom: 8px;
}

.material-item__text {
  font-size: 13px;
  color: #7a6555;
  line-height: 1.6;
}

/* ============================================================
   WHY SECTION (NEDEN WOOD PLATE)
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-item {
  padding: 12px 0;
  border-top: 1px solid rgba(58,36,22,0.12);
}

.why-item__icon {
  color: var(--warm-brown);
  margin-bottom: 12px;
  display: flex;
}

.why-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.why-item__title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--off-black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.why-item__text {
  font-size: 13px;
  color: #7a6555;
  line-height: 1.65;
}

/* ============================================================
   INSTAGRAM STRIP
   ============================================================ */
.instagram-strip {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--cream);
  overflow: hidden;
}

.instagram-strip__header {
  text-align: center;
  margin-bottom: 32px;
  padding: 0 clamp(20px, 5vw, 80px);
}

.instagram-strip__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-brown);
  margin-bottom: 8px;
}

.instagram-strip__label svg {
  width: 16px;
  height: 16px;
  stroke: var(--warm-brown);
  fill: none;
  stroke-width: 1.8;
}

.instagram-strip__handle {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--off-black);
  font-weight: 400;
  font-style: italic;
}

/* Conveyor belt wrapper — gradient mask edges */
.instagram-strip__belt {
  --item-w: 220px;
  --gap: 12px;
  --n: 7;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

/* Scrolling track — doubled items for seamless loop */
.instagram-strip__track {
  display: flex;
  gap: var(--gap);
  width: max-content;
  animation: ig-marquee 38s linear infinite;
  will-change: transform;
}

.instagram-strip__belt:hover .instagram-strip__track {
  animation-play-state: paused;
}

@keyframes ig-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-1 * var(--n) * (var(--item-w) + var(--gap))), 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .instagram-strip__track {
    animation: none;
  }
}

.instagram-strip__item {
  flex: 0 0 var(--item-w);
  width: var(--item-w);
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.instagram-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}

.instagram-strip__item:hover img {
  transform: scale(1.07);
}

/* ============================================================
   INSTAGRAM CTA (İLETİŞİM)
   ============================================================ */

/* Flowers full-bg version */
.insta-cta-flowers {
  position: relative;
  overflow: hidden;
}

.insta-cta-flowers__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.insta-cta-flowers__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.22;
}

.insta-cta-flowers > .container {
  position: relative;
  z-index: 1;
}

.instagram-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.instagram-cta__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.instagram-cta__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}

/* ============================================================
   LEAFLET MAP
   ============================================================ */
.map-section {
  padding: 0 clamp(20px, 5vw, 80px) clamp(48px, 6vw, 80px);
  background: var(--cream);
}

#map {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(58,36,22,0.12);
  z-index: 1;
}

.map-address {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #7a6555;
  line-height: 1.6;
}

.map-address svg {
  width: 18px;
  height: 18px;
  stroke: var(--warm-brown);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--off-black);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 80px) 32px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(200,183,155,0.1);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo-badge {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.footer__logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.footer__logo-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--linen);
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}

.footer__tagline {
  font-size: 13px;
  color: rgba(200,183,155,0.6);
  line-height: 1.7;
  max-width: 220px;
}

.footer__col-title {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--linen);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 13px;
  color: rgba(200,183,155,0.65);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--cream);
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(200,183,155,0.65);
  transition: color var(--transition);
}

.footer__social-link:hover { color: var(--cream); }

.footer__social-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(200,183,155,0.65);
  line-height: 1.55;
}

.footer__contact-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--warm-brown);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  max-width: var(--max-w);
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 12px;
  color: rgba(200,183,155,0.35);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up--delay-1 { transition-delay: 0.1s; }
.fade-up--delay-2 { transition-delay: 0.2s; }
.fade-up--delay-3 { transition-delay: 0.3s; }
.fade-up--delay-4 { transition-delay: 0.4s; }
.fade-up--delay-5 { transition-delay: 0.55s; }
.fade-up--delay-6 { transition-delay: 0.7s; }
.fade-up--delay-7 { transition-delay: 0.85s; }

.fade-up--strong {
  transform: translateY(56px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up--strong.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   DIVIDER
   ============================================================ */
.section-divider {
  width: 48px;
  height: 2px;
  background: var(--warm-brown);
  margin-bottom: 24px;
}

.section-divider--light {
  background: rgba(200,183,155,0.4);
}

.section-divider--center {
  margin: 0 auto 24px;
}

/* ============================================================
   FULL-WIDTH IMAGE BAND (Atölye section)
   ============================================================ */
.band-section {
  position: relative;
  overflow: hidden;
}

.band-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  align-items: stretch;
}

.band-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 72px);
}

.band-section__img {
  position: relative;
  overflow: hidden;
}

.band-section__image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center;
}

.band-section__img .placeholder-img {
  height: 100%;
  min-height: 400px;
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid--3col { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .info-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .inspiration-grid { grid-template-columns: repeat(2, 1fr); }
  .material-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-preview { gap: 48px; }
  .craft-section__inner { gap: 48px; }
  .featured-section__inner { gap: 48px; }
  .instagram-cta { gap: 48px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 100px 20px 60px;
    text-align: left;
  }

  /* Mobil: görsel tüm hero'yu kaplar, gradient içerik okunabilirliğini sağlar */
  .hero__image {
    width: 100%;
    opacity: 0.4;
  }

  .hero__img-wrap::after {
    background: linear-gradient(
      to bottom,
      rgba(28,15,8,0.6) 0%,
      rgba(28,15,8,0.25) 50%,
      rgba(28,15,8,0.6) 100%
    );
  }

  .hero__title { font-size: clamp(32px, 9vw, 48px); }

  .about-preview {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-preview__images {
    height: 320px;
  }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .products-grid--3col { grid-template-columns: 1fr 1fr; }

  .craft-section__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .craft-section__decor { display: none; }

  .values-grid { grid-template-columns: 1fr 1fr; }
  .info-cards-grid { grid-template-columns: 1fr 1fr; }
  .inspiration-grid { grid-template-columns: 1fr 1fr; }
  .material-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }

  .featured-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .band-section__inner {
    grid-template-columns: 1fr;
  }

  .band-section__img { min-height: 260px; }

  .instagram-cta {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .instagram-strip__belt {
    --item-w: 150px;
    --gap: 8px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .section { padding: 48px 20px; }
  .map-section { padding: 0 20px 48px; }
}

/* ============================================================
   LEAFLET OVERRIDES
   ============================================================ */
.leaflet-container {
  font-family: 'Manrope', sans-serif !important;
}

.leaflet-popup-content-wrapper {
  border-radius: var(--radius-md) !important;
  box-shadow: 0 4px 20px rgba(58,36,22,0.15) !important;
}

.leaflet-popup-content {
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  color: var(--off-black) !important;
}

/* ============================================================
   PRODUCT CATEGORY PAGE EXTENSIONS
   ============================================================ */
.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  min-height: 320px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(138, 90, 53, 0.18);
  background: rgba(255, 255, 255, 0.46);
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 18px rgba(58, 36, 22, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(138, 90, 53, 0.32);
  box-shadow: 0 12px 34px rgba(58, 36, 22, 0.12);
}

a.category-card {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.category-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(138, 90, 53, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-brown);
  margin-bottom: 22px;
}

.category-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-card__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(23px, 2.2vw, 31px);
  font-weight: 600;
  line-height: 1.18;
  color: var(--off-black);
  margin-bottom: 12px;
}

.category-card__text {
  font-size: 14px;
  line-height: 1.75;
  color: #6c5948;
}

.category-card__links,
.category-card__chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.category-card__links a,
.category-card__chips span,
.subcategory-nav a {
  min-height: 36px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  transition: var(--transition);
}

.category-card__links a {
  color: var(--white);
  background: var(--warm-brown);
}

.category-card__links a:hover,
.category-card__links a:focus-visible {
  background: var(--warm-brown-hover);
  transform: translateY(-1px);
}

.category-card__chips span {
  color: var(--white);
  background: var(--warm-brown);
  border: 1px solid var(--warm-brown);
}

.category-card__chips span:hover {
  background: var(--warm-brown-hover);
  border-color: var(--warm-brown-hover);
  transform: translateY(-1px);
}

.section__sub-head {
  margin-top: 64px;
  margin-bottom: 32px;
}

.section__sub-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  color: var(--off-black);
  margin-bottom: 14px;
}

.product-family {
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(56px, 7vw, 88px);
}

.product-family__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: 42px 72px;
  align-items: end;
}

.subcategory-nav {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subcategory-nav a {
  color: var(--cream);
  border: 1px solid rgba(243, 230, 208, 0.32);
  background: rgba(243, 230, 208, 0.06);
}

.subcategory-nav a:hover,
.subcategory-nav a:focus-visible {
  border-color: var(--warm-brown);
  background: var(--warm-brown);
  transform: translateY(-1px);
}

.product-grid--equal {
  align-items: stretch;
}

.product-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.product-card--equal {
  display: block;
  aspect-ratio: 4 / 3;
  min-height: 280px;
  width: 100%;
  outline: none;
}

.product-card--equal .placeholder-img {
  min-height: 100%;
}

.product-card__body > div:first-child {
  min-width: 0;
}

.product-card__name {
  max-width: none;
}

.product-card__desc {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), max-height var(--transition), transform var(--transition);
}

.product-card:hover .product-card__desc,
.product-card:focus-visible .product-card__desc,
.product-card:focus-within .product-card__desc {
  opacity: 1;
  max-height: 120px;
  transform: translateY(0);
}

.product-card:hover .product-card__overlay,
.product-card:focus-visible .product-card__overlay,
.product-card:focus-within .product-card__overlay {
  background: linear-gradient(
    to top,
    rgba(28,15,8,0.92) 0%,
    rgba(28,15,8,0.58) 52%,
    rgba(28,15,8,0.12) 100%
  );
}

.product-card:focus-visible,
.category-card__links a:focus-visible,
.subcategory-nav a:focus-visible {
  outline: 2px solid var(--warm-brown);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .product-grid--5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .product-family__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-grid--3,
  .product-grid--4,
  .product-grid--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .category-card {
    min-height: auto;
  }

  .product-grid--2,
  .product-grid--3,
  .product-grid--4,
  .product-grid--5 {
    grid-template-columns: 1fr;
  }

  .product-card--equal {
    min-height: 260px;
  }

  .product-card__body {
    padding: 18px;
  }
}

@media (hover: none) {
  .product-card__desc {
    opacity: 1;
    max-height: 120px;
    transform: none;
  }
}
