:root {
  --maroon: #4A101F;
  --maroon-deep: #2A0B12;
  --coffee: #241614;
  --copper: #B86F4A;
  --copper-light: #C98A63;
  --gold: #D6A56A;
  --cream: #F7F1E8;
  --white: #FCFAF6;
  --beige: #EEE3D5;
  --ink: #241816;
  --muted: #76645D;
  --border: #E3D5C8;
  --success: #2E7D4F;
  --wish: #E2A52A;
  --shadow: 0 15px 40px rgba(42, 11, 18, 0.08);
  --radius: 14px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: Inter, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 12%, rgba(214, 165, 106, 0.12), transparent 35%),
    radial-gradient(circle at 10% 70%, rgba(184, 111, 74, 0.07), transparent 32%),
    var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
button, input, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
::selection { background: #ead5c0; color: var(--maroon-deep); }
.phone-only { display: none !important; }

.wrap { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }
.section { padding: 4.2rem 0; }
.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}
.eyebrow.light { color: var(--gold); }
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--maroon);
}
h1 { font-size: clamp(3rem, 8vw, 6.4rem); margin: 0.4rem 0 0; }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin: 0.45rem 0 0; }
h3 { font-size: 1.4rem; margin: 0.2rem 0 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.5rem;
  border: 0;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.btn-primary { background: var(--maroon); color: var(--white); }
.btn-primary:hover { background: var(--maroon-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--maroon);
  box-shadow: inset 0 0 0 1px rgba(74, 16, 31, 0.18);
}
.btn-ghost:hover { background: var(--white); }
.btn-gold { background: var(--gold); color: var(--maroon-deep); }
.btn-gold:hover { background: var(--copper-light); }
.btn-wa { width: 100%; background: var(--success); color: #fff; margin: 0.6rem 0; }
.btn.is-added { background: var(--success); }

.announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.2rem;
  background: var(--maroon-deep);
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}
.announce-icon { display: grid; opacity: 0.85; }

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 5000;
  pointer-events: all;
}
.site-intro-logo {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  opacity: 1;
  transition: opacity 0.35s ease;
}
.site-intro-logo img {
  width: min(7.5rem, 34vw);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(42, 11, 18, 0.28));
}
.site-intro-door {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(214, 165, 106, 0.12), transparent 52%),
    var(--maroon-deep);
  transition: transform 1.05s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
.site-intro-door--left { left: 0; transform-origin: left center; }
.site-intro-door--right { right: 0; transform-origin: right center; }
body.is-ready .site-intro-door--left { transform: translateX(-100%); }
body.is-ready .site-intro-door--right { transform: translateX(100%); }
body.is-ready .site-intro-logo { opacity: 0; }
body.is-ready .site-intro {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease 0.82s;
}
body:not(.is-ready) { overflow: hidden; }

.site-chrome {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.28s ease, box-shadow 0.3s ease;
}
.site-chrome.is-scrolled {
  box-shadow: 0 8px 24px rgba(42, 11, 18, 0.06);
}
.site-chrome.is-hidden {
  transform: translateY(-100%);
}
.site-chrome .announce {
  opacity: 0;
  transform: translateY(-8px);
  animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-play-state: paused;
}
.site-chrome .site-header {
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeUp 0.65s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-play-state: paused;
}
body.is-ready .site-chrome .announce,
body.is-ready .site-chrome .site-header {
  animation-play-state: running;
}
.site-header {
  position: relative;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, min-height 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(42, 11, 18, 0.06);
  border-bottom-color: rgba(74, 16, 31, 0.08);
}
.nav-bar {
  width: min(1180px, calc(100% - 1.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.4rem 1fr 2.4rem;
  align-items: center;
  min-height: 4.2rem;
  gap: 0.5rem;
}
.nav-bar .logo { grid-column: 2; justify-self: center; }
.nav-actions { grid-column: 3; }
.site-header.is-scrolled .nav-bar { min-height: 3.5rem; }
@media (min-width: 768px) {
  .nav-bar { position: relative; }
}
.logo { display: flex; justify-content: center; }
.logo img { height: 2.5rem; width: auto; }
.desktop-nav, .nav-actions #search-open { display: none; }
.desktop-nav a {
  font-size: 0.82rem;
  color: var(--ink);
  transition: color 0.2s ease;
}
.desktop-nav a:hover { color: var(--copper); }
.nav-actions { display: flex; justify-content: flex-end; gap: 0.15rem; }
.nav-social-link { color: var(--maroon); }
.cart-btn { display: none !important; }
.icon-btn {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  color: var(--maroon);
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 3px auto;
  background: currentColor;
}
.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 1rem;
  height: 1rem;
  border-radius: 99px;
  background: var(--maroon);
  color: var(--white);
  font-size: 0.62rem;
  line-height: 1rem;
  text-align: center;
}

.hero { padding: 1.5rem 0 2.4rem; overflow: hidden; }
.hero-grid { display: grid; gap: 1.6rem; align-items: center; }
.hero-copy h1 span { display: block; }
.hero-lead { max-width: 32rem; color: var(--muted); margin: 1rem 0 0; }
.hero-benefits { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 0.8rem; }
.hero-benefits li { display: grid; grid-template-columns: 1.2rem 1fr; gap: 0 0.7rem; }
.hero-benefits strong { font-size: 0.9rem; }
.hero-benefits span:last-child { grid-column: 2; color: var(--muted); font-size: 0.85rem; }
.line-icon {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  border-radius: 99px;
  border: 1px solid var(--copper);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }
.hero-media { position: relative; display: grid; place-items: center; min-height: 280px; }
.hero-glow {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 165, 106, 0.28), transparent 68%);
}
.hero-product {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  max-height: min(72vh, 640px);
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(42, 11, 18, 0.16));
  animation: float 5.5s ease-in-out infinite;
}
.hero-shadow {
  width: 42%;
  height: 14px;
  margin-top: -6px;
  border-radius: 50%;
  background: rgba(36, 22, 20, 0.16);
  filter: blur(6px);
}
.hero-frame { display: contents; }
.hero-slider {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 420px);
}
.hero-slider .hero-slide {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
  animation: none;
}
.hero-slider .hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  animation: float 5.5s ease-in-out infinite;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 0.4rem;
  z-index: 3;
  display: flex;
  gap: 0.4rem;
  transform: translateX(-50%);
}
.hero-dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(74, 16, 31, 0.28);
  cursor: pointer;
}
.hero-dot.is-active { background: var(--maroon); }

.buy-card {
  display: grid;
  background: var(--white);
  border: 1px solid rgba(74, 16, 31, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.buy-gallery { background: var(--beige); }
.gallery-main img { width: 100%; object-fit: contain; max-height: 420px; padding: 1rem; }
.thumbs { display: flex; gap: 0.5rem; padding: 0 1rem 1rem; }
.thumb {
  width: 4.4rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0;
  background: var(--white);
  overflow: hidden;
}
.thumb.is-active { border-color: var(--maroon); }
.buy-info { padding: 1.35rem 1.2rem 1.5rem; }
.buy-mark { height: 1.7rem; width: auto; margin-bottom: 0.7rem; }
.buy-heading { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.buy-heading h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin: 0.15rem 0 0; }
.price { margin: 0; font-family: var(--font-serif); font-size: 1.7rem; color: var(--maroon); }
.buy-sub { margin: 0.25rem 0 0; color: var(--copper); font-size: 0.92rem; }
.lede { color: var(--muted); margin: 0.8rem 0 0; }
.check-list { margin: 1rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.35rem; font-size: 0.92rem; }
.check-list li::before { content: "–  "; color: var(--copper); }
.option-block { margin-top: 1.2rem; border: 0; padding: 0; }
.option-label { margin: 0 0 0.55rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--maroon); }
.picks { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pick, .package {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 10px;
}
.pick { min-height: 2.4rem; padding: 0.4rem 0.9rem; }
.pick.is-active, .package.is-active { border-color: var(--maroon); background: #f8efe8; }
.flavor-detail {
  margin: 0.65rem 0 0;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: rgba(74, 16, 31, 0.05);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}
.flavor-detail:empty,
.flavor-detail[hidden] { display: none; }
.qty-limit {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(26, 9, 14, 0.92);
}
.product-lightbox[hidden] { display: none !important; }
.product-lightbox img {
  width: min(100%, 420px);
  max-height: min(82vh, 720px);
  object-fit: contain;
  border-radius: 12px;
}
.product-lightbox-close {
  position: absolute;
  top: calc(0.85rem + env(safe-area-inset-top));
  right: calc(0.85rem + env(safe-area-inset-right));
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 50%;
  background: rgba(252, 250, 246, 0.14);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.gallery-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.packages { display: grid; gap: 0.5rem; }
.package { display: grid; grid-template-columns: auto 1fr auto; gap: 0.7rem; align-items: center; padding: 0.8rem 0.9rem; }
.package small, .package em { font-style: normal; color: var(--muted); font-size: 0.8rem; display: block; }
.package strong { font-size: 0.92rem; font-weight: 600; }
.mix-hint {
  margin: -0.2rem 0 0.55rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.buy-row { display: grid; grid-template-columns: auto 1fr; gap: 0.7rem; margin-top: 1.2rem; }
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
}
.qty button { width: 2.5rem; height: 2.8rem; border: 0; background: none; color: var(--maroon); }
.qty span { min-width: 1.5rem; text-align: center; font-weight: 600; }
.btn-buy { width: 100%; }
.pay-row { display: none; }
.pay-row p { margin: 0 0 0.4rem; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.7rem; }
.pay-row ul { display: flex; flex-wrap: wrap; gap: 0.8rem 1.1rem; margin: 0; padding: 0; list-style: none; }
.pay-row li { display: flex; align-items: center; gap: 0.4rem; }
.pay-ico { width: 0.7rem; height: 0.7rem; border-radius: 99px; display: inline-block; }
.pay-ico.cod { background: var(--maroon); }
.pay-ico.wish { background: var(--wish); }

.love h2 { max-width: 18ch; }
.love-grid { display: grid; gap: 1rem; margin-top: 1.8rem; }
.love-card {
  background: var(--white);
  border: 1px solid rgba(74, 16, 31, 0.12);
  border-radius: var(--radius);
  padding: 1.3rem;
  transition: transform 0.25s ease;
}
.love-card:hover { transform: translateY(-3px); }
.love-icon {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 99px;
  border: 1px solid var(--copper);
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}
.love-card:hover .love-icon { transform: translateY(-3px); }
.kicker { margin: 0; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper); }

.ritual-band {
  background: var(--maroon-deep);
  color: var(--cream);
  padding: 4.2rem 0;
}
.ritual-grid { display: grid; gap: 2rem; align-items: center; }
.ritual-copy h2 { color: var(--cream); max-width: 12ch; }
.ritual-visual img {
  width: 100%;
  border-radius: var(--radius);
}

.how-grid, .inside-grid { display: grid; gap: 1.1rem; margin-top: 1.8rem; }
.inside-grid article {
  background: var(--white);
  border: 1px solid rgba(74, 16, 31, 0.12);
  border-radius: var(--radius);
  padding: 1.3rem;
}
.how-grid article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(74, 16, 31, 0.12);
  border-radius: var(--radius);
  padding: 1.3rem;
}
.how-ico {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(184, 111, 74, 0.12);
  color: var(--copper);
}
.how-ico svg { width: 1.2rem; height: 1.2rem; }
.how .step {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--copper);
}

.about-grid { display: grid; gap: 1rem; }
.about-page { padding-top: 3rem; }
.about-page-inner {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}
.about-logo {
  width: min(180px, 46vw);
  height: auto;
  margin: 0 auto 1.4rem;
}
.about-page h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  margin: 0.35rem 0 0;
}
.about-tagline {
  margin: 0.7rem 0 0;
  color: var(--copper);
  font-size: 1.05rem;
}
.about-story {
  text-align: left;
  margin-top: 2rem;
}
.about-story p { color: var(--muted); }
.about-story-ar {
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: right;
}
.about-story-ar h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0.35rem 0 1rem;
}
.about-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 2.4rem;
}
.cart-btn { position: relative; }
.story { max-width: 42rem; color: var(--muted); font-size: 1.05rem; }

.faq-layout { display: grid; gap: 1.5rem; }
.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 500;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--copper); }
.faq-list details[open] summary::after { content: "–"; }
.faq-body { overflow: hidden; }
.faq-body p { color: var(--muted); margin: 0.7rem 0 0; }

.final-cta {
  background: var(--maroon);
  color: var(--cream);
  padding: 4.2rem 0;
}
.final-grid { display: grid; gap: 1.5rem; align-items: center; }
.final-cta h2 { color: var(--cream); }
.final-cta p { color: #E8D6C5; max-width: 34rem; }
.final-cta img { width: min(100%, 420px); justify-self: end; }

.wa-pro { padding-top: 1.2rem; }
.wa-card {
  display: grid;
  gap: 0.95rem;
  max-width: 26rem;
  padding: 1.15rem 1.15rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  color: inherit;
}
.wa-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wa-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #2f4a3c;
  color: #fff;
  flex-shrink: 0;
}
.wa-card-head strong {
  display: block;
  font-size: 1.02rem;
  color: var(--ink);
}
.wa-card-head small {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.75rem;
  color: #128c7e;
}
.wa-bubble {
  margin: 0;
  padding: 0.85rem 1rem;
  background: #e8f7e4;
  color: var(--ink);
  border-radius: 4px 16px 16px 16px;
  font-size: 0.95rem;
  line-height: 1.45;
}
.wa-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.2rem;
  border-radius: 12px;
  background: #2f4a3c;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.wa-card:hover .wa-cta { background: #1fb855; }

.site-footer {
  background: var(--maroon-deep);
  color: #E8D6C5;
  padding: 3.5rem 0 1.4rem;
}
.footer-grid { display: grid; gap: 1.8rem; }
.footer-brand img { height: 2.6rem; width: auto; margin-bottom: 0.8rem; }
.footer-title { margin: 0 0 0.6rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.site-footer a, .site-footer p { display: block; margin: 0.32rem 0; font-size: 0.92rem; }
.site-footer a:hover { color: var(--cream); }
.pay-title { margin-top: 1.3rem; }
.muted { color: color-mix(in srgb, #E8D6C5 70%, transparent); }
.copyright {
  text-align: center;
  margin: 2.4rem 0 0;
  font-size: 0.78rem;
  color: color-mix(in srgb, #E8D6C5 70%, transparent);
}

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1.2rem;
  z-index: 45;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #2f4a3c;
  color: #fff;
  box-shadow: 0 10px 24px rgba(47, 74, 60, 0.28);
  animation: pulse 2.8s ease-in-out infinite;
}
.sticky-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 40;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 64px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: #FCFAF6;
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(42, 11, 18, 0.08);
  transform: translateY(110%);
  transition: transform 0.32s ease;
}
.sticky-bar.is-on {
  display: flex;
  transform: translateY(0);
}
.sticky-bar .btn { min-width: 9.5rem; height: 44px; min-height: 44px; }
.sticky-bar span { font-family: var(--font-serif); font-size: 1.3rem; color: var(--maroon); }

.drawer[hidden], .sheet[hidden], .search-overlay[hidden], .toast[hidden] { display: none; }
.drawer, .sheet, .search-overlay { position: fixed; inset: 0; z-index: 400; }
.drawer { display: flex; justify-content: flex-end; }
.drawer-backdrop, .sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 11, 18, 0.4);
  border: 0;
}
.drawer-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  height: 100%;
  background: var(--cream);
  padding: 1.2rem;
  overflow: auto;
  animation: slideIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-panel { background: var(--cream); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.4rem; }
.drawer-head img { height: 2.2rem; width: auto; }
.drawer-head h2 { margin: 0; font-size: 2rem; }
.mobile-nav { display: grid; gap: 1rem; font-family: var(--font-serif); font-size: 1.7rem; }
.mobile-social { display: flex; gap: 1rem; margin-top: 2rem; font-size: 0.85rem; }
.cart-line { display: grid; grid-template-columns: 5.5rem 1fr auto; gap: 0.8rem; align-items: start; }
.cart-line img { width: 5.5rem; background: var(--beige); border-radius: 8px; }
.cart-foot { margin-top: 1.5rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.cart-foot p { display: flex; justify-content: space-between; }
.cart-foot .btn { width: 100%; margin-top: 0.8rem; }
.text-btn { background: none; border: 0; color: var(--muted); font-size: 0.75rem; }
.qty-sm button, .qty-sm span { height: 2.2rem; }

.sheet { display: flex; align-items: flex-end; justify-content: center; }
.sheet-panel {
  position: relative;
  z-index: 1;
  width: min(28rem, 100%);
  max-height: 94vh;
  overflow: auto;
  background: var(--white);
  border-radius: 18px 18px 0 0;
  padding: 1.3rem 1.2rem 1.5rem;
}
.sheet-head { display: flex; justify-content: space-between; gap: 1rem; }
.summary { background: var(--cream); border: 1px solid var(--border); border-radius: 12px; padding: 0.9rem; margin: 1rem 0; }
.summary p { margin: 0.1rem 0; color: var(--muted); }
.summary-total { color: var(--maroon) !important; font-size: 1.15rem; }
label { display: grid; gap: 0.35rem; margin: 0.65rem 0; font-size: 0.78rem; color: var(--maroon); }
.name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 0.7rem; }
.optional { color: var(--muted); }
input, textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--cream);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  transition: border-color 0.2s ease;
}
input:focus, textarea:focus { border-color: var(--copper); outline: none; }
.pay { border: 0; padding: 0; margin: 0.7rem 0; display: grid; gap: 0.5rem; }
.pay-card {
  display: flex; gap: 0.7rem; padding: 0.8rem;
  border: 1px solid var(--border); border-radius: 12px; background: var(--cream);
}
.pay-card.is-active { border-color: var(--maroon); background: #f8efe8; }
.pay-card small { display: block; color: var(--muted); }
.form-error { color: var(--maroon); }
.notice { background: var(--cream); border-radius: 12px; padding: 0.8rem; }
.success h3 { margin-top: 0.4rem; }

.search-overlay { display: grid; place-items: center; }
.search-box {
  position: relative;
  z-index: 1;
  width: min(32rem, calc(100% - 2rem));
  background: var(--white);
  padding: 1.2rem;
  border-radius: var(--radius);
}
.search-result { display: block; margin-top: 0.8rem; padding: 0.7rem 0; border-top: 1px solid var(--border); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 5rem;
  transform: translateX(-50%);
  z-index: 90;
  background: var(--maroon-deep);
  color: var(--cream);
  padding: 0.7rem 1rem;
  border-radius: 99px;
  font-size: 0.85rem;
}

.reveal { opacity: 0; transform: translateY(14px); animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both; animation-play-state: paused; }
.reveal[data-delay="1"] { animation-delay: 0.08s; }
.reveal[data-delay="2"] { animation-delay: 0.18s; }
.reveal[data-delay="3"] { animation-delay: 0.3s; }
.reveal[data-delay="4"] { animation-delay: 0.42s; }
.reveal[data-delay="5"] { animation-delay: 0.54s; }
body.is-ready .reveal { animation-play-state: running; }
.reveal.is-revealed,
body:not(.is-ready) .reveal.is-revealed { opacity: 1; transform: none; animation: none; }
[data-animate] { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate].in { opacity: 1; transform: none; }
[data-animate="fade-right"] { transform: translateX(-18px); }
[data-animate="image-reveal"] { transform: scale(0.98); }

@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 74, 60, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(47, 74, 60, 0); }
}
@keyframes slideIn { from { transform: translateX(24px); opacity: 0.4; } to { transform: none; opacity: 1; } }

@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .section, .ritual-band, .final-cta { padding: 6.5rem 0; }
  .shop { padding: 3.5rem 0 4.75rem; }
  .nav-bar {
    display: flex;
    grid-template-columns: none;
  }
  .nav-bar .logo { grid-column: auto; justify-self: auto; margin-right: auto; position: static; left: auto; transform: none; }
  .desktop-nav { display: flex; justify-content: center; gap: 1.6rem; position: absolute; left: 50%; transform: translateX(-50%); }
  .nav-actions { margin-left: auto; display: flex; }
  .nav-toggle { display: none; }
  .hero-grid { grid-template-columns: 1fr 1.05fr; min-height: 78vh; }
  .hero-media { width: 100%; min-height: 520px; }
  .hero-product { width: min(100%, 460px); max-height: min(78vh, 720px); height: auto; }
  .buy-card {
    grid-template-columns: 1.12fr 0.88fr;
    align-items: stretch;
  }
  .buy-gallery {
    position: relative;
    min-height: 100%;
  }
  .gallery-main {
    position: absolute;
    inset: 0;
  }
  .gallery-main img {
    width: 100%;
    height: 100%;
    max-height: none;
    padding: 0;
    object-fit: cover;
    object-position: 50% 42%;
  }
  .thumbs {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 1;
    padding: 0;
  }
  .thumbs:has(.thumb:only-child) { display: none; }
  .thumb {
    width: 4.8rem;
    box-shadow: 0 8px 20px rgba(42, 11, 18, 0.16);
  }
  .buy-mark { display: none; }
  .buy-info {
    display: flex;
    flex-direction: column;
    padding: 2rem 2.15rem 1.7rem;
  }
  .buy-info .lede { margin-top: 0.7rem; }
  .buy-info .check-list { margin-top: 0.85rem; }
  .buy-info .option-block { margin-top: 1.05rem; }
  .buy-row {
    margin-top: auto;
    padding-top: 1.15rem;
  }
  .qty-wrap { display: contents; }
  .love-grid, .how-grid { grid-template-columns: 1fr 1fr; }
  .inside-grid { grid-template-columns: 1fr 1fr 1fr; }
  .ritual-grid, .final-grid, .about-grid, .faq-layout { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .sticky-bar { display: none !important; }
  .site-chrome.is-hidden { transform: none; }
  .wa-float { bottom: 1.4rem; }
  .sheet { align-items: center; }
  .sheet-panel { border-radius: 18px; }
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 0.95fr 1.05fr; }
  .love-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  body:not(.is-ready) { overflow: auto; }
  .site-intro { display: none !important; }
  .reveal, [data-animate] { opacity: 1; transform: none; }
  .site-chrome .announce,
  .site-chrome .site-header { opacity: 1; transform: none; }
}
