/* ============================================================
   İLKADIM DİŞ DEPOSU — Dental Catalog
   Mavi + beyaz, köşeli, profesyonel
   ============================================================ */

:root {
  /* Mavi-Beyaz Dental palette */
  --c-ink: #0F1E3D;        /* lacivert (logo'dan) */
  --c-ink-soft: #1A2C52;
  --c-mute: #6B7C8E;       /* gri-mavi text */
  --c-line: #D5DDE5;       /* açık çizgi */
  --c-line-soft: #EAEFF4;
  --c-bg: #FFFFFF;         /* beyaz sayfa */
  --c-cream: #F5F8FB;      /* açık mavi-gri kart */
  --c-sand: #B8C5D6;       /* nötr açık mavi */
  --c-camel: #1E40AF;      /* vurgu — koyu mavi */
  --c-camel-deep: #1E3A8A;
  --c-dark: #0F1E3D;       /* koyu lacivert header/footer */
  --c-dark-2: #1A2C52;
  --c-accent: #2563EB;     /* canlı mavi (linkler) */
  --c-success: #25D366;    /* WhatsApp yeşili */

  /* Type */
  --f-serif: "Cormorant Garamond", "Times New Roman", serif;
  --f-sans: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1360px;
  --gutter: clamp(20px, 4vw, 56px);
  --header-h: 144px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans) !important;
  color: var(--c-ink) !important;
  background: var(--c-bg) !important;
  font-size: 15px !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Section heading pattern */
.eyebrow {
  display: block;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-camel);
}
.section-heading {
  text-align: center;
  margin-bottom: 64px;
}
.section-heading .eyebrow { margin-bottom: 18px; }
.section-heading h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.section-heading h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-camel);
}
.section-heading .bar {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--c-camel);
  margin: 22px auto 0;
}
.section-heading p.lede {
  max-width: 580px;
  margin: 20px auto 0;
  font-size: 15px;
  color: var(--c-ink-soft);
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--c-ink);
  color: var(--c-bg);
  border: 1px solid var(--c-ink);
  transition: all .3s ease;
  cursor: pointer;
}
.btn:hover { background: var(--c-camel); border-color: var(--c-camel); }
.btn .material-symbols-outlined { font-size: 16px; }
.btn--ghost {
  background: transparent;
  color: var(--c-ink);
}
.btn--ghost:hover { background: var(--c-ink); color: var(--c-bg); }
.btn--light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--light:hover { background: #fff; color: var(--c-ink); border-color: #fff; }
.btn--wa {
  background: #1f8a5b;
  border-color: #1f8a5b;
  color: #fff;
}
.btn--wa:hover { background: #156d47; border-color: #156d47; }

/* Section spacing */
section { padding: clamp(80px, 9vw, 140px) 0; }
section.tight { padding: clamp(60px, 7vw, 100px) 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: var(--c-bg);
  transition: transform .4s ease, box-shadow .3s ease;
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--c-line); }

.announcement-bar {
  background: var(--c-dark);
  color: #cfd9e8;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 10px var(--gutter);
  text-align: center;
  font-weight: 400;
}
.announcement-bar .star { color: var(--c-accent, #2563EB); margin: 0 10px; font-size: 12px; }

.header-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px var(--gutter);
  gap: 24px;
}
.header-main .left,
.header-main .right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header-main .right { justify-content: flex-end; }
.header-main .left { color: var(--c-ink-soft); font-size: 12px; letter-spacing: 0.08em; }
.header-main .left a { display: inline-flex; align-items: center; gap: 8px; }
.header-main .left .material-symbols-outlined { font-size: 18px; color: var(--c-camel); }

.logo {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 34px;
  letter-spacing: 0.18em;
  text-align: center;
  color: var(--c-ink);
  line-height: 1;
}
.logo .sub {
  display: block;
  font-family: var(--f-sans);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--c-mute);
  margin-top: 6px;
  text-transform: uppercase;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--c-ink);
  transition: background .2s;
}
.icon-btn:hover { background: var(--c-cream); }
.icon-btn .material-symbols-outlined { font-size: 22px; }
.icon-btn.wa { color: #1f8a5b; }

.nav-row {
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.nav-row nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  padding: 16px var(--gutter);
}
.nav-row a, .nav-row button {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink);
  padding: 8px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-row a:hover, .nav-row button:hover { color: var(--c-camel); }
.nav-row .divider {
  width: 1px;
  height: 14px;
  background: var(--c-line);
}
.nav-row .has-mega .material-symbols-outlined { font-size: 16px; }

/* Mega menu */
.mega {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
  box-shadow: 0 32px 60px -32px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .3s ease, transform .3s ease, visibility 0s linear .3s;
  z-index: 99;
}
.mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .3s ease, transform .3s ease, visibility 0s;
}
.mega-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  max-width: var(--container);
  margin: 0 auto;
  padding: 50px var(--gutter);
  gap: 64px;
}
.mega-cta {
  background:
    linear-gradient(135deg, rgba(28,24,19,0.65), rgba(28,24,19,0.35)),
    url("https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=800&q=80") center/cover;
  padding: 36px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}
.mega-cta .eyebrow { color: var(--c-sand); }
.mega-cta h3 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: 30px;
  line-height: 1.15;
  margin-top: 12px;
}
.mega-cta h3 em { font-style: italic; color: var(--c-sand); }
.mega-cta p {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 14px;
  line-height: 1.6;
}
.mega-cta a.mega-cta-link {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 28px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  align-self: flex-start;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 48px;
}
.mega-cat h4 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mega-cat h4 .material-symbols-outlined {
  font-size: 18px;
  color: var(--c-camel);
}
.mega-cat ul {
  list-style: none;
  display: grid;
  gap: 7px;
}
.mega-cat ul a {
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-ink-soft);
  font-weight: 400;
  padding: 2px 0;
  display: block;
}
.mega-cat ul a:hover { color: var(--c-camel); }

/* Header spacer */
.header-spacer { height: var(--header-h); }

/* Mobile nav button */
.mobile-toggle { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #15110d;
  color: #b8ad96;
  padding: 100px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h5 {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 26px;
}
.footer-brand .logo {
  color: #fff;
  text-align: left;
  font-size: 28px;
  margin-bottom: 22px;
}
.footer-brand .logo .sub { color: var(--c-camel); }
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #d8cdb8;
  transition: all .2s;
}
.footer-social a:hover { background: var(--c-camel); border-color: var(--c-camel); color: #fff; }
.footer-social .material-symbols-outlined { font-size: 18px; }

.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col ul a {
  font-size: 13px;
  color: #b8ad96;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul a:hover { color: var(--c-sand); }

.footer-contact .contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.footer-contact .contact-item .material-symbols-outlined {
  color: var(--c-camel);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact .contact-item .label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7a715f;
  display: block;
  margin-bottom: 4px;
}
.footer-contact .contact-item .value {
  font-size: 14px;
  color: #e8dfca;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 12px;
  color: #7a715f;
}
.footer-bottom a:hover { color: var(--c-sand); }
.footer-bottom .legal { display: flex; gap: 28px; }

/* Mobile bottom nav */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
  z-index: 90;
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
}
.bottom-nav-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 4px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
}
.bottom-nav a .material-symbols-outlined { font-size: 22px; }
.bottom-nav a.active { color: var(--c-camel); }

/* ============================================================
   HOMEPAGE — HERO (Split Screen)
   ============================================================ */
.hero {
  height: 100vh;
  min-height: 720px;
  display: grid;
  grid-template-rows: 75% 25%;
  margin-top: 0;
  padding: 0 !important;
}
.hero-top {
  display: grid;
  grid-template-columns: 50% 50%;
  transition: grid-template-columns .7s cubic-bezier(.4,0,.2,1);
}
.hero-top:hover .hero-panel:not(:hover) { grid-column: span 1; }
.hero-top:hover { grid-template-columns: 55% 45%; }
.hero-top:has(.hero-panel:nth-child(2):hover) { grid-template-columns: 45% 55%; }

.hero-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.hero-panel .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.25) brightness(0.85);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .7s;
}
.hero-panel:hover .bg { transform: scale(1.06); filter: grayscale(0) brightness(0.9); }
.hero-panel .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,15,10,0.25) 0%, rgba(20,15,10,0.55) 100%);
  transition: background .5s;
}
.hero-panel:hover .overlay {
  background: linear-gradient(180deg, rgba(20,15,10,0.15) 0%, rgba(20,15,10,0.5) 100%);
}
.hero-panel .content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 32px;
  max-width: 480px;
}
.hero-panel .badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-sand);
  margin-bottom: 22px;
}
.hero-panel .badge::before,
.hero-panel .badge::after {
  content: "✦";
  margin: 0 12px;
  font-size: 9px;
  vertical-align: middle;
}
.hero-panel h1 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.hero-panel h1 em { font-style: italic; color: var(--c-sand); font-weight: 300; }
.hero-panel p {
  font-size: 14px;
  opacity: 0.88;
  margin-bottom: 32px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-bottom {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.hero-bottom .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  filter: brightness(0.7);
  transition: transform 1.2s;
}
.hero-bottom:hover .bg { transform: scale(1.04); }
.hero-bottom .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,15,10,0.7) 0%, rgba(20,15,10,0.3) 100%);
}
.hero-bottom .content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 32px;
}
.hero-bottom .content .text { display: flex; align-items: baseline; gap: 28px; }
.hero-bottom .badge {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-sand);
}
.hero-bottom h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.2;
}
.hero-bottom h2 em { font-style: italic; color: var(--c-sand); font-weight: 300; }

/* ============================================================
   INTRO TEXT
   ============================================================ */
.intro {
  text-align: center;
  padding: clamp(80px, 10vw, 130px) 0;
}
.intro-inner {
  max-width: 720px;
  margin: 0 auto;
}
.intro .eyebrow { margin-bottom: 24px; }
.intro h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.15;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.intro h2 em { font-style: italic; color: var(--c-camel); font-weight: 300; }
.intro p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--c-ink-soft);
  margin-bottom: 20px;
}

/* ============================================================
   SHOWCASE MASONRY
   ============================================================ */
.showcase {
  background: var(--c-cream);
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 320px 320px;
  grid-template-areas:
    "big big tall a"
    "big big tall b";
  gap: 16px;
}
.showcase-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.showcase-card:nth-child(1) { grid-area: big; }
.showcase-card:nth-child(2) { grid-area: tall; }
.showcase-card:nth-child(3) { grid-area: a; }
.showcase-card:nth-child(4) { grid-area: b; }

.showcase-card .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s;
}
.showcase-card:hover .bg { transform: scale(1.05); }
.showcase-card .border-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.55);
  z-index: 2;
  pointer-events: none;
  transition: opacity .4s, inset .4s;
}
.showcase-card:hover .border-frame { opacity: 0; }
.showcase-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,15,10,0.05) 0%, rgba(20,15,10,0.75) 100%);
  z-index: 1;
  transition: background .5s;
}
.showcase-card:hover .overlay {
  background: linear-gradient(180deg, rgba(20,15,10,0.3) 0%, rgba(20,15,10,0.85) 100%);
}
.showcase-card .content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #fff;
}
.showcase-card h3 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  margin-bottom: 10px;
}
.showcase-card h3 em { font-style: italic; color: var(--c-sand); font-weight: 300; }
.showcase-card .desc {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s, transform .4s;
  max-width: 90%;
}
.showcase-card:hover .desc { opacity: 0.9; transform: translateY(0); }
.showcase-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 16px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s .05s, transform .4s .05s;
}
.showcase-card:hover .arrow { opacity: 1; transform: translateY(0); }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px;
}
.product-card {
  display: block;
  cursor: pointer;
}
.product-card .img-wrap {
  aspect-ratio: 4 / 5;
  background: var(--c-cream);
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
}
.product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.product-card:hover .img-wrap img { transform: scale(1.04); }
.product-card .badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.product-card .badge {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--c-ink);
  color: var(--c-bg);
}
.product-card .badge--new { background: var(--c-camel); }
.product-card .badge--pop { background: #5a2a26; color: #f5e9d3; }
.product-card .quick {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--c-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(8px);
  transition: all .35s;
  z-index: 2;
}
.product-card:hover .quick { opacity: 1; transform: translateY(0); }
.product-card .cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 6px;
}
.product-card h3 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.3;
  color: var(--c-ink);
}
.product-card .meta {
  font-size: 12px;
  color: var(--c-camel);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.section-cta-row {
  margin-top: 72px;
  text-align: center;
}

/* ============================================================
   BRAND STORY
   ============================================================ */
.brand-story {
  position: relative;
  min-height: 620px;
  background-image:
    linear-gradient(rgba(15,11,7,0.6), rgba(15,11,7,0.7)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?w=1800&q=80");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(100px, 12vw, 160px) var(--gutter);
}
.brand-story-inner { max-width: 760px; }
.brand-story .eyebrow { color: var(--c-sand); margin-bottom: 24px; }
.brand-story h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 30px;
}
.brand-story h2 em { font-style: italic; color: var(--c-sand); font-weight: 300; }
.brand-story p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 36px;
  opacity: 0.9;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.cat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  cursor: pointer;
}
.cat-card .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s;
}
.cat-card:hover .bg { transform: scale(1.06); }
.cat-card .border-frame {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,0.55);
  z-index: 2;
  pointer-events: none;
}
.cat-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,15,10,0.1) 40%, rgba(20,15,10,0.78) 100%);
  z-index: 1;
}
.cat-card .content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px;
  color: #fff;
}
.cat-card .num {
  position: absolute;
  top: 36px;
  left: 36px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--c-sand);
}
.cat-card h3 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin-bottom: 8px;
}
.cat-card h3 em { font-style: italic; color: var(--c-sand); font-weight: 300; }
.cat-card .sub {
  font-size: 13px;
  letter-spacing: 0.04em;
  opacity: 0.85;
  margin-bottom: 22px;
  max-width: 80%;
  line-height: 1.6;
}
.cat-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--c-cream);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  background: var(--c-bg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  border: 1px solid var(--c-line-soft);
}
.testimonial .stars {
  color: var(--c-camel);
  display: inline-flex;
  gap: 2px;
  margin-bottom: 22px;
  font-size: 14px;
  letter-spacing: 2px;
}
.testimonial blockquote {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  color: var(--c-ink);
  margin-bottom: 28px;
}
.testimonial .name {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.testimonial .name::before {
  content: "—";
  margin-right: 8px;
  color: var(--c-camel);
}

/* ============================================================
   CTA BANNER (dark)
   ============================================================ */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(15,11,7,0.85), rgba(15,11,7,0.92)),
    url("https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?w=1800&q=80") center/cover;
  color: #fff;
  text-align: center;
}
.cta-banner .eyebrow { color: var(--c-sand); margin-bottom: 22px; }
.cta-banner h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.1;
  margin-bottom: 22px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner h2 em { font-style: italic; color: var(--c-sand); font-weight: 300; }
.cta-banner p {
  font-size: 16px;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.cta-banner .actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  padding: 0 !important;
}
.product-hero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.product-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,11,7,0.25) 0%, rgba(15,11,7,0.7) 100%);
}
.product-hero .content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 var(--gutter);
}
.product-hero .breadcrumb {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-sand);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.product-hero .breadcrumb a:hover { color: #fff; }
.product-hero .breadcrumb .sep { opacity: 0.4; }
.product-hero h1 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  max-width: 920px;
}
.product-hero h1 em { font-style: italic; color: var(--c-sand); font-weight: 300; }
.product-hero .tagline {
  font-size: 15px;
  opacity: 0.85;
  letter-spacing: 0.04em;
  max-width: 480px;
}
.product-hero .scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  opacity: 0.75;
}
.product-hero .scroll-cue .line {
  width: 1px;
  height: 36px;
  background: currentColor;
  animation: cueLine 2s ease-in-out infinite;
}
@keyframes cueLine {
  0%, 100% { transform: scaleY(0.4); transform-origin: bottom; }
  50% { transform: scaleY(1); transform-origin: bottom; }
}

/* Editorial 2-col */
.editorial {
  padding: clamp(80px, 9vw, 130px) 0;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.editorial-text .eyebrow { margin-bottom: 18px; }
.editorial-text h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.editorial-text h2 em { font-style: italic; color: var(--c-camel); font-weight: 300; }
.editorial-text .short {
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-ink-soft);
  margin-bottom: 40px;
  max-width: 520px;
}
.quick-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
  margin-bottom: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
}
.quick-spec {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.quick-spec .material-symbols-outlined {
  color: var(--c-camel);
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}
.quick-spec .label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 4px;
}
.quick-spec .value {
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--c-ink);
}
.editorial-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.editorial-image {
  aspect-ratio: 4 / 5;
  background: var(--c-cream);
  overflow: hidden;
  position: relative;
}
.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-image .img-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(250,247,241,0.95);
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-ink);
}

/* Bento gallery */
.bento {
  background: var(--c-cream);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px 300px;
  grid-template-areas:
    "a b b c"
    "a d d c";
  gap: 14px;
}
.bento-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: #ddd;
}
.bento-item:nth-child(1) { grid-area: a; }
.bento-item:nth-child(2) { grid-area: b; }
.bento-item:nth-child(3) { grid-area: c; }
.bento-item:nth-child(4) { grid-area: d; }
.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.bento-item:hover img { transform: scale(1.05); }
.bento-item .zoom-icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(250,247,241,0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s;
}
.bento-item:hover .zoom-icon { opacity: 1; transform: translateY(0); }
.bento-item .zoom-icon .material-symbols-outlined { font-size: 18px; color: var(--c-ink); }

/* Details section */
.details {
  background: #f3eee2;
  padding: clamp(80px, 9vw, 130px) 0;
}
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}
.detail-block h3 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 8px;
  line-height: 1.1;
}
.detail-block h3 em { font-style: italic; color: var(--c-camel); font-weight: 300; }
.detail-block .bar {
  width: 40px;
  height: 2px;
  background: var(--c-camel);
  margin: 14px 0 28px;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.specs-table tr { border-bottom: 1px solid var(--c-line); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td {
  padding: 16px 0;
  vertical-align: top;
}
.specs-table td:first-child {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-mute);
  width: 42%;
}
.specs-table td:last-child {
  font-family: var(--f-serif);
  font-size: 17px;
  color: var(--c-ink);
}

.set-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.set-table thead {
  background: var(--c-ink);
  color: var(--c-bg);
}
.set-table thead th {
  text-align: left;
  padding: 16px 18px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.set-table tbody tr { border-bottom: 1px solid var(--c-line); background: var(--c-bg); }
.set-table tbody tr:last-child { border-bottom: none; }
.set-table tbody td {
  padding: 16px 18px;
  vertical-align: middle;
}
.set-table tbody td:first-child {
  font-family: var(--f-serif);
  font-size: 17px;
  color: var(--c-ink);
}
.set-table tbody td:nth-child(2) { color: var(--c-ink-soft); }
.set-table tbody td:last-child {
  text-align: center;
  font-weight: 500;
  color: var(--c-camel);
}

.variations {
  display: grid;
  gap: 24px;
}
.variation-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line);
}
.variation-row:last-child { border-bottom: none; }
.variation-row .var-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-mute);
  padding-top: 6px;
}
.variation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.var-chip {
  padding: 8px 16px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  font-size: 12px;
  color: var(--c-ink);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all .2s;
}
.var-chip:hover, .var-chip.active {
  background: var(--c-ink);
  color: var(--c-bg);
  border-color: var(--c-ink);
}
.var-color {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--c-bg);
  outline: 1px solid var(--c-line);
  cursor: pointer;
  transition: outline-color .2s;
}
.var-color:hover, .var-color.active { outline-color: var(--c-camel); outline-width: 2px; }

/* Long description (prose) */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-ink-soft);
}
.prose h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 32px;
  color: var(--c-ink);
  margin: 60px 0 22px;
  line-height: 1.2;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 24px;
  color: var(--c-ink);
  margin: 40px 0 16px;
}
.prose p { margin-bottom: 22px; }
.prose ul, .prose ol {
  margin-bottom: 24px;
  padding-left: 22px;
}
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 2px solid var(--c-camel);
  padding: 8px 0 8px 28px;
  margin: 32px 0;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--c-ink);
}
.prose img {
  width: 100%;
  margin: 36px 0;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 14px;
}
.prose th, .prose td {
  padding: 12px 16px;
  border: 1px solid var(--c-line);
  text-align: left;
}
.prose th {
  background: var(--c-cream);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-ink);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,11,7,0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
}
.lightbox .lb-close,
.lightbox .lb-prev,
.lightbox .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lightbox .lb-close { top: 28px; right: 28px; }
.lightbox .lb-prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 28px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  :root { --header-h: 130px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .mega-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .editorial-grid { gap: 56px; }
}

@media (max-width: 820px) {
  :root { --header-h: 64px; }
  .announcement-bar { display: none; }
  .nav-row { display: none; }
  .header-main { grid-template-columns: auto 1fr auto; padding: 14px 20px; }
  .header-main .left { display: none; }
  .logo { font-size: 22px; text-align: left; justify-self: start; }
  .logo .sub { font-size: 8px; margin-top: 3px; }
  .mobile-toggle { display: inline-flex; }

  .hero { min-height: 600px; }
  .hero-top { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .hero-bottom .content { flex-direction: column; gap: 18px; text-align: center; }
  .hero-bottom .content .text { flex-direction: column; gap: 8px; }

  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px 280px;
    grid-template-areas:
      "big big"
      "tall tall"
      "a b";
  }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .cat-cards { grid-template-columns: 1fr; }
  .cat-card { height: 360px; }
  .testimonial-grid { grid-template-columns: 1fr; }

  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-image { order: -1; }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px 240px;
    grid-template-areas:
      "a b"
      "c c"
      "d d";
  }
  .details-grid { grid-template-columns: 1fr; gap: 56px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 60px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom .legal { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .site-footer { padding-top: 60px; padding-bottom: 80px; }
  .bottom-nav { display: block; }
}
