/* ================================================
   TOKENS
================================================ */
:root {
  --ink:    #111;
  --ink2:   #333;
  --muted:  #777;
  --muted2: #aaa;
  --bg:     #fff;
  --off:    #f5f5f5;
  --line:   #e8e8e8;
  --red:    #c0392b;
  --grn:    #27ae60;
  --amb:    #e67e22;
  --t:      .2s ease;
}

/* ================================================
   RESET
================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box }
html { scroll-behavior: smooth }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.lock { overflow: hidden }
img, svg { display: block }
button, input, select, textarea { font-family: inherit }
a { text-decoration: none; color: inherit }

/* ================================================
   ANNOUNCEMENT BAR
================================================ */
#ann {
  background: var(--ink);
  color: rgba(255, 255, 255, .65);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 8px 48px;
  position: relative;
  z-index: 100;
  font-size: 11px;
  letter-spacing: .04em;
}
.ann-txt { font-size: 11px; color: rgba(255, 255, 255, .55) }
.ann-cd {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  color: #fff;
  font-weight: 500;
}
.ann-cd b { min-width: 16px; text-align: center; display: inline-block }
.ann-sep { opacity: .35 }
#ann-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 12px;
  cursor: pointer;
  color: rgba(255, 255, 255, .35);
  padding: 4px;
  line-height: 1;
  transition: color .2s;
}
#ann-close:hover { color: #fff }

/* ================================================
   NAV
================================================ */
#main-nav {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 800;
  height: 68px;
  background: transparent;
  border-bottom: none;
  display: flex;
  align-items: center;
  transition: background .3s ease, box-shadow .3s ease, top .2s ease;
}
#main-nav.scrolled {
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
}
#main-nav.no-ann {
  top: 0;
}
/* White icons/text when transparent (over hero) */
#main-nav:not(.scrolled) .nav-logo { color: #fff }
#main-nav:not(.scrolled) .nav-center-links li a { color: rgba(255,255,255,.85); border-bottom-color: transparent }
#main-nav:not(.scrolled) .nav-center-links li a:hover { color: #fff; border-bottom-color: #fff }
#main-nav:not(.scrolled) .nav-icon { color: rgba(255,255,255,.85) }
#main-nav:not(.scrolled) .nav-icon:hover { color: #fff }
#main-nav:not(.scrolled) .hamburger span { background: #fff }



.nav-logo {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  letter-spacing: .04em;
  color: var(--ink);
}
.nav-logo:hover { opacity: .55 }

.nav-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.nav-center-links {
  display: flex;
  height: 100%;
  list-style: none;
  gap: 12px;
  justify-content: center;
}
.nav-center-links li { display: flex; align-items: center }
.nav-center-links li a {
  display: flex;
  align-items: center;
  height: 68px;
  padding: 0 32px;
  font-size: 13px;
  letter-spacing: .01em;
  text-transform: none;
  font-weight: 400;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s;
  white-space: nowrap;
}
.nav-center-links li a:hover { color: var(--ink); border-bottom-color: var(--ink2) }
.nav-center-links li a.active { color: var(--ink); border-bottom-color: var(--ink) }

.nav-right {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  padding: 0 16px;
}
.nav-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  transition: color .2s;
  text-decoration: none;
  position: relative;
}
.nav-icon:hover { color: var(--ink) }
.nav-cart-badge {
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  font-size: 8px;
  font-weight: 600;
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 4px;
  right: 4px;
  font-style: normal;
}
.nav-cart-badge.visible { display: flex }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  width: 18px;
  height: 1px;
  background: var(--ink);
  display: block;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg) }
.hamburger.open span:nth-child(2) { opacity: 0 }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg) }

/* Search bar */
.nav-search-bar {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 799;
  background: #fff;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .18s, transform .18s;
  visibility: hidden;
}
.nav-search-bar.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  visibility: visible;
}

.nav-search-bar.open::before {
  content: '';
  position: fixed;
  inset: 0;
  top: 100%;
  background: rgba(0, 0, 0, .35);
  z-index: -1;
}
.nav-search-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-search-inner input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--ink);
  background: none;
}
.nav-search-inner input::placeholder { color: var(--muted2) }
.nav-search-inner button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color .2s;
}
.nav-search-inner button:hover { color: var(--ink) }

/* ================================================
   DRAWER
================================================ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 850;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.drawer-overlay.visible { opacity: 1; pointer-events: all }

.drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 320px;
  max-width: 90vw;
  background: #fff;
  z-index: 860;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  overflow-y: auto;
}
.drawer.visible { transform: translateX(0) }
.drawer-header {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.drawer-title {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 18px;
  padding: 4px;
  line-height: 1;
  transition: color .2s;
}
.drawer-close:hover { color: var(--ink) }
.drawer-body { padding: 8px 0; flex: 1 }
.drawer-link {
  display: block;
  padding: 14px 24px;
  font-size: 13px;
  color: var(--ink2);
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.drawer-link:hover { background: var(--off) }
.drawer-section-label {
  padding: 20px 24px 8px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.drawer-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: #25D366;
  transition: background .15s;
}
.drawer-wa:hover { background: var(--off) }

/* ================================================
   HERO CAROUSEL
================================================ */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  max-height: 100dvh;
  overflow: hidden;
  cursor: grab;
  margin-top: 0;
}
.hc-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .65s cubic-bezier(.77, 0, .18, 1);
  will-change: transform;
}
.hc-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.hc-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.52) 0%, rgba(0,0,0,.08) 55%, transparent 100%);
}
.hc-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 80px;
  max-width: 680px;
  width: 100%;
}
.hc-eyebrow {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 14px;
  font-weight: 400;
}
.hc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.hc-title em { font-style: italic; color: rgba(255, 255, 255, .8) }
.hc-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .55);
  max-width: 360px;
  margin-bottom: 32px;
  font-weight: 300;
}
.hc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  padding: 12px 28px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.hc-btn:hover { background: var(--ink); color: #fff }
.hc-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .45);
  color: #fff;
}
.hc-btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff }

.hc-dots {
  position: absolute;
  bottom: 28px;
  right: 64px;
  display: flex;
  gap: 6px;
  z-index: 10;
}
.hc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  border: none;
  cursor: pointer;
  transition: all .25s;
  padding: 0;
}
.hc-dot.active { background: #fff; width: 20px; border-radius: 2px }

.hc-counter {
  position: absolute;
  bottom: 30px;
  left: 64px;
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .1em;
  z-index: 10;
}

/* ================================================
   ENTRY GRID
================================================ */
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}
.entry-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}
.entry-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.entry-card:hover .entry-card-bg { transform: scale(1.03) }
.entry-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%);
}
.entry-card-info {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  width: 100%;
}
.entry-card-label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 6px;
}
.entry-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
}
.entry-card-count { font-size: 11px; color: rgba(255, 255, 255, .4) }
.entry-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-top: 12px;
  transition: color .2s, gap .2s;
}
.entry-card:hover .entry-card-arrow { color: #fff; gap: 10px }

/* ================================================
   PRICE STRIP
================================================ */
.strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.strip-item {
  flex: 1;
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}
.strip-item:last-child { border-right: none }
.strip-size {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.strip-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
}
.strip-desc { font-size: 11px; color: var(--muted2); margin-top: 3px }

/* ================================================
   BUNDLE BANNER
================================================ */
.bundle-banner {
  padding: 72px 64px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.bundle-label {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.bundle-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
}
.bundle-banner h2 em { font-style: italic }
.bundle-body { font-size: 13px; color: var(--muted); line-height: 1.85; margin-bottom: 20px }
.bundle-perks { list-style: none; margin-bottom: 28px }
.bundle-perks li {
  font-size: 13px;
  color: var(--muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bundle-perks li::before { content: '—'; color: var(--muted2); flex-shrink: 0 }
.bundle-visual-side {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bundle-bottles {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-12px) }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  padding: 12px 28px;
  transition: background .2s;
}
.btn-primary:hover { background: #333 }

/* ================================================
   FEATURES ROW
================================================ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature { padding: 36px 28px; background: #fff }
.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  font-style: italic;
  color: var(--line);
  line-height: 1;
  margin-bottom: 14px;
}
.feature-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.feature-body { font-size: 13px; color: var(--muted); line-height: 1.8 }

/* ================================================
   TESTIMONIALS
================================================ */
.testi-section { padding: 72px 64px; border-bottom: 1px solid var(--line) }
.testi-label {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.testi-card { padding: 28px 24px; background: #fff }
.testi-stars { font-size: 10px; color: var(--ink); letter-spacing: 3px; margin-bottom: 12px }
.testi-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink2);
  margin-bottom: 14px;
}
.testi-name {
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--ink);
  text-transform: uppercase;
  font-weight: 500;
}
.testi-location { font-size: 11px; color: var(--muted); margin-top: 2px }

/* ================================================
   SHIPPING ROW
================================================ */
.shipping-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.shipping-item { padding: 24px 22px; background: var(--off) }
.shipping-title { font-size: 12px; font-weight: 500; color: var(--ink); margin-bottom: 5px }
.shipping-body { font-size: 12px; color: var(--muted); line-height: 1.75 }

/* ================================================
   FOOTER
================================================ */
footer { background: var(--ink); color: rgba(255, 255, 255, .4); padding: 48px 64px 20px }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: #fff;
  display: block;
  margin-bottom: 10px;
}
.footer-about { font-size: 12px; color: rgba(255, 255, 255, .28); line-height: 1.85; max-width: 200px }
.footer-socials { display: flex; gap: 6px; margin-top: 12px }
.footer-social {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .28);
  font-size: 11px;
  transition: var(--t);
}
.footer-social:hover { border-color: rgba(255, 255, 255, .4); color: rgba(255, 255, 255, .7) }
.footer-col h5 {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  margin-bottom: 12px;
  font-weight: 500;
}
.footer-col ul { list-style: none }
.footer-col li { margin-bottom: 7px }
.footer-col a { font-size: 12px; color: rgba(255, 255, 255, .35); transition: color .2s }
.footer-col a:hover { color: #fff }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 10px; color: rgba(255, 255, 255, .18) }
.footer-legal { display: flex; gap: 14px }
.footer-legal a { font-size: 10px; color: rgba(255, 255, 255, .18); transition: color .2s }
.footer-legal a:hover { color: rgba(255, 255, 255, .4) }
.footer-disclaimer {
  font-size: 10px;
  color: rgba(255, 255, 255, .1);
  line-height: 1.8;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .04);
}

/* ================================================
   CART PANEL
================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  z-index: 890;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.cart-overlay.visible { opacity: 1; pointer-events: all }
.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 100vw;
  background: #fff;
  z-index: 895;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}
.cart-panel.visible { transform: translateX(0) }
.cart-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
}
.cart-header-title {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}
.cart-header-count { font-size: 11px; color: var(--muted) }
.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 18px;
  padding: 4px;
  line-height: 1;
  transition: color .2s;
}
.cart-close:hover { color: var(--ink) }
.cart-body { flex: 1; overflow-y: auto; padding: 14px 22px; scrollbar-width: thin }
.cart-empty { text-align: center; padding: 48px 0 }
.cart-empty p { font-size: 14px; color: var(--muted); margin-bottom: 5px }
.cart-empty span { font-size: 12px; color: var(--muted2) }
.cart-item { display: flex; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line) }
.cart-item:last-child { border: none }
.cart-item-visual {
  width: 40px;
  height: 58px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-info { flex: 1 }
.cart-item-name { font-size: 13px; color: var(--ink); margin-bottom: 2px; font-weight: 400 }
.cart-item-insp { font-size: 10px; color: var(--muted); margin-bottom: 5px }
.cart-item-size {
  display: inline-flex;
  font-size: 9px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--off);
  padding: 2px 7px;
  letter-spacing: .06em;
}
.cart-item-controls { display: flex; align-items: center; gap: 7px; margin-top: 7px }
.qty-control { display: flex; align-items: center; border: 1px solid var(--line) }
.qty-btn {
  width: 26px;
  height: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.qty-btn:hover { background: var(--off); color: var(--ink) }
.qty-num { min-width: 28px; text-align: center; font-size: 13px; color: var(--ink) }
.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted2);
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 0;
  transition: color .2s;
  margin-left: auto;
}
.cart-item-remove:hover { color: var(--red) }
.cart-item-price { font-size: 14px; color: var(--ink); white-space: nowrap }
.cart-bundle-hint {
  background: var(--off);
  border-left: 2px solid var(--ink);
  padding: 10px 12px;
  margin: 8px 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.cart-bundle-hint b { color: var(--ink); font-weight: 500 }
.cart-countdown {
  background: var(--off);
  border: 1px solid var(--line);
  padding: 9px 12px;
  margin: 7px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-cd-label { font-size: 10px; color: var(--muted) }
.cart-cd-time {
  font-size: 16px;
  color: var(--ink);
  display: inline-block;
  min-width: 48px;
  font-weight: 500;
}
.cart-footer { padding: 14px 22px; border-top: 1px solid var(--line) }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.cart-total-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.cart-total-value { font-size: 22px; font-weight: 300; color: var(--ink) }
.cart-savings { font-size: 11px; color: var(--grn); margin-bottom: 14px }
.btn-proceed-checkout {
  width: 100%;
  padding: 13px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s;
  margin-bottom: 7px;
}
.btn-proceed-checkout:hover { background: #333 }
.btn-whatsapp-order {
  width: 100%;
  padding: 11px;
  background: transparent;
  border: 1px solid rgba(37, 211, 102, .3);
  color: var(--grn);
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: var(--t);
}
.btn-whatsapp-order:hover { background: rgba(37, 211, 102, .05); border-color: var(--grn) }

/* ================================================
   ORDER MODAL
================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 900;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 52px 20px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  backdrop-filter: blur(4px);
  overflow-y: auto;
}
.modal-overlay.visible { opacity: 1; pointer-events: all }
.modal-box {
  background: #fff;
  width: 100%;
  max-width: 500px;
  padding: 36px;
  position: relative;
  border: 1px solid var(--line);
  transform: translateY(12px);
  transition: transform .28s;
}
.modal-overlay.visible .modal-box { transform: translateY(0) }
.modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  background: none;
  border: none;
  font-size: 17px;
  cursor: pointer;
  color: var(--muted);
  padding: 5px;
  line-height: 1;
  transition: color .2s;
}
.modal-close:hover { color: var(--ink) }
.modal-eyebrow {
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.modal-title { font-size: 20px; font-weight: 400; color: var(--ink); margin-bottom: 4px }
.modal-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  line-height: 1.7;
}
.order-summary {
  background: var(--off);
  padding: 10px 12px;
  margin-bottom: 14px;
  max-height: 130px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.order-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  padding: 3px 0;
}
.order-summary-item span:last-child { color: var(--ink); font-size: 13px }
.order-summary-total {
  border-top: 1px solid var(--line);
  margin-top: 5px;
  padding-top: 5px;
  display: flex;
  justify-content: space-between;
}
.order-summary-total span:last-child { color: var(--ink); font-size: 15px; font-weight: 500 }
.form-group { margin-bottom: 12px }
.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--ink) }
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid { border-color: var(--red) }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23777'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.form-error { font-size: 10px; color: var(--red); margin-top: 3px; display: none }
.form-error.visible { display: block }
.form-group textarea { resize: vertical; min-height: 56px }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px }
.form-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  margin-top: 2px;
}
.form-total-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-total-value { font-size: 22px; font-weight: 300; color: var(--ink) }
.btn-submit {
  width: 100%;
  padding: 13px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s;
  margin-top: 12px;
}
.btn-submit:hover:not(:disabled) { background: #333 }
.btn-submit:disabled { opacity: .35; cursor: not-allowed }
.form-security-note { text-align: center; font-size: 11px; color: var(--muted); margin-top: 7px }
.modal-loading { display: none; text-align: center; padding: 24px 0 }
.spinner {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--line);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg) } }
.modal-success { display: none; text-align: center; padding: 12px 0 }
.success-icon { margin-bottom: 12px }
.modal-success h3 { font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 8px }
.modal-success p { font-size: 13px; color: var(--muted); line-height: 1.9 }
.success-tag {
  margin-top: 14px;
  font-size: 11px;
  font-style: italic;
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
}

/* ================================================
   PROMO POPUP
================================================ */
.promo-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
  backdrop-filter: blur(4px);
}
.promo-popup-overlay.visible { opacity: 1; pointer-events: all }
.promo-popup {
  background: #fff;
  max-width: 600px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  transform: translateY(14px) scale(.98);
  transition: transform .3s cubic-bezier(.23, .92, .52, 1);
  border: 1px solid var(--line);
}
.promo-popup-overlay.visible .promo-popup { transform: translateY(0) scale(1) }
.promo-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, .55);
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background .2s;
}
.promo-close:hover { background: var(--ink) }
.promo-popup-img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  overflow: hidden;
  background: var(--off);
  position: relative;
}
.promo-popup-img img.popup-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.promo-popup-img img.popup-bg-img.visible { display: block }
.promo-popup-img svg { position: relative; z-index: 1; width: 100%; height: 100%; display: block }
.promo-popup-body {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-popup-eyebrow {
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.promo-popup-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 12px;
}
.promo-popup-title em { font-style: italic }
.promo-popup-desc { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 8px }
.promo-popup-saving { font-size: 14px; color: var(--muted); margin-bottom: 22px }
.promo-popup-saving strong { color: var(--ink); font-weight: 500 }
.promo-popup-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--ink);
  color: #fff;
  padding: 12px 22px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s;
  margin-bottom: 16px;
}
.promo-popup-cta:hover { background: #333 }
.promo-popup-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 11px;
  color: var(--muted);
  user-select: none;
}
.promo-popup-check input { width: 13px; height: 13px; cursor: pointer; flex-shrink: 0 }

/* ================================================
   FLOAT BUTTONS
================================================ */
.float-wa {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 880;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  padding: 10px 16px 10px 12px;
  font-size: 12px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, .2);
  transition: var(--t);
}
.float-wa:hover { background: #1db956; transform: translateY(-1px) }
.float-wa-icon { font-size: 14px; line-height: 1 }
.float-cart {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 880;
  background: #fff;
  border: 1px solid var(--line);
  padding: 9px 16px;
  display: none;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: var(--t);
}
.float-cart:hover { border-color: var(--ink) }
.float-cart-badge {
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 500;
}
.float-cart-label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ================================================
   SCROLL REVEAL
================================================ */
.reveal { opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease }
.reveal.visible { opacity: 1; transform: none }
.delay-1 { transition-delay: .07s }
.delay-2 { transition-delay: .14s }
.delay-3 { transition-delay: .21s }

/* ================================================
   HIDDEN STUBS
================================================ */
#theme-toggle { display: none }

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1020px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px }
  .bundle-banner { grid-template-columns: 1fr; gap: 32px; padding: 52px 32px }
  .bundle-visual-side { display: none }
}
@media (max-width: 880px) {
  .nav-center { display: none }
  .nav-logo { width: auto; flex: 1 }
  .nav-right { width: auto }
  #main-nav { padding: 0 }
.hero-carousel {
  height: 100svh;
  min-height: 480px;
  cursor: default;
}
.hc-content {
  padding: 0 24px 64px;
  max-width: 100%;
}
.hc-title {
  font-size: clamp(32px, 8vw, 56px);
}
.hc-desc {
  font-size: 13px;
  max-width: 100%;
}
.hc-counter { left: 24px; bottom: 24px }
.hc-dots { right: 24px; bottom: 24px }
  .entry-grid { grid-template-columns: 1fr }
  .entry-card { aspect-ratio: 16/9 }
  .features { grid-template-columns: 1fr }
  .testi-section { padding: 48px 24px }
  .testi-grid { grid-template-columns: 1fr }
  .shipping-row { grid-template-columns: 1fr 1fr }
  footer { padding: 40px 24px 18px }
  .footer-grid { grid-template-columns: 1fr }
  .strip { flex-direction: column }
  .strip-item { border-right: none; border-bottom: 1px solid var(--line) }
  .strip-item:last-child { border-bottom: none }
  .cart-panel { width: 100%; max-width: 100vw }
}
@media (max-width: 520px) {
  .promo-popup { grid-template-columns: 1fr }
  .promo-popup-img { min-height: 160px }
  .promo-popup-body { padding: 24px 20px }
  .form-row { grid-template-columns: 1fr }
  .footer-legal { flex-wrap: wrap; gap: 8px }
  .float-wa-text { display: none }
  .float-wa { padding: 11px }
  #ann { padding: 8px 36px 8px 14px; font-size: 10px }
}

/* ================================================
   MEGA MENU
================================================ */
.mega-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 790;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
  overflow-y: auto;
}
.mega-overlay.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mega-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 120px 48px 48px;
}
.mega-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.mega-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  cursor: pointer;
  margin-bottom: -1px;
  letter-spacing: .01em;
  transition: color .15s, border-color .15s;
}
.mega-tab.active {
  color: var(--ink);
  border-bottom-color: var(--ink);
  font-weight: 500;
}
.mega-tab:hover { color: var(--ink) }

.mega-search-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
  margin-bottom: 40px;
  background: var(--off);
}
.mega-search-input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 14px;
  color: var(--ink);
}
.mega-search-input::placeholder { color: var(--muted2) }

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 32px;
}
.mega-grid.hidden { display: none }

.mega-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: opacity .15s;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.mega-item:hover { opacity:.85; background:#111; }
.mega-item-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center; background-color:#222;
  transition:transform .35s ease;
}
.mega-item:hover .mega-item-bg { transform:scale(1.04); }
.mega-item-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.72) 0%,rgba(0,0,0,.18) 60%,transparent 100%);
}
.mega-item-label {
  position:absolute; bottom:14px; left:16px; right:16px;
  font-family:'DM Sans',sans-serif; font-size:13px; font-weight:700;
  color:#fff; letter-spacing:.02em; line-height:1.3;
  text-shadow:0 1px 4px rgba(0,0,0,.5);
}
.mega-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:2px; background:#e0e0e0; border:1px solid #e0e0e0; margin-bottom:32px;
}
.mega-grid.hidden { display:none; }
@media(max-width:880px){ .mega-grid { grid-template-columns:repeat(2,1fr); } }

/* ================================================
   COLLECTION PAGE STYLES (koleksi.html)
================================================ */

/* Page wrapper */
.page-wrap {
  padding-top: 64px;
  min-height: 100vh;
}

/* Gender Tabs Bar (sticky) */
.gender-tabs-bar {
  position: sticky;
  top: 64px;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  gap: 16px;
}
.gender-tabs {
  display: flex;
  height: 52px;
}
.gender-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  height: 100%;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.gender-tab.active { color: var(--ink); border-bottom-color: var(--ink); font-weight: 500; }
.gender-tab:hover { color: var(--ink); }
.gender-tab-count {
  font-size: 10px;
  color: var(--muted2);
  font-weight: 400;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 8px 14px;
  min-width: 200px;
  color: var(--muted);
  background: #fff;
}
.search-bar input {
  border: none;
  outline: none;
  background: none;
  font-size: 13px;
  color: var(--ink);
  width: 100%;
}
.search-bar input::placeholder { color: var(--muted2); }
.search-bar button {
  background: none; border: none;
  cursor: pointer; color: var(--muted);
  display: flex; align-items: center;
}

/* Products Section */
.products-section {
  padding: 32px 40px 80px;
}
.products-count {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: .04em;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.product-card {
  background: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: background .15s;
  position: relative;
  overflow: hidden;
}
.product-card:hover { background: var(--off); }
.product-card-visual {
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.product-card:hover .product-card-img { transform: scale(1.04); }
.product-card-bottle {
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s ease;
}
.product-card:hover .product-card-bottle { transform: translateY(-6px); }
.card-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 9px;
  font-weight: 500;
}
.badge-hot { background: #c0392b; color: #fff; }
.badge-new { background: #27ae60; color: #fff; }
.badge-exclusive { background: var(--ink); color: #fff; }
.product-card-info {
  padding: 16px 18px 20px;
  border-top: 1px solid var(--line);
  flex: 1;
}
.card-inspired {
  font-size: 10px;
  color: var(--muted2);
  letter-spacing: .06em;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.card-name {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 3px;
  line-height: 1.25;
}
.card-family {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 12px;
}
.card-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}
.card-price-from {
  font-size: 9px;
  color: var(--muted2);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.card-price-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
}
.card-price-normal {
  font-size: 11px;
  color: var(--muted2);
  text-decoration: line-through;
}
.card-stock-bar {
  height: 2px;
  background: var(--line);
  margin-bottom: 5px;
  overflow: hidden;
}
.card-stock-fill {
  height: 100%;
  background: var(--ink);
  transition: width .3s;
}
.card-stock-fill.low { background: #e67e22; }
.card-stock-fill.crit { background: var(--red); }
.card-stock-text {
  font-size: 10px;
  color: var(--muted2);
}
.card-stock-text.urgent { color: var(--red); font-weight: 500; }
.card-tap-hint {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: #fff;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  transform: translateY(100%);
  transition: transform .2s ease;
}
.product-card:hover .card-tap-hint { transform: translateY(0); }
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  font-size: 14px;
  color: var(--muted);
}
.grid-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 20px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .1em;
}

/* ================================================
   PRODUCT MODAL (Bottom Sheet)
================================================ */
.pm-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.pm-overlay.visible { opacity: 1; pointer-events: all; }

.pm-sheet {
  background: #fff;
  width: 100%;
  max-width: 640px;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 0;
  border-top: 1px solid var(--line);
  position: relative;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.23,.92,.52,1);
  scroll-behavior: smooth;
  scrollbar-width: thin;
}
.pm-overlay.visible .pm-sheet { transform: translateY(0); }

.pm-close {
  position: absolute;
  top: 14px; right: 16px;
  z-index: 10;
  background: var(--off);
  border: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
  transition: background .2s, color .2s;
}
.pm-close:hover { background: var(--line); color: var(--ink); }

/* Sheet header */
.pm-header {
  display: flex;
  gap: 20px;
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--line);
}
.pm-header-bottle {
  flex-shrink: 0;
  width: 72px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.pm-header-info { flex: 1; }
.pm-insp {
  font-size: 10px;
  color: var(--muted2);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pm-name {
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 3px;
  line-height: 1.2;
}
.pm-family {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.pm-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pm-price-from {
  font-size: 9px;
  color: var(--muted2);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pm-price-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
}
.pm-price-old {
  font-size: 12px;
  color: var(--muted2);
  text-decoration: line-through;
}
.pm-stock-info {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pm-stock-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grn);
  flex-shrink: 0;
}
.pm-stock-dot.low { background: #e67e22; }
.pm-stock-dot.out { background: var(--red); }

/* Sheet body sections */
.pm-section {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.pm-section:last-child { border-bottom: none; }
.pm-section-label {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 500;
}

/* Scent / variation chips */
.scent-variations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.scent-chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  padding: 8px 14px;
  font-size: 12px;
  color: var(--ink2);
  cursor: pointer;
  background: #fff;
  transition: border-color .15s, background .15s;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
.scent-chip-btn:hover { border-color: var(--ink); background: var(--off); }
.scent-chip-btn.selected { border-color: var(--ink); background: var(--ink); color: #fff; }
.scent-chip-btn.out-chip { opacity: .38; pointer-events: none; }
.scent-chip-num { font-size: 9px; opacity: .6; }
.scent-chip-hot { font-size: 8px; letter-spacing: .06em; text-transform: uppercase; padding: 1px 5px; border-radius: 2px; flex-shrink: 0; }
.chip-badge-hot { background: rgba(192,57,43,.15); color: var(--red); }
.chip-badge-new { background: rgba(39,174,96,.15); color: var(--grn); }

/* Size selector */
.size-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.size-btn {
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: border-color .15s, background .15s;
  font-family: 'DM Sans', sans-serif;
}
.size-btn:hover,
.size-btn.selected { border-color: var(--ink); background: var(--off); }
.size-btn.selected { background: var(--ink); color: #fff; }
.size-btn .ml { font-size: 14px; font-weight: 500; }
.size-btn .price-now { font-size: 16px; font-family: 'Cormorant Garamond', serif; font-weight: 300; }
.size-btn .price-was { font-size: 10px; color: var(--muted2); text-decoration: line-through; }
.size-btn.selected .price-was { color: rgba(255,255,255,.5); }
.size-btn.selected .ml,
.size-btn.selected .price-now { color: #fff; }

/* Quantity */
.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
}
.qty-step-btn {
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.qty-step-btn:hover { background: var(--off); color: var(--ink); }
.qty-step-btn:active { background: var(--line); }
.qty-display {
  min-width: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--ink);
  font-weight: 400;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-hint {
  font-size: 11px;
  color: var(--muted);
}

/* Sheet footer CTA */
.pm-footer {
  padding: 16px 24px;
  background: #fff;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  align-items: center;
  position: sticky;
  bottom: 0;
}
.pm-total-display {
  flex: 1;
}
.pm-total-label {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1px;
}
.pm-total-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--ink);
}
.btn-add-to-cart-main {
  flex: 2;
  padding: 14px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}
.btn-add-to-cart-main:hover:not(:disabled) { background: #333; }
.btn-add-to-cart-main:disabled { opacity: .35; cursor: not-allowed; }
.btn-add-to-cart-main.added { background: var(--grn); }

/* validation shake */
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}
.shake { animation: shake .3s ease; }

/* Cart item remove button variant */
.cart-item-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted2);
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 0;
  transition: color .2s;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cart-item-remove-btn:hover { color: var(--red); }

/* ================================================
   RESPONSIVE (Collection page overrides)
================================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .gender-tabs-bar { padding: 0 16px; }
  .gender-tab { padding: 0 14px; font-size: 12px; }
  .products-section { padding: 20px 16px 64px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .search-bar { min-width: 120px; }
  .pm-sheet { max-height: 88vh; }
  .size-options { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .pm-header { gap: 14px; }
  .pm-header-bottle { width: 52px; }
  .pm-name { font-size: 18px; }
  .scent-chip-btn { font-size: 11px; padding: 7px 11px; }
}


