/* ============================================================
   Bourneo Theme — main.css
   Mirrors demo/index.css + all component Tailwind classes
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --antique-gold:  #9A7B2F;
  --deep-emerald:  #1a433a;
  --emerald-light: #2d5a4e;
  --gold-light:    #c9a25b;
  --leaf-green:    #7cb342;
  --ivory:         #FAFAF7;
  --charcoal:      #111110;
  --font: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  --max-w: 1280px;
  --radius-xl: 2.5rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-full: 9999px;
}

/* ── Dark mode ─────────────────────────────────────────── */
html.dark,
html.dark body {
  background-color: var(--charcoal);
  color: var(--ivory);
}

/* ── Reset / Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--ivory);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  transition: background-color .3s, color .3s;
}

/* Grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
html.dark body::before { opacity: 0; }

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
ul, ol { list-style: none; }

/* ── Scroll-animation base ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: none;
}
.reveal-scale {
  opacity: 0;
  transform: scale(.95);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}


/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 1.5rem;
  transition: background-color .5s, backdrop-filter .5s, box-shadow .5s;
}
@media (min-width: 768px) { #site-header { padding: 1.25rem 3rem; } }

#site-header.scrolled {
  background-color: rgba(250,250,247,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(17,17,16,.05);
}
html.dark #site-header.scrolled {
  background-color: rgba(17,17,16,.85);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  zoom: .8;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
}
.nav-logo img {
  height: 2.25rem;
  width: auto;
}
.nav-logo-text {
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: .18em;
  color: var(--deep-emerald);
  transition: color .3s;
}
html.dark .nav-logo-text { color: var(--ivory); }

/* Nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--charcoal);
  text-transform: uppercase;
  transition: color .3s;
}
html.dark .nav-link { color: var(--ivory); }
.nav-link:hover, .nav-link.active { color: var(--gold-light); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  height: 1.5px;
  width: 0;
  background: var(--gold-light);
  transition: width .3s;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--deep-emerald);
}
html.dark .nav-actions { color: var(--ivory); }

.nav-btn {
  padding: .5rem;
  border-radius: var(--radius-full);
  transition: color .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-btn:hover { color: var(--gold-light); }
.nav-btn svg { width: 1.25rem; height: 1.25rem; pointer-events: none; }

/* Dark mode button */
#dark-toggle {
  padding: .5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--deep-emerald);
  background: var(--ivory);
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  transition: all .3s;
}
html.dark #dark-toggle {
  border-color: var(--emerald-light);
  background: var(--charcoal);
}
#dark-toggle svg { width: 1rem; height: 1rem; }
#dark-toggle .icon-moon { display: block; color: var(--deep-emerald); }
#dark-toggle .icon-sun  { display: none;  color: var(--emerald-light); }
html.dark #dark-toggle .icon-moon { display: none; }
html.dark #dark-toggle .icon-sun  { display: block; }

/* Cart count badge */
.cart-count {
  position: absolute;
  top: 0; right: 0;
  width: 1rem; height: 1rem;
  background: var(--gold-light);
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.cart-count.visible { display: flex; }
.nav-cart-link { position: relative; }

/* Mobile hamburger */
#mobile-menu-btn { display: flex; }
@media (min-width: 768px) { #mobile-menu-btn { display: none; } }
#user-btn { display: none; }
@media (min-width: 768px) { #user-btn { display: flex; } }

/* Mobile menu overlay */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ivory);
  flex-direction: column;
  padding-top: 6rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
html.dark #mobile-menu { background: var(--charcoal); }
#mobile-menu.open { display: flex; }

#mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  padding: .5rem;
  color: var(--charcoal);
  transition: color .3s;
}
html.dark #mobile-menu-close { color: var(--ivory); }
#mobile-menu-close:hover { color: var(--gold-light); }
.menu-close-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .15em;
  color: var(--charcoal);
  transition: color .3s;
  padding: .5rem 0;
}
html.dark .mobile-nav-link { color: var(--ivory); }
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--gold-light); }

/* Search overlay */
#search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(250,250,247,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
html.dark #search-overlay {
  background: rgba(17,17,16,.95);
}
#search-overlay.open { display: flex; }

#search-overlay-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  padding: .5rem;
  color: var(--charcoal);
  transition: color .3s;
}
html.dark #search-overlay-close { color: var(--ivory); }
#search-overlay-close:hover { color: var(--gold-light); }

.search-wrap {
  width: 100%;
  max-width: 40rem;
  position: relative;
}
.search-wrap svg {
  position: absolute;
  left: 1.5rem;
  top: 50%; transform: translateY(-50%);
  width: 1.5rem; height: 1.5rem;
  color: rgba(17,17,16,.4);
}
html.dark .search-wrap svg { color: rgba(250,250,247,.4); }

#search-input {
  width: 100%;
  background: white;
  border: 1px solid rgba(17,17,16,.1);
  border-radius: var(--radius-full);
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  font-size: 1.25rem;
  font-family: var(--font);
  color: var(--charcoal);
  box-shadow: 0 25px 50px rgba(0,0,0,.12);
  outline: none;
  transition: border-color .3s;
}
html.dark #search-input {
  background: rgba(17,17,16,.5);
  border-color: rgba(250,250,247,.1);
  color: var(--ivory);
}
#search-input:focus { border-color: var(--emerald-light); }
#search-input::placeholder { color: rgba(17,17,16,.4); }
html.dark #search-input::placeholder { color: rgba(250,250,247,.4); }


/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 1.5rem 5rem;
  background: var(--ivory);
  transition: background .3s;
}
html.dark #hero { background: var(--charcoal); }
@media (min-width: 768px) { #hero { padding: 6rem 3rem 5rem; } }
@media (min-width: 1024px) { #hero { padding: 6rem 6rem 5rem; } }

.hero-bg-shape {
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 100%;
  background: rgba(17,17,16,.02);
  border-bottom-left-radius: 15vw;
  z-index: 0;
}
@media (min-width: 1024px) { .hero-bg-shape { width: 66.666%; } }
html.dark .hero-bg-shape { display: none; }

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: repeat(12, 1fr); }
}

.hero-copy {
  grid-column: 1 / -1;
  z-index: 10;
}
@media (min-width: 1024px) { .hero-copy { grid-column: 1 / 7; } }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-eyebrow-line {
  width: 3rem; height: 1px;
  background: var(--leaf-green);
  flex-shrink: 0;
}
.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--leaf-green);
}

.hero-h1 {
  font-style: italic;
  font-size: clamp(3.5rem, 8vw, 6.25rem);
  line-height: .9;
  color: var(--deep-emerald);
  margin-bottom: 2.5rem;
  letter-spacing: -.02em;
  transition: color .3s;
}
html.dark .hero-h1 { color: var(--ivory); }
.hero-h1 span {
  color: var(--gold-light);
  font-style: normal;
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(17,17,16,.6);
  max-width: 28rem;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.7;
  transition: color .3s;
}
html.dark .hero-desc { color: rgba(250,250,247,.6); }

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1.25rem 2.5rem;
  background: var(--deep-emerald);
  color: var(--ivory);
  font-weight: 700;
  border-radius: var(--radius-full);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 25px 50px rgba(26,67,58,.2);
}
.hero-btn:hover {
  transform: scale(1.05);
  color: var(--ivory);
}
.hero-btn-bg {
  position: absolute;
  inset: 0;
  background: var(--leaf-green);
  opacity: 0;
  transition: opacity .3s;
}
.hero-btn:hover .hero-btn-bg { opacity: 1; }
.hero-btn span, .hero-btn svg {
  position: relative;
  z-index: 1;
}
.hero-btn svg {
  width: 1.25rem; height: 1.25rem;
  transition: transform .3s;
}
.hero-btn:hover svg { transform: translateX(4px); }

.hero-image-col {
  grid-column: 1 / -1;
  position: relative;
}
@media (min-width: 1024px) { .hero-image-col { grid-column: 7 / 13; } }

.hero-img-wrap {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 8px solid white;
  box-shadow: 0 25px 50px rgba(0,0,0,.15);
  transition: border-color .3s;
}
html.dark .hero-img-wrap { border-color: rgba(17,17,16,.4); }
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 4s ease;
}
.hero-img-wrap:hover img { transform: scale(1.1); }

.hero-quote-card {
  position: absolute;
  bottom: -2.5rem; left: -1rem;
  padding: 2rem;
  background: white;
  border: 1px solid rgba(17,17,16,.05);
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,.1);
  z-index: 20;
  max-width: 260px;
  transition: background .3s;
}
html.dark .hero-quote-card { background: var(--charcoal); }
@media (min-width: 1024px) { .hero-quote-card { left: -3rem; } }
.hero-quote-title {
  font-style: italic;
  font-size: 1.5rem;
  color: var(--deep-emerald);
  margin-bottom: .5rem;
  transition: color .3s;
}
html.dark .hero-quote-title { color: var(--gold-light); }
.hero-quote-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(17,17,16,.4);
  line-height: 1.6;
  transition: color .3s;
}
html.dark .hero-quote-sub { color: rgba(250,250,247,.4); }


/* ══════════════════════════════════════════════════════════
   STORY SECTION
   ══════════════════════════════════════════════════════════ */
#our-story { position: relative; }

.story-panel {
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.story-panel-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.story-panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
}

.story-panel-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--ivory);
  padding: 1.5rem;
  max-width: 48rem;
}
.story-panel-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: block;
}
.story-panel-h2 {
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.story-panel-p {
  font-size: 1.125rem;
  opacity: .8;
  font-weight: 300;
  line-height: 1.7;
}


/* ══════════════════════════════════════════════════════════
   FEATURES SECTION
   ══════════════════════════════════════════════════════════ */
#features {
  padding: 8rem 1.5rem;
  background: var(--ivory);
  transition: background .3s;
}
html.dark #features { background: var(--charcoal); }
@media (min-width: 768px)  { #features { padding: 8rem 3rem; } }
@media (min-width: 1024px) { #features { padding: 8rem 6rem; } }

.features-inner { max-width: var(--max-w); margin: 0 auto; }

.features-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
  align-items: end;
}
@media (min-width: 1024px) {
  .features-header { grid-template-columns: 7fr 5fr; }
}

.features-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 1.5rem;
}

.features-h2 {
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.1;
  color: var(--deep-emerald);
  transition: color .3s;
}
html.dark .features-h2 { color: var(--ivory); }
.features-h2 em { font-style: italic; }

.features-sub {
  font-size: 1.125rem;
  color: rgba(17,17,16,.5);
  font-weight: 300;
  line-height: 1.7;
  transition: color .3s;
}
html.dark .features-sub { color: rgba(250,250,247,.4); }
@media (min-width: 1024px) { .features-sub { text-align: right; } }

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px)  { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: 1fr 1fr 1fr; } }

.feature-card {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  background: white;
  border: 1px solid rgba(17,17,16,.05);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow .5s, background .3s;
}
html.dark .feature-card {
  background: rgba(255,255,255,.05);
  border-color: rgba(250,250,247,.05);
}
.feature-card:hover { box-shadow: 0 25px 50px rgba(0,0,0,.12); }

.feature-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.feature-value {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 2.25rem;
  color: var(--deep-emerald);
  line-height: 1;
  transition: color .3s;
}
html.dark .feature-value { color: var(--gold-light); }
.feature-value-unit {
  font-size: 1rem;
  font-style: normal;
  margin-left: .25rem;
  opacity: .4;
  font-family: var(--font);
}

.feature-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,162,91,.3);
  padding: .375rem .75rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
  transition: color .3s;
}
html.dark .feature-title { color: var(--ivory); }

.feature-desc {
  font-size: .875rem;
  color: rgba(17,17,16,.5);
  font-weight: 300;
  line-height: 1.7;
  transition: color .3s;
}
html.dark .feature-desc { color: rgba(250,250,247,.4); }

.feature-arrow {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}
.feature-arrow-btn {
  width: 2.25rem; height: 2.25rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(17,17,16,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, border-color .3s;
}
html.dark .feature-arrow-btn { border-color: rgba(250,250,247,.1); }
.feature-card:hover .feature-arrow-btn {
  background: var(--leaf-green);
  border-color: var(--leaf-green);
}
.feature-arrow-btn svg {
  width: 1rem; height: 1rem;
  color: rgba(17,17,16,.3);
  transition: color .3s;
}
html.dark .feature-arrow-btn svg { color: rgba(250,250,247,.3); }
.feature-card:hover .feature-arrow-btn svg { color: white; }


/* ══════════════════════════════════════════════════════════
   COLLECTIONS
   ══════════════════════════════════════════════════════════ */
#collections {
  padding: 6rem 1.5rem;
  background: var(--ivory);
  transition: background .3s;
}
html.dark #collections { background: var(--charcoal); }
@media (min-width: 768px)  { #collections { padding: 6rem 3rem; } }
@media (min-width: 1024px) { #collections { padding: 6rem 6rem; } }

.collections-inner { max-width: var(--max-w); margin: 0 auto; }

.collections-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .collections-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.collections-h2 {
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--deep-emerald);
  margin-bottom: 1.5rem;
  transition: color .3s;
}
html.dark .collections-h2 { color: var(--emerald-light); }

.collections-p {
  font-size: 1.125rem;
  color: rgba(17,17,16,.7);
  transition: color .3s;
}
html.dark .collections-p { color: rgba(250,250,247,.7); }

.collections-view-all {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 500;
  padding: .5rem 2rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--deep-emerald);
  color: var(--deep-emerald);
  white-space: nowrap;
  transition: background .3s;
}
html.dark .collections-view-all {
  border-color: var(--emerald-light);
  color: var(--emerald-light);
}
.collections-view-all:hover { background: rgba(26,67,58,.05); }
html.dark .collections-view-all:hover { background: rgba(45,90,78,.1); }
.collections-view-all svg { width: 1rem; height: 1rem; }

.collections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .collections-grid { grid-template-columns: 1fr 1fr 1fr; } }

.collection-card {
  position: relative;
  cursor: pointer;
  display: block;
}

.collection-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  background: #E5E5E5;
  transition: box-shadow .5s;
}
html.dark .collection-card-img { background: rgba(17,17,16,.5); }
.collection-card:hover .collection-card-img { box-shadow: 0 25px 50px rgba(0,0,0,.15); }

.collection-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s;
}
.collection-card:hover .collection-card-img img { transform: scale(1.1); }

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background .5s;
}
.collection-card:hover .collection-card-overlay { background: rgba(0,0,0,.2); }

.collection-card-body { padding: 0 .5rem; }

.collection-card-title {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: .5rem;
  color: var(--charcoal);
  transition: color .3s;
}
html.dark .collection-card-title { color: var(--ivory); }
.collection-card:hover .collection-card-title { color: var(--deep-emerald); }
html.dark .collection-card:hover .collection-card-title { color: var(--emerald-light); }

.collection-card-desc {
  font-size: 1rem;
  color: rgba(17,17,16,.7);
  font-weight: 300;
  margin-bottom: 1rem;
  transition: color .3s;
}
html.dark .collection-card-desc { color: rgba(250,250,247,.7); }

.collection-card-line {
  height: 2px;
  width: 0;
  background: var(--antique-gold);
  transition: width .5s;
}
.collection-card:hover .collection-card-line { width: 100%; }


/* ══════════════════════════════════════════════════════════
   CTA
   ══════════════════════════════════════════════════════════ */
#cta {
  padding: 8rem 1.5rem;
  background: var(--ivory);
  overflow: hidden;
  position: relative;
  transition: background .3s;
}
html.dark #cta { background: var(--charcoal); }
@media (min-width: 768px)  { #cta { padding: 8rem 3rem; } }
@media (min-width: 1024px) { #cta { padding: 8rem 6rem; } }

.cta-blob-1 {
  position: absolute;
  top: 0; right: 0;
  width: 33.333%; height: 50%;
  background: rgba(26,67,58,.05);
  border-radius: var(--radius-full);
  filter: blur(120px);
  transform: translate(50%,-50%);
  pointer-events: none;
}
.cta-blob-2 {
  position: absolute;
  bottom: 0; left: 0;
  width: 25%; height: 33.333%;
  background: rgba(26,67,58,.05);
  border-radius: var(--radius-full);
  filter: blur(100px);
  transform: translate(-50%,50%);
  pointer-events: none;
}
html.dark .cta-blob-1, html.dark .cta-blob-2 { display: none; }

.cta-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-eyebrow {
  font-size: .875rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--antique-gold);
  font-weight: 500;
  display: block;
  margin-bottom: 2rem;
}

.cta-h2 {
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.1;
  color: var(--deep-emerald);
  margin-bottom: 3rem;
  transition: color .3s;
}
html.dark .cta-h2 { color: var(--emerald-light); }

.cta-p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(17,17,16,.7);
  margin-bottom: 4rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.7;
  transition: color .3s;
}
html.dark .cta-p { color: rgba(250,250,247,.7); }

.cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 640px) { .cta-btns { flex-direction: row; } }

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  font-size: 1.25rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  background: var(--emerald-light);
  color: var(--ivory);
  box-shadow: 0 20px 40px rgba(45,90,78,.2);
  transition: background .3s, transform .3s;
}
.cta-btn-primary:hover {
  background: rgba(45,90,78,.9);
  transform: translateY(-2px);
  color: var(--ivory);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  font-size: 1.25rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1px solid var(--deep-emerald);
  color: var(--deep-emerald);
  transition: background .3s;
}
html.dark .cta-btn-secondary {
  border-color: var(--emerald-light);
  color: var(--emerald-light);
}
.cta-btn-secondary:hover { background: rgba(26,67,58,.05); }
html.dark .cta-btn-secondary:hover { background: rgba(45,90,78,.1); }


/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
#site-footer {
  background: var(--deep-emerald);
  color: var(--ivory);
  padding: 5rem 1.5rem;
  transition: background .3s;
}
html.dark #site-footer { background: #1a3a34; }
@media (min-width: 768px)  { #site-footer { padding: 5rem 3rem; } }
@media (min-width: 1024px) { #site-footer { padding: 5rem 6rem; } }

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: repeat(4, 1fr); }
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.footer-brand-desc {
  font-size: .875rem;
  color: rgba(250,250,247,.7);
  max-width: 18rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-social-btn {
  padding: .5rem;
  color: var(--gold-light);
  border-radius: var(--radius-full);
  transition: background .3s;
}
.footer-social-btn:hover { background: rgba(250,250,247,.1); }
.footer-social-btn svg { width: 1.25rem; height: 1.25rem; }

.footer-col-title {
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.footer-links { display: flex; flex-direction: column; gap: 1rem; }
.footer-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--ivory);
  transition: color .3s;
}
.footer-link:hover { color: rgba(250,250,247,.9); }

.footer-newsletter-desc {
  font-size: .875rem;
  color: rgba(250,250,247,.7);
  margin-bottom: 1.5rem;
}

.footer-newsletter-form {
  display: flex;
  gap: .5rem;
}
.footer-newsletter-input {
  background: rgba(250,250,247,.05);
  border: 1px solid rgba(250,250,247,.1);
  border-radius: var(--radius-full);
  padding: .5rem 1rem;
  font-size: .875rem;
  font-family: var(--font);
  color: var(--ivory);
  width: 100%;
  outline: none;
  transition: border-color .3s;
}
.footer-newsletter-input::placeholder { color: rgba(250,250,247,.3); }
.footer-newsletter-input:focus { border-color: var(--emerald-light); }

.footer-newsletter-btn {
  background: var(--emerald-light);
  color: var(--ivory);
  padding: .5rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background .3s;
}
.footer-newsletter-btn:hover { background: rgba(45,90,78,.9); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(250,250,247,.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .75rem;
  opacity: .6;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-link { transition: color .3s; }
.footer-bottom-link:hover { opacity: 1; color: var(--ivory); }


/* ══════════════════════════════════════════════════════════
   STORE / ARCHIVE
   ══════════════════════════════════════════════════════════ */
#store-view {
  padding-top: 8rem;
  padding-bottom: 6rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  min-height: 100vh;
  background: var(--ivory);
  transition: background .3s;
}
html.dark #store-view { background: var(--charcoal); }
@media (min-width: 768px)  { #store-view { padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1024px) { #store-view { padding-left: 6rem; padding-right: 6rem; } }

.store-inner { max-width: var(--max-w); margin: 0 auto; }

.store-header {
  text-align: center;
  margin-bottom: 3rem;
}
.store-h1 {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--deep-emerald);
  margin-bottom: 1rem;
  transition: color .3s;
}
html.dark .store-h1 { color: var(--gold-light); }
.store-subtitle {
  font-size: 1rem;
  color: rgba(17,17,16,.7);
  max-width: 40rem;
  margin: 0 auto;
  transition: color .3s;
}
html.dark .store-subtitle { color: rgba(250,250,247,.7); }

/* Toolbar */
.store-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(17,17,16,.05);
  padding: 1rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: background .3s;
}
html.dark .store-toolbar { background: rgba(250,250,247,.05); }

#filter-toggle-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .875rem;
  padding: .625rem 1.5rem;
  border-radius: .75rem;
  background: white;
  border: 1px solid rgba(17,17,16,.1);
  color: var(--charcoal);
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  transition: all .3s;
}
html.dark #filter-toggle-btn {
  background: rgba(17,17,16,.5);
  border-color: rgba(250,250,247,.1);
  color: var(--ivory);
}
#filter-toggle-btn:hover {
  border-color: var(--deep-emerald);
  color: var(--deep-emerald);
}
html.dark #filter-toggle-btn:hover {
  border-color: var(--emerald-light);
  color: var(--emerald-light);
}
#filter-toggle-btn svg {
  width: 1rem; height: 1rem;
  transition: transform .3s;
}
#filter-toggle-btn.active svg { transform: rotate(180deg); }

/* View mode toggle */
.view-mode-toggle { display: flex; gap: .25rem; }
.view-mode-btn {
  padding: .5rem .75rem;
  border-radius: .5rem;
  font-size: .875rem;
  color: rgba(17,17,16,.4);
  transition: all .3s;
}
html.dark .view-mode-btn { color: rgba(250,250,247,.4); }
.view-mode-btn.active {
  background: white;
  color: var(--charcoal);
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
html.dark .view-mode-btn.active {
  background: rgba(255,255,255,.1);
  color: var(--ivory);
}
.view-mode-btn svg { width: 1rem; height: 1rem; pointer-events: none; }

/* Store layout */
.store-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 1024px) { .store-layout { flex-direction: row; } }

/* Filter sidebar */
#filter-panel {
  flex-shrink: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .4s ease, opacity .4s ease, margin .4s ease;
  width: 100%;
  margin-bottom: 0;
}
#filter-panel.open {
  max-height: 2000px;
  opacity: 1;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  #filter-panel {
    width: 0;
    max-height: none;
    transition: width .4s ease, opacity .4s ease, margin .4s ease;
    margin-bottom: 0;
  }
  #filter-panel.open {
    width: 280px;
    margin-right: 3rem;
    max-height: none;
  }
}

/* Filter groups */
.filter-group {
  padding-bottom: 2rem;
}
.filter-group + .filter-group {
  padding-top: 2rem;
  border-top: 1px solid rgba(17,17,16,.1);
}
html.dark .filter-group + .filter-group { border-color: rgba(250,250,247,.1); }

.filter-group-title {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  transition: color .3s;
}
html.dark .filter-group-title { color: var(--ivory); }

/* Price slider */
.price-track-wrap {
  position: relative;
  width: 100%;
  height: 2rem;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.price-track-bg {
  position: absolute;
  width: 100%;
  height: 4px;
  background: rgba(124,179,66,.2);
  border-radius: var(--radius-full);
}
.price-track-fill {
  position: absolute;
  height: 4px;
  background: var(--leaf-green);
  border-radius: var(--radius-full);
  pointer-events: none;
}
.price-range-input {
  position: absolute;
  width: 100%;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  pointer-events: none;
}
.price-range-input::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 1rem; height: 1rem;
  background: var(--ivory);
  border: 2px solid var(--leaf-green);
  border-radius: var(--radius-full);
  pointer-events: auto;
  cursor: grab;
}
.price-range-input::-webkit-slider-thumb:active { cursor: grabbing; }
html.dark .price-range-input::-webkit-slider-thumb { border-color: var(--emerald-light); }

.price-display {
  font-size: 13px;
  color: var(--charcoal);
  margin-bottom: 1rem;
  transition: color .3s;
}
html.dark .price-display { color: rgba(250,250,247,.8); }

.filter-apply-btn {
  padding: .625rem 0;
  width: 120px;
  background: #1a1a1a;
  color: var(--ivory);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .3s;
}
html.dark .filter-apply-btn { background: var(--emerald-light); }
.filter-apply-btn:hover { background: black; }
html.dark .filter-apply-btn:hover { background: rgba(45,90,78,.8); }

/* Shape filter */
.shape-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.filter-option {
  cursor: pointer;
  transition: color .3s;
}
.filter-option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-option-label {
  font-size: 13px;
  line-height: 1.3;
  color: var(--charcoal);
  transition: color .3s;
}
html.dark .filter-option-label { color: rgba(250,250,247,.8); }
.filter-option.active .filter-option-label {
  color: var(--deep-emerald);
  font-weight: 700;
}
html.dark .filter-option.active .filter-option-label { color: var(--gold-light); }
.filter-option:hover .filter-option-label { color: var(--deep-emerald); }
html.dark .filter-option:hover .filter-option-label { color: var(--gold-light); }

.filter-count {
  font-size: 10px;
  font-weight: 500;
  padding: 1px .375rem;
  border-radius: var(--radius-full);
  border: 1px solid #e5e7eb;
  color: #9ca3af;
  flex-shrink: 0;
  margin-left: .25rem;
}
html.dark .filter-count {
  border-color: #374151;
  color: #6b7280;
}

/* Filter options list */
.filter-options-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* Brand radio */
.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.brand-radio-wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.brand-radio-outer {
  width: 1.25rem; height: 1.25rem;
  border-radius: var(--radius-full);
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(.75);
  transition: background .3s;
}
html.dark .brand-radio-outer {
  background: #1f2937;
  border-color: #374151;
}
.brand-radio-inner {
  width: .75rem; height: .75rem;
  border-radius: var(--radius-full);
  background: #d1d5db;
  transition: background .3s;
}
.brand-row.active .brand-radio-inner { background: var(--antique-gold); }
html.dark .brand-radio-inner { background: #4b5563; }


/* ── Product area ──────────────────────────────────────── */
.product-area { flex: 1; width: 100%; }

.product-area-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(17,17,16,.1);
  margin-bottom: 2rem;
  transition: border-color .3s;
}
html.dark .product-area-header { border-color: rgba(250,250,247,.1); }
@media (min-width: 640px) { .product-area-header { flex-direction: row; } }

.product-count-text {
  font-size: .875rem;
  color: rgba(17,17,16,.6);
  transition: color .3s;
}
html.dark .product-count-text { color: rgba(250,250,247,.6); }
.product-count-text strong {
  color: var(--deep-emerald);
  transition: color .3s;
}
html.dark .product-count-text strong { color: var(--emerald-light); }

/* Active filter chips */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  font-weight: 500;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  background: rgba(26,67,58,.08);
  color: var(--deep-emerald);
  border: 1px solid rgba(26,67,58,.15);
  transition: background .3s;
}
html.dark .filter-chip {
  background: rgba(45,90,78,.2);
  color: var(--emerald-light);
  border-color: rgba(45,90,78,.3);
}
.filter-chip:hover { background: rgba(26,67,58,.15); }
.filter-chip-remove {
  width: .875rem; height: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  cursor: pointer;
  opacity: .6;
  transition: opacity .2s;
}
.filter-chip-remove:hover { opacity: 1; }
.clear-all-btn {
  font-size: .75rem;
  font-weight: 600;
  color: var(--deep-emerald);
  margin-left: .5rem;
  transition: color .3s;
}
html.dark .clear-all-btn { color: var(--emerald-light); }
.clear-all-btn:hover { text-decoration: underline; }

/* Product grid */
.products-grid {
  display: grid;
  gap: 2rem 2rem;
  align-items: start;
}
.products-grid.grid3 { grid-template-columns: 1fr; }
.products-grid.grid2 { grid-template-columns: 1fr; }
.products-grid.list  { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .products-grid.grid3 { grid-template-columns: 1fr 1fr; }
  .products-grid.grid2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .products-grid.grid3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* Product card — grid */
.product-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.product-card.list-card {
  flex-direction: column;
  background: rgba(17,17,16,.05);
  padding: 1rem;
  border-radius: 1.5rem;
  width: 100%;
  transition: background .3s;
}
html.dark .product-card.list-card { background: rgba(250,250,247,.05); }
@media (min-width: 640px) {
  .product-card.list-card { flex-direction: row; align-items: center; gap: 2.5rem; padding: 1.5rem; }
}

.product-card-img {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(17,17,16,.05);
  aspect-ratio: 3/4;
  margin-bottom: 1.5rem;
  transition: background .3s;
}
html.dark .product-card-img { background: rgba(250,250,247,.05); }
.list-card .product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: 0;
  flex-shrink: 0;
  border-radius: 1rem;
}
@media (min-width: 640px) {
  .list-card .product-card-img { width: 12rem; aspect-ratio: 3/4; }
}

.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-card-atc-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity .3s, transform .3s;
}
.product-card:hover .product-card-atc-overlay {
  opacity: 1;
  transform: none;
}
.list-card .product-card-atc-overlay { display: none; }

.product-card-atc-btn {
  width: 100%;
  padding: 1rem;
  border-radius: .75rem;
  background: rgba(250,250,247,.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 500;
  color: var(--deep-emerald);
  transition: background .3s;
}
.product-card-atc-btn:hover { background: var(--ivory); }
.product-card-atc-btn svg { width: 1rem; height: 1rem; }

.product-card-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 .5rem;
  width: 100%;
}
.list-card .product-card-body {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding: 0;
}

.product-card-info { width: 100%; }

.product-card-name {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: .25rem;
  transition: color .3s;
}
html.dark .product-card-name { color: var(--ivory); }
.list-card .product-card-name { font-size: clamp(1.25rem, 2vw, 1.875rem); }

.product-card-meta {
  font-size: .875rem;
  color: rgba(17,17,16,.5);
  margin-bottom: .5rem;
  transition: color .3s;
}
html.dark .product-card-meta { color: rgba(250,250,247,.5); }

.product-card-price {
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--deep-emerald);
  transition: color .3s;
}
html.dark .product-card-price { color: var(--gold-light); }
.list-card .product-card-price { font-size: 1.875rem; font-weight: 600; }

/* List card footer */
.list-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(17,17,16,.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  transition: border-color .3s;
}
html.dark .list-card-footer { border-color: rgba(250,250,247,.1); }

.list-card-atc-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-full);
  background: var(--emerald-light);
  color: var(--ivory);
  font-weight: 500;
  box-shadow: 0 10px 20px rgba(45,90,78,.2);
  transition: background .3s;
}
.list-card-atc-btn:hover { background: rgba(45,90,78,.9); }
.list-card-atc-btn svg { width: 1rem; height: 1rem; }

/* Star rating */
.star-rating {
  display: flex;
  gap: 2px;
  margin-bottom: .5rem;
}
.star {
  color: var(--gold-light);
  font-size: .875rem;
}
.star.empty { color: rgba(17,17,16,.30); }
html.dark .star.empty { color: rgba(250,250,247,.25); }

/* No results */
.no-results {
  grid-column: 1 / -1;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.no-results-icon {
  width: 4rem; height: 4rem;
  border-radius: var(--radius-full);
  background: rgba(17,17,16,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background .3s;
}
html.dark .no-results-icon { background: rgba(250,250,247,.05); }
.no-results-icon svg {
  width: 2rem; height: 2rem;
  color: rgba(17,17,16,.2);
  transition: color .3s;
}
html.dark .no-results-icon svg { color: rgba(250,250,247,.2); }
.no-results p {
  font-size: 1.125rem;
  color: rgba(17,17,16,.5);
  margin-bottom: 1.5rem;
  transition: color .3s;
}
html.dark .no-results p { color: rgba(250,250,247,.5); }
.no-results button {
  font-size: .875rem;
  font-weight: 600;
  color: var(--deep-emerald);
}
.no-results button:hover { text-decoration: underline; }

.store-empty-state {
  max-width: 36rem;
  margin: 0 auto;
  padding: 4rem 2rem;
  border: 1px solid rgba(26,67,58,.1);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  color: rgba(17,17,16,.65);
  text-align: center;
  transition: background .3s, border-color .3s, color .3s;
}
html.dark .store-empty-state {
  background: #1a3a34;
  border-color: rgba(45,90,78,.2);
  color: rgba(250,250,247,.75);
}
.store-empty-state .no-results-icon {
  margin-left: auto;
  margin-right: auto;
}

/* Pagination */
.woocommerce-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: .5rem;
}
.woocommerce-pagination a,
.woocommerce-pagination span {
  padding: .5rem .875rem;
  border-radius: .5rem;
  font-size: .875rem;
  border: 1px solid rgba(17,17,16,.1);
  color: var(--charcoal);
  transition: all .3s;
}
html.dark .woocommerce-pagination a,
html.dark .woocommerce-pagination span {
  border-color: rgba(250,250,247,.1);
  color: var(--ivory);
}
.woocommerce-pagination a:hover,
.woocommerce-pagination span.current {
  background: var(--deep-emerald);
  border-color: var(--deep-emerald);
  color: var(--ivory);
}


/* ══════════════════════════════════════════════════════════
   SINGLE PRODUCT  — redesigned
   ══════════════════════════════════════════════════════════ */
#product-detail {
  padding-top: 7rem;
  padding-bottom: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background: var(--ivory);
  transition: background .3s;
}
html.dark #product-detail { background: var(--charcoal); }
@media (min-width: 768px)  { #product-detail { padding-left: 2rem; padding-right: 2rem; } }
@media (min-width: 1280px) { #product-detail { padding-left: 4rem; padding-right: 4rem; } }

/* Breadcrumbs */
.pd-breadcrumbs {
  max-width: var(--max-w);
  margin: 0 auto 1.5rem;
  font-size: .8125rem;
  color: rgba(17,17,16,.5);
  transition: color .3s;
}
html.dark .pd-breadcrumbs { color: rgba(250,250,247,.45); }
.pd-breadcrumbs a {
  color: rgba(17,17,16,.5);
  transition: color .2s;
}
html.dark .pd-breadcrumbs a { color: rgba(250,250,247,.45); }
.pd-breadcrumbs a:hover { color: var(--deep-emerald); }
html.dark .pd-breadcrumbs a:hover { color: var(--emerald-light); }
.pd-breadcrumb-sep { margin: 0 .375rem; }
.pd-breadcrumb-current { color: var(--charcoal); font-weight: 500; }
html.dark .pd-breadcrumb-current { color: var(--ivory); }

/* Main layout */
.pd-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .pd-layout { grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
}

/* ── Gallery ─────────────────────────────────────────────── */
.pd-gallery {
  display: flex;
  gap: 1rem;
}

/* Vertical thumbnails */
.pd-thumbs-col {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  width: 5rem;
  flex-shrink: 0;
}
@media (min-width: 640px) { .pd-thumbs-col { display: flex; } }

.pd-thumbs-arrow {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(17,17,16,.05);
  border: 1px solid rgba(17,17,16,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s;
  color: var(--charcoal);
  flex-shrink: 0;
}
html.dark .pd-thumbs-arrow {
  background: rgba(250,250,247,.05);
  border-color: rgba(250,250,247,.08);
  color: var(--ivory);
}
.pd-thumbs-arrow:hover { background: rgba(17,17,16,.1); }
html.dark .pd-thumbs-arrow:hover { background: rgba(250,250,247,.1); }
.pd-thumbs-arrow svg { width: 1rem; height: 1rem; }

.pd-thumbs-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  max-height: 24rem;
  overflow: hidden;
}
.pd-thumb {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: .5rem;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .3s;
  flex-shrink: 0;
}
.pd-thumb.active { border-color: var(--deep-emerald); }
html.dark .pd-thumb.active { border-color: var(--emerald-light); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Main image */
.pd-main-img-wrap {
  flex: 1;
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(17,17,16,.03);
  transition: background .3s;
}
html.dark .pd-main-img-wrap { background: rgba(250,250,247,.03); }
.pd-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Image arrows */
.pd-img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s;
  color: var(--charcoal);
  opacity: 0;
}
.pd-main-img-wrap:hover .pd-img-arrow { opacity: 1; }
html.dark .pd-img-arrow {
  background: rgba(30,30,30,.9);
  border-color: rgba(255,255,255,.1);
  color: var(--ivory);
}
.pd-img-arrow:hover {
  background: white;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transform: translateY(-50%) scale(1.06);
}
html.dark .pd-img-arrow:hover { background: rgba(50,50,50,.95); }
.pd-img-arrow svg { width: 1.125rem; height: 1.125rem; }
.pd-img-arrow--prev { left: .75rem; }
.pd-img-arrow--next { right: .75rem; }
@media (max-width: 640px) {
  .pd-img-arrow { opacity: 1; width: 2.25rem; height: 2.25rem; }
  .pd-img-arrow--prev { left: .5rem; }
  .pd-img-arrow--next { right: .5rem; }
}

/* ── Product info ────────────────────────────────────────── */
.pd-info {
  display: flex;
  flex-direction: column;
}

.pd-brand {
  font-weight: 800;
  font-size: .6875rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(17,17,16,.45);
  margin-bottom: .375rem;
  transition: color .3s;
}
html.dark .pd-brand { color: rgba(250,250,247,.4); }

.pd-title {
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: .5rem;
  transition: color .3s;
}
html.dark .pd-title { color: var(--ivory); }

.pd-stock {
  font-size: .8125rem;
  font-weight: 600;
  margin-bottom: .75rem;
}
.pd-stock--in  { color: #16a34a; }
.pd-stock--low { color: #f59e0b; }
.pd-stock--out { color: #ef4444; }

.pd-rating-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
}
.pd-review-count {
  font-size: .75rem;
  color: rgba(17,17,16,.45);
  transition: color .3s;
}
html.dark .pd-review-count { color: rgba(250,250,247,.45); }

.pd-price {
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  transition: color .3s;
}
html.dark .pd-price { color: var(--ivory); }
.pd-price del {
  font-size: 1rem;
  color: rgba(17,17,16,.35);
  font-weight: 400;
}
html.dark .pd-price del { color: rgba(250,250,247,.35); }

/* Size selector */
.pd-sizes { margin-bottom: 1.25rem; }
.pd-sizes-label {
  font-weight: 700;
  font-size: .6875rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: .75rem;
  transition: color .3s;
}
html.dark .pd-sizes-label { color: var(--ivory); }
.pd-sizes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.pd-size-btn {
  padding: .625rem 1.25rem;
  border: 1px solid rgba(17,17,16,.18);
  border-radius: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--charcoal);
  background: white;
  cursor: pointer;
  transition: all .25s;
}
html.dark .pd-size-btn {
  background: rgba(250,250,247,.05);
  border-color: rgba(250,250,247,.15);
  color: var(--ivory);
}
.pd-size-btn:hover {
  border-color: var(--deep-emerald);
  color: var(--deep-emerald);
}
.pd-size-btn.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: white;
}
html.dark .pd-size-btn.active {
  background: var(--ivory);
  color: var(--charcoal);
  border-color: var(--ivory);
}

/* Quantity + ATC row */
.pd-cart-row {
  display: flex;
  gap: .75rem;
  margin-bottom: .75rem;
}
.pd-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(17,17,16,.15);
  border-radius: .5rem;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color .3s;
}
html.dark .pd-qty { border-color: rgba(250,250,247,.15); }
.pd-qty-btn {
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .3s;
}
html.dark .pd-qty-btn { color: var(--ivory); }
.pd-qty-btn:hover { background: rgba(17,17,16,.05); }
html.dark .pd-qty-btn:hover { background: rgba(250,250,247,.05); }
#pd-qty-input {
  width: 2.5rem;
  text-align: center;
  font-weight: 700;
  font-size: .9375rem;
  border: none;
  border-left: 1px solid rgba(17,17,16,.1);
  border-right: 1px solid rgba(17,17,16,.1);
  background: transparent;
  color: var(--charcoal);
  -moz-appearance: textfield;
  appearance: textfield;
  transition: color .3s, border-color .3s;
}
html.dark #pd-qty-input {
  color: var(--ivory);
  border-color: rgba(250,250,247,.1);
}
#pd-qty-input::-webkit-inner-spin-button,
#pd-qty-input::-webkit-outer-spin-button { display: none; }

.pd-atc-btn {
  flex: 1;
  padding: .875rem 1.5rem;
  background: var(--deep-emerald);
  color: var(--ivory);
  font-weight: 800;
  font-size: .8125rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: .5rem;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .15s;
}
.pd-atc-btn:hover {
  background: var(--emerald-light);
  transform: translateY(-1px);
}
.pd-atc-btn:disabled { opacity: .5; cursor: wait; }

/* Hemen Al */
.pd-buy-now-btn {
  display: block;
  text-align: center;
  padding: .875rem;
  background: #ef4444;
  color: white;
  font-weight: 800;
  font-size: .8125rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: .5rem;
  transition: background .3s, transform .15s;
  margin-bottom: .75rem;
}
.pd-buy-now-btn:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

/* WhatsApp */
.pd-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem;
  background: #25D366;
  color: white;
  font-weight: 800;
  font-size: .8125rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: .5rem;
  transition: background .3s, transform .15s;
  margin-bottom: 1.5rem;
}
.pd-whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-1px);
}
.pd-whatsapp-btn svg { width: 1.125rem; height: 1.125rem; }

/* Trust badges */
.pd-trust {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(17,17,16,.08);
  border-bottom: 1px solid rgba(17,17,16,.08);
  transition: border-color .3s;
}
html.dark .pd-trust { border-color: rgba(250,250,247,.08); }
.pd-trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .6875rem;
  color: rgba(17,17,16,.6);
  transition: color .3s;
}
html.dark .pd-trust-item { color: rgba(250,250,247,.55); }
.pd-trust-item svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: var(--deep-emerald);
  transition: color .3s;
}
html.dark .pd-trust-item svg { color: var(--emerald-light); }
.pd-trust-item strong {
  display: block;
  font-weight: 700;
  font-size: .6875rem;
  color: var(--charcoal);
  transition: color .3s;
}
html.dark .pd-trust-item strong { color: var(--ivory); }

/* Accordion */
.pd-accordion {
  border-bottom: 1px solid rgba(17,17,16,.08);
  transition: border-color .3s;
}
html.dark .pd-accordion { border-color: rgba(250,250,247,.08); }
.pd-accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem 0;
  font-weight: 600;
  font-size: .9375rem;
  color: var(--charcoal);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .3s;
}
html.dark .pd-accordion-toggle { color: var(--ivory); }
.pd-accordion-icon {
  width: 1.125rem;
  height: 1.125rem;
  transition: transform .3s;
}
.pd-accordion-toggle.open .pd-accordion-icon { transform: rotate(180deg); }
.pd-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.pd-accordion-body.open {
  max-height: 600px;
  padding-bottom: 1.25rem;
}

.pd-specs-table {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.pd-spec-row {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  font-size: .875rem;
  border-bottom: 1px dashed rgba(17,17,16,.06);
  transition: border-color .3s;
}
html.dark .pd-spec-row { border-color: rgba(250,250,247,.06); }
.pd-spec-row span:first-child {
  color: rgba(17,17,16,.5);
  transition: color .3s;
}
html.dark .pd-spec-row span:first-child { color: rgba(250,250,247,.45); }
.pd-spec-row span:last-child {
  font-weight: 600;
  color: var(--charcoal);
  transition: color .3s;
}
html.dark .pd-spec-row span:last-child { color: var(--ivory); }

/* ── Reviews ─────────────────────────────────────────────── */
.product-reviews {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  padding: 0 1rem 4rem;
}
.product-reviews-title {
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(17,17,16,.1);
  transition: color .3s, border-color .3s;
}
html.dark .product-reviews-title {
  color: var(--ivory);
  border-color: rgba(250,250,247,.1);
}

.pd-rating-summary {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  font-size: .875rem;
  color: rgba(17,17,16,.5);
  transition: color .3s;
}
html.dark .pd-rating-summary { color: rgba(250,250,247,.5); }

.product-no-reviews {
  font-size: .9375rem;
  color: rgba(17,17,16,.45);
  margin-bottom: 2rem;
  transition: color .3s;
}
html.dark .product-no-reviews { color: rgba(250,250,247,.45); }

/* Review list */
.product-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.product-review-item {
  padding: 1.25rem;
  background: rgba(17,17,16,.025);
  border: 1px solid rgba(17,17,16,.05);
  border-radius: var(--radius-lg);
  transition: background .3s, border-color .3s;
}
html.dark .product-review-item {
  background: rgba(250,250,247,.025);
  border-color: rgba(250,250,247,.05);
}
.product-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .375rem;
}
.product-review-author {
  color: var(--charcoal);
  font-size: .875rem;
  transition: color .3s;
}
html.dark .product-review-author { color: var(--ivory); }
.product-review-date {
  font-size: .6875rem;
  color: rgba(17,17,16,.35);
  transition: color .3s;
}
html.dark .product-review-date { color: rgba(250,250,247,.35); }
.product-review-text {
  font-size: .875rem;
  line-height: 1.6;
  color: rgba(17,17,16,.7);
  margin: .5rem 0 0;
  transition: color .3s;
}
html.dark .product-review-text { color: rgba(250,250,247,.7); }

/* Review form */
.product-review-form-wrap {
  margin-top: 2rem;
  padding: 1.75rem;
  background: rgba(17,17,16,.02);
  border: 1px solid rgba(17,17,16,.06);
  border-radius: var(--radius-xl);
  transition: background .3s, border-color .3s;
}
html.dark .product-review-form-wrap {
  background: rgba(250,250,247,.025);
  border-color: rgba(250,250,247,.06);
}
.product-review-form-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  transition: color .3s;
}
html.dark .product-review-form-title { color: var(--ivory); }

/* Star rating input */
.review-star-input {
  display: flex;
  gap: .25rem;
}
.review-star-pick {
  font-size: 1.5rem;
  color: rgba(17,17,16,.2);
  cursor: pointer;
  transition: color .15s, transform .15s;
}
html.dark .review-star-pick { color: rgba(250,250,247,.2); }
.review-star-pick:hover { transform: scale(1.15); }
.review-star-pick.active { color: var(--gold-light); }

.review-form-group {
  margin-bottom: 1rem;
}
.review-form-group label {
  display: block;
  font-weight: 600;
  font-size: .75rem;
  color: var(--charcoal);
  margin-bottom: .375rem;
  transition: color .3s;
}
html.dark .review-form-group label { color: var(--ivory); }
.review-form-group input,
.review-form-group textarea {
  width: 100%;
  padding: .625rem .875rem;
  border: 1px solid rgba(17,17,16,.12);
  border-radius: .5rem;
  background: white;
  color: var(--charcoal);
  font-size: .875rem;
  font-family: inherit;
  transition: border-color .3s, background .3s, color .3s;
  resize: vertical;
}
html.dark .review-form-group input,
html.dark .review-form-group textarea {
  background: rgba(17,17,16,.25);
  border-color: rgba(250,250,247,.12);
  color: var(--ivory);
}
.review-form-group input:focus,
.review-form-group textarea:focus {
  outline: none;
  border-color: var(--deep-emerald);
  box-shadow: 0 0 0 3px rgba(26,67,58,.08);
}
.review-submit-btn {
  padding: .75rem 1.75rem;
  background: var(--charcoal);
  color: var(--ivory);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: .5rem;
  border: none;
  cursor: pointer;
  transition: background .3s;
}
html.dark .review-submit-btn { background: var(--ivory); color: var(--charcoal); }
.review-submit-btn:hover { background: black; }
html.dark .review-submit-btn:hover { background: #e5e5e5; }


/* ══════════════════════════════════════════════════════════
   GENERIC PAGES (about, faq, contact, etc.)
   ══════════════════════════════════════════════════════════ */
.page-view {
  padding-top: 8rem;
  padding-bottom: 6rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  min-height: 80vh;
  background: var(--ivory);
  transition: background .3s;
}
html.dark .page-view { background: var(--charcoal); }
@media (min-width: 768px)  { .page-view { padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1024px) { .page-view { padding-left: 6rem; padding-right: 6rem; } }

.page-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-inner--narrow {
  max-width: 56rem;
}

.page-title {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--deep-emerald);
  margin-bottom: 2rem;
  transition: color .3s;
}
html.dark .page-title { color: var(--ivory); }
.page-title--center {
  margin-bottom: 3rem;
  text-align: center;
}

.page-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(17,17,16,.8);
  max-width: 48rem;
  transition: color .3s;
}
html.dark .page-content { color: rgba(250,250,247,.8); }
.page-content--full {
  max-width: none;
}

.page-view--flush {
  padding-bottom: 0;
}

/* FAQ and policy pages */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-card,
.policy-card {
  background: white;
  border: 1px solid rgba(26,67,58,.1);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  transition: background .3s, border-color .3s;
}
html.dark .faq-card,
html.dark .policy-card {
  background: #1a3a34;
  border-color: rgba(45,90,78,.2);
}

.faq-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.faq-question,
.policy-section-title {
  color: var(--charcoal);
  font-size: 1.125rem;
  font-weight: 600;
  transition: color .3s;
}
html.dark .faq-question,
html.dark .policy-section-title {
  color: var(--ivory);
}

.faq-question {
  margin-bottom: .75rem;
}

.faq-answer {
  margin: 0;
  font-size: .9375rem;
  line-height: 1.7;
}

.policy-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
}
@media (min-width: 768px) {
  .policy-card {
    padding: 2rem 2.5rem;
  }
}

.policy-section-title {
  margin-bottom: .5rem;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-intro {
  margin-bottom: 2.5rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  flex-shrink: 0;
  margin-top: .1rem;
  color: var(--deep-emerald);
}
.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-label,
.contact-form-title,
.contact-field-label {
  color: var(--charcoal);
  transition: color .3s;
}
html.dark .contact-label,
html.dark .contact-form-title,
html.dark .contact-field-label {
  color: var(--ivory);
}

.contact-label {
  margin-bottom: .25rem;
  font-weight: 600;
}

.contact-detail {
  max-width: none;
  font-size: 1rem;
}

.contact-link {
  color: inherit;
  text-decoration: none;
}

.contact-form-card {
  padding: 2rem;
  background: white;
  border: 1px solid rgba(26,67,58,.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  transition: background .3s, border-color .3s;
}
html.dark .contact-form-card {
  background: #1a3a34;
  border-color: rgba(45,90,78,.2);
}

.contact-form-title {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-field-label {
  display: block;
  margin-bottom: .375rem;
  font-size: .875rem;
  font-weight: 500;
  opacity: .8;
}

.contact-input {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid rgba(26,67,58,.15);
  border-radius: .75rem;
  background: rgba(250,250,247,.5);
  color: var(--charcoal);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s, background .3s, color .3s;
}
.contact-input:focus {
  border-color: var(--deep-emerald);
}
textarea.contact-input {
  resize: vertical;
}
html.dark .contact-input {
  background: rgba(0,0,0,.2);
  border-color: rgba(45,90,78,.3);
  color: var(--ivory);
}

.contact-submit {
  width: 100%;
  padding: 1rem;
  border-radius: .75rem;
  background: var(--deep-emerald);
  color: var(--ivory);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  transition: background .2s;
}
.contact-submit:hover {
  background: var(--emerald-light);
}

/* ══════════════════════════════════════════════════════════
   HIKAYEMIZ / ABOUT STORY PAGE
   ══════════════════════════════════════════════════════════ */
.about-story__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 6rem);
}
@media (min-width: 768px) {
  .about-story__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.about-story__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px rgba(0,0,0,.15);
}

.about-story__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.about-story__title {
  margin-bottom: 1rem;
}

.about-story__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 32rem;
  font-size: .9375rem;
}

.about-story__signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  margin-top: 2rem;
}

.about-story__mark {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.about-story__brand {
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .3em;
  transition: color .3s;
}
html.dark .about-story__brand {
  color: var(--ivory);
}

.about-story__socials {
  display: flex;
  gap: .75rem;
}

.about-story__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(17,17,16,.2);
  border-radius: var(--radius-full);
  color: rgba(17,17,16,.5);
  transition: color .3s, border-color .3s;
}
.about-story__social-link:hover {
  border-color: var(--deep-emerald);
  color: var(--deep-emerald);
}
.about-story__social-link svg {
  width: .75rem;
  height: .75rem;
}
html.dark .about-story__social-link {
  border-color: rgba(250,250,247,.2);
  color: rgba(250,250,247,.4);
}
html.dark .about-story__social-link:hover {
  border-color: var(--emerald-light);
  color: var(--emerald-light);
}

.about-origin {
  padding: 8rem 1.5rem;
  background: #f8f9fa;
  transition: background .3s;
}
html.dark .about-origin {
  background: var(--charcoal);
}
@media (min-width: 768px) {
  .about-origin {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1024px) {
  .about-origin {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

.about-origin__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about-origin__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 6rem;
  }
}

.about-origin__heading {
  flex: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .about-origin__heading {
    text-align: right;
  }
}

.about-origin__heading h2 {
  margin-bottom: 1rem;
  color: var(--leaf-green);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  transition: color .3s;
}
html.dark .about-origin__heading h2 {
  color: var(--emerald-light);
}

.about-origin__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1.5rem;
  max-width: none;
  font-size: .9375rem;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 768px) {
  .about-origin__copy {
    text-align: left;
  }
}

/* Loading spinner for AJAX */
.bourneo-loading {
  display: flex;
  justify-content: center;
  padding: 4rem;
}
.bourneo-spinner {
  width: 2rem; height: 2rem;
  border: 3px solid rgba(26,67,58,.2);
  border-top-color: var(--deep-emerald);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* WooCommerce overrides */
.woocommerce-notices-wrapper,
.woocommerce-breadcrumb { display: none !important; }

.wc-forward,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--deep-emerald) !important;
  color: var(--ivory) !important;
  border-radius: var(--radius-full) !important;
  font-family: var(--font) !important;
  font-weight: 600 !important;
  padding: .75rem 1.5rem !important;
  transition: background .3s !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover { background: var(--emerald-light) !important; }

/* ── Utility ────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
