:root {
  /* Brand */
  --ink: #3a1a0a;
  --ink-soft: #5a3322;
  --muted: #7a4a38;
  --leaf: #b54a20;
  --leaf-light: #d06a40;
  --leaf-dark: #3a1a0a;
  --mint: #fdf0ea;
  --cream: #f7e0d5;
  --paper: #ffffff;
  --gold: #b8831f;
  --gold-light: #e2a83a;
  --rose: #f2c8b8;
  --noir: #2a1008;
  --line: rgba(140, 60, 25, 0.16);
  --shadow-sm: 0 4px 16px rgba(150, 70, 30, 0.1);
  --shadow: 0 18px 52px rgba(150, 70, 30, 0.13);
  --shadow-lg: 0 32px 80px rgba(150, 70, 30, 0.18);

  /* Spacing */
  --px: clamp(18px, 5vw, 80px);
  --section-py: clamp(44px, 5.5vw, 80px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  color: var(--ink-soft);
  background: var(--cream);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body[data-page="home"] {
  padding-bottom: 80px;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.announcement {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 12px var(--px);
  color: #fff;
  background: var(--noir);
  font-family: "Inter", sans-serif;
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.announcement span {
  color: var(--gold-light);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.announcement strong {
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--cream);
  user-select: none;
  cursor: default;
}

.marquee-dark {
  background: var(--noir);
  border-color: rgba(255, 255, 255, 0.06);
}

.marquee-accent {
  background: var(--leaf);
  border-color: transparent;
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 16px 0;
  gap: 0;
  animation: marqueeScroll 32s linear infinite;
}

.marquee-track-slow {
  animation-duration: 44s;
}

.marquee-track-reverse {
  animation-direction: reverse;
}

.marquee span {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 32px;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee span::after {
  content: "✦";
  font-size: 0.6em;
  opacity: 0.5;
}

.marquee-dark span {
  color: rgba(255, 255, 255, 0.88);
}

.marquee-accent span {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  padding: 18px var(--px);
  border-bottom: 1px solid var(--line);
  background: rgba(250, 246, 241, 0.95);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 1px 0 var(--line);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.site-header.scrolled {
  background: rgba(250, 246, 241, 0.97);
  backdrop-filter: blur(36px) saturate(200%);
  -webkit-backdrop-filter: blur(36px) saturate(200%);
  box-shadow: 0 6px 32px rgba(12, 11, 10, 0.1), 0 1px 0 rgba(255,255,255,0.6);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 20px);
  letter-spacing: -0.01em;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--mint);
  border: 2px solid var(--rose);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: max-content;
  justify-self: center;
  color: var(--ink);
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 clamp(10px, 1.4vw, 18px);
  border-radius: 8px;
  color: var(--ink-soft);
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

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

/* "Bundle Deals" highlighted pill — like halalveda sale nav */
.nav-links a[data-nav="bundles"] {
  color: #fff;
  background: var(--leaf);
  font-weight: 700;
  padding: 0 clamp(10px, 1.4vw, 16px);
  box-shadow: 0 2px 10px rgba(196,91,48,0.3);
}

.nav-links a[data-nav="bundles"]:hover {
  background: #3a9210;
  color: #fff;
}

.nav-links a[data-nav="bundles"].active {
  background: #3a9210;
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.header-icon:hover {
  border-color: rgba(217, 143, 126, 0.42);
  background: #fff;
  transform: translateY(-1px);
}

.header-icon::after {
  content: attr(data-tip);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 30;
  padding: 6px 8px;
  border-radius: 6px;
  background: #111111;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%) translateY(-4px);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.header-icon:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.header-icon i {
  color: var(--leaf-dark);
  font-size: 18px;
  line-height: 1;
}

.primary-button,
.ghost-button,
.cart-button,
.close-button,
.row-actions button {
  cursor: pointer;
  border: 0;
}

.primary-button,
.ghost-button,
.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 16px);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 28px rgba(12, 11, 10, 0.22);
}

.primary-button:hover {
  background: var(--leaf);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(193, 120, 96, 0.32);
}

.primary-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(12, 11, 10, 0.18);
}

.ghost-button,
.cart-button {
  border: 1.5px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}

.ghost-button:hover {
  border-color: var(--leaf);
  background: var(--mint);
  transform: translateY(-2px);
}

.compact {
  min-height: 42px;
  padding: 0 14px;
}

.cart-button b {
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 99px;
  background: var(--leaf);
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.header-icon.cart-button {
  display: grid;
  width: 42px;
  min-height: 42px;
  padding: 0;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  min-height: calc(100dvh - 114px);
  padding: clamp(40px, 6vw, 80px) var(--px) 40px;
  overflow: hidden;
  background: var(--cream);
}

.hero-copy {
  max-width: 800px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 14px;
  border: 1px solid rgba(193, 120, 96, 0.28);
  border-radius: 999px;
  background: rgba(193, 120, 96, 0.08);
  color: var(--leaf);
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.01em;
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(48px, 7.6vw, 96px);
  line-height: 0.95;
  font-weight: 800;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.0;
  font-weight: 700;
}

h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: none;
}

.section-title em {
  font-style: italic;
  color: var(--leaf);
}

.section-title-light {
  color: #fff;
}

.section-heading-center {
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}

.section-lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.68;
  font-weight: 500;
}

.section-heading-center .section-lead {
  margin-inline: auto;
}

.section-lead-light {
  color: rgba(255, 255, 255, 0.72);
}

.hero-text,
.page-hero p,
.benefit p,
.product-card p,
.routine p,
.review-card p,
.contact-panel span,
.form-note {
  color: var(--ink);
  line-height: 1.72;
}

.hero-text {
  max-width: 580px;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
  line-height: 1.72;
  color: var(--muted);
}

.hero-headline {
  position: relative;
  margin-bottom: 24px;
}

.hero-rotator {
  display: grid;
  margin-top: 10px;
  min-height: 1.5em;
}

.hero-rotator span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(10px);
  color: var(--leaf);
  font-family: "Inter", sans-serif;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-rotator span.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-cta {
  min-height: 56px;
  padding: 0 32px;
  font-size: clamp(15px, 1.8vw, 17px);
}

.hero-actions,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trust-strip {
  margin-top: 32px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: clamp(13px, 1.5vw, 15px);
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  cursor: default;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.trust-strip span:hover {
  transform: translateY(-3px);
  border-color: rgba(193, 120, 96, 0.35);
  box-shadow: var(--shadow-sm);
}

.trust-strip i {
  margin-right: 7px;
  color: var(--leaf);
  font-size: 13px;
}

/* Sticky buy bar */
.sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--px);
  background: var(--noir);
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -8px 40px rgba(12, 11, 10, 0.24);
}

.sticky-buy-bar.visible {
  transform: translateY(0);
}

.sticky-buy-bar-copy strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(16px, 2vw, 20px);
  color: #fff;
}

.sticky-buy-bar-copy span {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.sticky-buy-bar .primary-button {
  background: var(--leaf);
  color: #fff;
  min-height: 46px;
  padding: 0 24px;
  white-space: nowrap;
}

.sticky-buy-bar .primary-button:hover {
  background: var(--leaf-light);
}

/* Stats counter strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--noir);
  color: #fff;
}

.stats-strip-item {
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px);
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.stats-strip-item:last-child {
  border-right: 0;
}

.stats-strip-item strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.stats-strip-item span {
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 580px;
  place-items: center;
}

.product-halo {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 40% 50%, rgba(217, 157, 140, 0.38) 0%, rgba(244, 221, 210, 0.18) 60%, transparent 80%);
  filter: blur(28px);
  animation: haloPulse 5s ease-in-out infinite;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  max-height: min(80vh, 700px);
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(100, 55, 40, 0.2), 0 12px 32px rgba(100, 55, 40, 0.12);
  animation: productFloat 6s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 160px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 48px rgba(100, 55, 40, 0.18), 0 2px 8px rgba(100, 55, 40, 0.08);
  animation: cardFloat 4.5s ease-in-out infinite;
}

.floating-card-one {
  top: 14%;
  right: 2%;
  animation-delay: 0s;
}

.floating-card-two {
  bottom: 14%;
  left: 2%;
  animation-delay: 1.5s;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--ink);
}

.floating-card span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero,
.section-heading,
.benefits,
.video-showcase,
.product-grid,
.routine,
.results,
.reviews,
.order-process,
.shop-toolbar,
.checkout-layout,
.contact-layout,
.auth-shell,
.admin-grid,
.admin-panels {
  padding-inline: var(--px);
}

.page-hero {
  max-width: 1020px;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: 32px;
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(40px, 6vw, 76px);
}

.page-hero .section-title {
  font-size: clamp(40px, 6vw, 76px);
}

body[data-page="checkout"] .page-hero h1,
body[data-page="checkout"] .page-hero .section-title {
  max-width: 620px;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.08;
}

body[data-page="thank-you"] .page-hero .section-title,
body[data-page="account"] .section-title {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
}

.benefits,
.product-grid,
.review-grid,
.checkout-layout,
.contact-layout,
.admin-grid,
.admin-panels {
  display: grid;
  gap: 18px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
  background: var(--cream);
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(40px, 6vw, 72px);
}

.benefits .section-heading,
.benefits .benefits-heading {
  grid-column: 1 / -1;
  padding: 0 var(--px) clamp(16px, 2vw, 24px);
}

.video-showcase {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  background: var(--noir);
}

.video-showcase .section-heading h2,
.video-showcase .section-heading p {
  color: #fff;
}

.video-showcase .section-heading p.section-lead {
  color: rgba(255,255,255,0.6);
}

.video-showcase .section-heading {
  padding: 0 0 22px;
}

.video-reel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  background: #1a1714;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.36);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.44);
}

.video-card video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.78) 100%);
  pointer-events: none;
}

.video-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
}

.video-card strong {
  display: block;
  color: #fff;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.08;
}

.video-card span {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 800;
}

.benefit,
.product-card,
.review-card,
.checkout-card,
.contact-form,
.contact-panel,
.auth-card,
.settings-form,
.admin-panel,
.shop-toolbar {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.benefit,
.review-card,
.contact-panel,
.admin-panel,
.shop-toolbar {
  padding: 32px;
}

.benefit,
.product-card,
.review-card {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.benefit:hover,
.product-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.benefit {
  margin: clamp(10px, 1.5vw, 16px) var(--px);
  border-radius: 20px;
  background: #fff;
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid var(--line);
  border-top: 3px solid var(--leaf);
  box-shadow: 0 4px 20px rgba(60,40,30,0.06);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.benefit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(69,168,20,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.benefit:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(60,40,30,0.12);
}

.benefit h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--ink);
}

.benefit p {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  font-weight: 400;
  color: var(--muted);
}

.benefit img {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  padding: 10px;
  background: var(--mint);
  border-radius: 14px;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.3s ease;
}

.benefit:hover img {
  transform: scale(1.15) rotate(-6deg);
  background: rgba(69,168,20,0.15);
}

.section-heading {
  max-width: 860px;
  padding-top: 0;           /* sections own their own top padding */
  padding-bottom: clamp(16px, 2.5vw, 28px);
}

/* section-heading padding-top is 0 globally — no overrides needed */

.product-grid {
  grid-template-columns: 1fr;
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(54px, 7vw, 86px);
}

.product-grid-home {
  padding-bottom: 0;
}

.product-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
}

.product-card > div {
  position: relative;
}

.product-card figure {
  display: grid;
  min-height: 270px;
  margin: 0;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(160deg, var(--mint), #fff7ec);
}

.product-card img {
  max-height: 250px;
  object-fit: contain;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 12px 0 18px;
}

.price strong {
  color: var(--leaf-dark);
  font-size: clamp(34px, 4vw, 44px);
}

.price del {
  color: #98a29a;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tag-list span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--leaf-dark);
  font-size: 12px;
  font-weight: 900;
}

.deal-ribbon {
  display: inline-flex;
  width: max-content;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e51919;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(229, 25, 25, 0.18);
}

.bundle-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid rgba(217, 143, 126, 0.22);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(67, 55, 49, 0.08);
}

.bundle-product {
  display: grid;
  grid-template-rows: minmax(240px, 1fr) auto;
  gap: 18px;
  align-items: stretch;
  height: 100%;
  margin: 0;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(217, 143, 126, 0.2);
  border-radius: 12px;
  background: linear-gradient(135deg, #fff8f4 0%, #fff 100%);
}

.bundle-product figure {
  display: grid;
  min-height: 260px;
  height: 100%;
  margin: 0;
  place-items: center;
  border-radius: 10px;
  background: #fff0ea;
}

.bundle-product img {
  max-height: 240px;
  object-fit: contain;
}

.bundle-product > div > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.bundle-product h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 34px);
}

.bundle-product p {
  max-width: 600px;
  color: var(--ink);
  line-height: 1.7;
}

.bundle-select-panel {
  display: grid;
  gap: 0;
  align-content: start;
  height: 100%;
}

.bundle-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin-bottom: 6px;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.bundle-title span {
  height: 2px;
  background: #b8dfaa;
}

.bundle-options {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.bundle-option {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 68px;
  padding: 12px 16px;
  border: 2px solid #c6e6bd;
  border-radius: 12px;
  background: #f1f1f1;
  color: var(--ink);
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.bundle-option.selected {
  border-color: #45a814;
  background: #fff;
  box-shadow: 0 12px 28px rgba(69, 168, 20, 0.1);
}

.bundle-option:hover {
  border-color: #45a814;
}

.option-radio {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 3px solid #bfe5b3;
  border-radius: 50%;
  background: #fff;
}

.bundle-option.selected .option-radio {
  border-color: #45a814;
}

.bundle-option.selected .option-radio::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #45a814;
}

.bundle-copy strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

.bundle-copy small {
  display: block;
  color: var(--ink);
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 600;
}

.bundle-copy em {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #dedede;
  color: #222;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}

.bundle-price {
  display: grid;
  justify-items: end;
  gap: 5px;
  white-space: nowrap;
}

.bundle-price strong {
  color: #0f1013;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
}

.bundle-price del {
  color: #64666a;
  font-size: clamp(13px, 1.5vw, 16px);
}

.bundle-ribbon {
  position: absolute;
  top: -14px;
  right: 26px;
  z-index: 1;
  padding: 8px 18px;
  border-radius: 0 0 6px 6px;
  background: #ed0909;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.bundle-ribbon::before,
.bundle-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  border-style: solid;
}

.bundle-ribbon::before {
  left: -14px;
  border-width: 14px 14px 0 0;
  border-color: transparent #9d0303 transparent transparent;
}

.bundle-ribbon::after {
  right: -14px;
  border-width: 14px 0 0 14px;
  border-color: transparent transparent transparent #9d0303;
}

.bundle-add-button {
  margin-top: 10px;
  margin-bottom: 4px;
  font-size: clamp(15px, 1.8vw, 18px);
  min-height: 52px;
}

.bundle-note {
  margin: 6px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}

.ingredients-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  padding: var(--section-py) var(--px);
  background: var(--paper);
}

.ingredients-copy h2 {
  max-width: 520px;
  font-size: clamp(32px, 4.2vw, 52px);
}

.ingredients-copy p {
  max-width: 480px;
  color: var(--muted);
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.78;
  margin-bottom: 22px;
}

.ingredients-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ingredients-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mint);
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(16px, 2vw, 19px);
}

.ingredients-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  flex-shrink: 0;
}

.ingredients-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

@media (max-width: 1080px) {
  .ingredients-showcase {
    grid-template-columns: 1fr;
  }

  .ingredients-visual {
    max-height: 420px;
  }
}

.routine,
.order-process {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin: var(--section-py) var(--px);
  padding: clamp(40px, 6vw, 72px);
  border-radius: 24px;
  background: var(--mint);
  color: var(--ink);
  border: 1px solid var(--line);
}

.routine {
  padding-inline: clamp(28px, 5vw, 58px);
}

.routine p,
.order-process p {
  color: var(--muted);
}

.routine ol {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.routine-panel {
  display: grid;
  gap: 14px;
}

.routine-panel div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.routine-panel span {
  display: block;
  color: var(--leaf);
  font-size: clamp(11px, 1.4vw, 13px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.routine-panel strong {
  display: block;
  margin-top: 4px;
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600;
  color: var(--ink);
}

.results {
  padding-top: clamp(40px, 5vw, 68px);
  padding-bottom: var(--section-py);
  background: var(--paper);
}

.reviews {
  padding-top: clamp(44px, 5.5vw, 72px);
  padding-bottom: clamp(44px, 5.5vw, 72px);
}

.results-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 72px);
}

.featured-result {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f5ede8;
  box-shadow: var(--shadow);
}

.featured-result img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-height: 680px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.featured-result div {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  max-width: min(420px, calc(100% - 44px));
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.featured-result strong {
  font-size: clamp(22px, 2.8vw, 28px);
}

.featured-result span {
  color: var(--gold);
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 900;
  text-transform: uppercase;
}

.result-thumbs {
  display: grid;
  gap: 14px;
}

.result-thumbs button {
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  opacity: 0.72;
}

.result-thumbs button.active,
.result-thumbs button:hover {
  border-color: var(--leaf);
  opacity: 1;
}

.result-thumbs img {
  width: 100%;
  height: 158px;
  object-fit: cover;
}

.reviews-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding: 0 var(--px) var(--section-py);
}

.reviews-intro {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 20px;
  background: var(--noir);
  color: #fff;
}

.reviews-intro .section-title {
  color: #fff;
  font-size: clamp(28px, 3.8vw, 48px);
}

.reviews-intro p {
  color: rgba(255,255,255,0.6);
  line-height: 1.72;
}

.review-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.review-metrics div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.review-metrics strong,
.review-metrics span {
  display: block;
}

.review-metrics strong {
  font-size: clamp(32px, 4vw, 42px);
}

.review-metrics span {
  margin-top: 4px;
  color: #dce9dc;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 800;
}

.story-stack {
  position: relative;
  max-height: 540px;
  overflow: hidden;
  padding-right: 4px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 34px, #000 calc(100% - 34px), transparent 100%);
}

.story-track {
  display: grid;
  gap: 12px;
  animation: storyScroll 24s linear infinite;
}

.story-stack:hover .story-track {
  animation-play-state: paused;
}

.story-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.story-topline,
.story-card footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.story-topline span,
.story-card footer span {
  color: var(--muted);
  font-weight: 800;
}

.story-topline strong {
  color: var(--leaf);
}

.story-card p {
  margin: 14px 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.68;
  font-weight: 400;
}

.row-actions button {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  background: #eef3ed;
  color: var(--leaf-dark);
  font-weight: 900;
}

.stars {
  color: var(--gold);
  font-weight: 900;
}

.order-process {
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 0;
  background: var(--mint);
}

.process-copy {
  max-width: 520px;
}

.process-copy .primary-button {
  margin-top: 10px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.process-steps article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.process-steps span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--leaf);
  font-weight: 900;
}

.process-steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
}

.process-steps p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* Ensure process step cards always show dark text on the light section bg */
.order-process .process-steps article {
  color: var(--ink);
}
.order-process .process-steps span {
  color: var(--leaf);
}
.order-process .process-steps strong {
  color: var(--ink);
}
.order-process .process-steps p {
  color: var(--muted);
}

.seo-article-section {
  padding: clamp(48px, 6vw, 80px) var(--px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.seo-article-inner {
  max-width: 860px;
  margin: 0 auto;
}

.seo-article-inner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 20px;
  line-height: 1.3;
}

.seo-article-inner h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 12px;
}

.seo-article-inner p {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 18px;
}

.seo-article-inner ul {
  margin: 0 0 18px;
  padding-left: 22px;
  display: grid;
  gap: 8px;
}

.seo-article-inner li {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: var(--muted);
}

.seo-article-inner li strong {
  color: var(--ink);
}

.seo-faq {
  margin: 0 0 32px;
}

.seo-faq dt {
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(15px, 1.6vw, 17px);
  margin: 20px 0 6px;
}

.seo-faq dd {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--muted);
  line-height: 1.75;
  padding-left: 16px;
  border-left: 3px solid var(--rose);
}

.seo-article-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

@media (max-width: 600px) {
  .seo-article-cta { flex-direction: column; }
  .seo-article-cta .primary-button,
  .seo-article-cta .secondary-button { width: 100%; text-align: center; justify-content: center; }
}

.seo-copy {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
  padding: 40px var(--px) var(--section-py);
}

.seo-copy h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.4vw, 44px);
}

.seo-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.seo-tags {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-tags span {
  padding: 9px 16px;
  border: 1px solid rgba(193, 120, 96, 0.22);
  border-radius: 8px;
  background: var(--mint);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) 0.7fr 0.9fr;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(48px, 6vw, 80px) var(--px) 0;
  color: var(--ink);
  border-top: 2px solid var(--ink);
  background: var(--cream);
}

.footer-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 48px;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
  border-radius: 20px;
  background: linear-gradient(135deg, #2a1008 0%, #3d200e 60%, #522a12 100%);
  color: #fff;
  border: 1px solid rgba(196,91,48,0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,91,48,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.footer-cta span {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-bottom span {
  color: var(--muted);
}

.footer-cta strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
}

.footer-cta a,
.site-footer .footer-cta a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin: 0;
  padding: 0 28px;
  border-radius: 10px;
  background: var(--leaf);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
  box-shadow: 0 4px 18px rgba(69,168,20,0.4);
}

.site-footer strong {
  display: block;
  color: var(--ink);
  margin-bottom: 10px;
}

.site-footer p {
  max-width: 520px;
  margin-bottom: 12px;
  color: var(--ink);
  line-height: 1.65;
}

.site-footer a {
  display: flex;
  width: max-content;
  margin: 0 0 10px;
  color: var(--ink);
  font-weight: 500;
}

.site-footer a:hover {
  color: var(--leaf);
}

.footer-cta a:hover,
.site-footer .footer-cta a:hover {
  background: #3a9210;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(69,168,20,0.55);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.08);
}

.footer-links {
  display: grid;
  align-content: start;
}

.social-link {
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-weight: 500;
}

.social-link i {
  color: var(--leaf);
  font-size: 21px;
}

.footer-links,
.footer-contact {
  padding-top: 8px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-badges span {
  padding: 7px 10px;
  border: 1px solid rgba(217, 143, 126, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 48px;
  padding: 20px 0 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) 24px;
  padding: 18px 22px;
}

.shop-toolbar span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.checkout-layout,
.contact-layout {
  grid-template-columns: 0.82fr 1.18fr;
  padding-bottom: 76px;
}

.checkout-layout.checkout-complete {
  padding-bottom: 22px;
}

.checkout-card,
.contact-form,
.auth-card,
.settings-form {
  padding: clamp(24px, 4vw, 38px);
}

.thank-you-card {
  display: grid;
  gap: 18px;
  margin: 0 clamp(18px, 5vw, 72px) 76px;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid rgba(217, 143, 126, 0.24);
  border-radius: 8px;
  background: #fff7f3;
}

.thank-you-card[hidden] {
  display: none;
}

.thank-you-card h2 {
  margin-bottom: 8px;
}

.thank-you-card p {
  color: var(--muted);
  line-height: 1.7;
}

.thank-you-details {
  display: grid;
  gap: 18px;
}

.thank-you-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.thank-you-summary div {
  padding: 16px;
  border-radius: 8px;
  background: #fff;
}

.thank-you-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.thank-you-summary strong {
  display: block;
  margin-top: 4px;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-item,
.order-row {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.cart-item {
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
}

.cart-item img {
  height: 70px;
  object-fit: contain;
}

.cart-item span,
.cart-item small,
.order-row span {
  color: var(--muted);
}

.cart-item button {
  border: 0;
  background: transparent;
  color: #a33d2d;
  cursor: pointer;
  font-weight: 900;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(14, 22, 16, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(14, 14, 14, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: min(340px, 88vw);
  height: 100vh;
  background: #fff;
  box-shadow: 22px 0 70px rgba(0, 0, 0, 0.2);
  transform: translateX(-104%);
  transition: transform 0.28s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-header strong {
  font-size: 24px;
}

.mobile-menu .cart-close {
  position: static;
}

.mobile-menu-links {
  display: grid;
  padding: 14px;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  transition: color 0.15s ease, background 0.15s ease;
}

.mobile-menu-links a:hover {
  color: var(--leaf);
  background: var(--mint);
}

.mobile-menu-links .mobile-menu-category {
  color: var(--ink);
}

.mobile-menu-links .mobile-menu-category i {
  color: var(--leaf);
}

.mobile-menu-links .mobile-menu-deal {
  color: #fff;
  background: var(--leaf);
  border-radius: 10px;
  margin: 8px 0;
  border-bottom: none;
}

.mobile-menu-links .mobile-menu-deal:hover {
  background: #3a9210;
  color: #fff;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(430px, 100vw);
  height: 100vh;
  background: #fff;
  box-shadow: -22px 0 70px rgba(0, 0, 0, 0.22);
  transform: translateX(104%);
  transition: transform 0.28s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header,
.cart-drawer-footer {
  padding: 20px;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-header span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-drawer-header strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
}

.cart-close {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: #f1eee6;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.cart-drawer-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  overflow: auto;
}

.drawer-line-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.drawer-line-item img {
  width: 92px;
  height: 112px;
  object-fit: contain;
  border-radius: 8px;
  background: linear-gradient(160deg, var(--mint), #fff7ec);
}

.drawer-line-content {
  display: grid;
  gap: 8px;
}

.drawer-line-content h3 {
  margin: 0 0 4px;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.35;
}

.drawer-line-content span {
  color: var(--leaf-dark);
  font-weight: 900;
}

.drawer-line-content small {
  color: var(--muted);
  word-break: break-word;
}

.line-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.qty-stepper {
  display: inline-grid;
  grid-template-columns: 34px 38px 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.qty-stepper button,
.remove-line {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.qty-stepper button {
  min-height: 34px;
  color: var(--leaf-dark);
}

.qty-stepper strong {
  display: grid;
  min-height: 34px;
  place-items: center;
  border-inline: 1px solid var(--line);
}

.remove-line {
  color: #9b3c2f;
  font-size: 13px;
}

.cart-drawer-footer {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  background: #fffaf2;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 18px;
}

.cart-shipping {
  font-size: 15px;
}

.cart-grand-total {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 20px;
}

.cart-subtotal span {
  color: var(--muted);
  font-weight: 900;
}

.cart-drawer-footer p,
.empty-cart p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.empty-cart {
  display: grid;
  gap: 12px;
  padding: 28px 14px;
  text-align: center;
}

.empty-cart strong {
  font-size: 22px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin: 24px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 20px;
}

.cart-total-stack {
  display: grid;
  gap: 12px;
  margin: 24px 0 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-total-stack div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.cart-total-stack .grand {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.form-grid,
.settings-form,
.auth-card {
  display: grid;
  gap: 14px;
}

.checkout-note {
  margin: -4px 0 18px;
  padding: 13px 14px;
  border: 1px solid rgba(217, 143, 126, 0.26);
  border-radius: 8px;
  background: #fff7f3;
  color: var(--ink);
  line-height: 1.6;
}

.payment-note {
  margin-top: 24px;
  margin-bottom: 8px;
  padding: 13px 14px;
  border: 1px solid rgba(217, 143, 126, 0.22);
  border-radius: 8px;
  background: #fffaf7;
  color: var(--ink);
  line-height: 1.6;
}

.payment-note strong {
  color: var(--ink);
}

.payment-note.bank-open {
  padding: 0;
  border: 0;
  background: transparent;
}

.bank-transfer-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(217, 143, 126, 0.28);
  border-radius: 10px;
  background: linear-gradient(135deg, #fff8f4 0%, #ffffff 100%);
  box-shadow: 0 14px 34px rgba(67, 55, 49, 0.08);
}

.bank-transfer-card span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.bank-transfer-card p {
  margin: 8px 0 0;
  color: var(--ink);
}

.bank-transfer-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.bank-transfer-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 12px;
  border-radius: 8px;
  background: #fff;
}

.bank-transfer-card dt {
  color: var(--muted);
  font-weight: 600;
}

.bank-transfer-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  text-align: right;
  overflow-wrap: anywhere;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-card .primary-button[type="submit"],
.contact-form .primary-button[type="submit"],
.settings-form .primary-button[type="submit"],
.auth-card .primary-button[type="submit"] {
  margin-top: 12px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font-weight: 500;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #7d7a84;
  font-weight: 500;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(217, 143, 126, 0.16);
}

.wide {
  grid-column: 1 / -1;
}

.full-width {
  width: 100%;
}

.contact-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-panel div {
  padding: 18px;
  border-radius: 8px;
  background: var(--mint);
}

.contact-panel span,
.contact-panel strong {
  display: block;
}

.contact-panel strong {
  margin-top: 5px;
}

.auth-shell {
  display: grid;
  min-height: 64vh;
  place-items: center;
  padding-block: 56px;
}

.auth-card {
  width: min(560px, 100%);
}

.admin-grid {
  grid-template-columns: 0.8fr 1.2fr;
  padding-bottom: 22px;
}

.product-manager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 72px) 22px;
}

.product-list {
  display: grid;
  gap: 12px;
}

.admin-product-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-product-row img {
  width: 76px;
  height: 88px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff7f3;
}

.admin-product-row strong,
.admin-product-row span,
.admin-product-row small {
  display: block;
}

.admin-product-row span,
.admin-product-row small {
  margin-top: 4px;
  color: var(--muted);
}

.admin-body {
  background: #f6f6f7;
}

.admin-login-screen {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at 20% 15%, #fff0eb, transparent 32%), #f6f6f7;
}

.admin-login-screen[hidden] {
  display: none;
}

.admin-login-card {
  display: grid;
  gap: 14px;
  width: min(440px, 100%);
  padding: 32px;
  border: 1px solid #dfe3e8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
}

.admin-login-card img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: contain;
}

.admin-login-card h1 {
  margin: 0;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.18;
}

.admin-app {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  min-height: 100vh;
  color: #202223;
  font-family: "Raleway", Arial, sans-serif;
}

.admin-app[hidden] {
  display: none;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 14px 12px;
  border-right: 1px solid #dfe3e8;
  background: #fff;
}

.admin-store {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 6px 8px 14px;
  color: #202223;
  font-weight: 700;
}

.admin-store img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}

.admin-nav {
  display: grid;
  gap: 3px;
  padding-top: 8px;
  border-top: 1px solid #edf0f2;
}

.admin-nav a,
.admin-view-store {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 600;
}

.admin-nav a.active,
.admin-nav a:hover,
.admin-view-store:hover {
  background: #f1f2f4;
  color: #202223;
}

.admin-nav i,
.admin-view-store i {
  width: 18px;
  color: #6b7280;
}

.admin-view-store {
  position: absolute;
  right: 12px;
  bottom: 14px;
  left: 12px;
}

.admin-main {
  min-width: 0;
  padding-bottom: 42px;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 12px 28px;
  border-bottom: 1px solid #dfe3e8;
  background: rgba(246, 246, 247, 0.92);
  backdrop-filter: blur(14px);
}

.admin-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(560px, 100%);
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #c9cccf;
  border-radius: 10px;
  background: #fff;
}

.admin-search input {
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.admin-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-top-actions a,
.admin-top-actions button,
.admin-card-head a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #c9cccf;
  border-radius: 8px;
  background: #fff;
  color: #202223;
  font-weight: 700;
}

.admin-top-actions button {
  cursor: pointer;
}

.admin-page-title,
.admin-metric-grid,
.admin-workspace {
  margin-inline: auto;
  width: min(1180px, calc(100% - 48px));
}

.admin-page-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 16px;
}

.admin-page-title h1 {
  margin: 0;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.2;
}

.admin-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.admin-metric-grid div,
.admin-card {
  border: 1px solid #dfe3e8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.04);
}

.admin-metric-grid div {
  padding: 18px;
}

.admin-metric-grid span {
  display: block;
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
}

.admin-metric-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
}

.admin-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 14px;
  margin-bottom: 14px;
  padding: 0;
}

.admin-workspace-products {
  grid-template-columns: 1fr;
}

.admin-workspace-secondary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-card {
  padding: 0;
  overflow: hidden;
}

.admin-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid #edf0f2;
}

.admin-card-head span {
  display: block;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-card-head h2 {
  margin: 3px 0 0;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 18px;
}

.admin-form,
.product-editor {
  padding: 18px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.admin-table-list,
.product-list {
  padding: 12px;
}

.admin-table-list .order-row,
.admin-product-row {
  border-color: #edf0f2;
  box-shadow: none;
}

.admin-product-row {
  grid-template-columns: 58px minmax(0, 1fr) auto;
}

.admin-product-row img {
  width: 58px;
  height: 64px;
}

.admin-body .primary-button {
  min-height: 38px;
  border-radius: 8px;
  background: #202223;
  color: #fff;
  box-shadow: none;
}

.admin-body .ghost-button,
.admin-body .row-actions button {
  min-height: 38px;
  border: 1px solid #c9cccf;
  border-radius: 8px;
  background: #fff;
  color: #202223;
}

.product-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(17, 24, 39, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.product-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.product-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(560px, 100vw);
  height: 100vh;
  overflow: auto;
  border-left: 1px solid #dfe3e8;
  background: #fff;
  box-shadow: -24px 0 70px rgba(17, 24, 39, 0.18);
  transform: translateX(104%);
  transition: transform 0.26s ease;
}

.product-drawer.open {
  transform: translateX(0);
}

.product-drawer .product-editor {
  padding: 0 22px 24px;
  border: 0;
  box-shadow: none;
}

.product-drawer-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-inline: -22px;
  margin-bottom: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid #dfe3e8;
  background: #fff;
}

.product-drawer-head span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-drawer-head h2 {
  margin: 3px 0 0;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 22px;
}

.admin-body .dashboard-stats.admin-metric-grid {
  grid-template-columns: repeat(3, 1fr);
}

.admin-body .dashboard-stats.admin-metric-grid div {
  background: #fff;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.dashboard-stats div {
  padding: 20px;
  border-radius: 8px;
  background: var(--mint);
}

.dashboard-stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-stats strong {
  display: block;
  margin-top: 6px;
  font-size: 26px;
}

.admin-panels {
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  padding-bottom: 76px;
}

.order-list {
  display: grid;
  gap: 10px;
}

.order-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 8px 0;
}

.order-progress span {
  position: relative;
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.order-progress span.active {
  border-color: rgba(217, 143, 126, 0.32);
  background: #fff0eb;
  color: var(--ink);
}

.email-row details {
  margin-top: 6px;
}

.email-row summary {
  width: max-content;
  color: var(--leaf);
  cursor: pointer;
  font-weight: 700;
}

.email-row details p {
  margin: 10px 0 0;
  padding: 12px;
  border-radius: 8px;
  background: #fff7f3;
  color: var(--muted);
  white-space: pre-wrap;
}

.mail-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.mail-meta span {
  color: var(--leaf);
  font-size: 13px;
  font-weight: 700;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(10, 18, 12, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  width: min(520px, 100%);
  padding: clamp(24px, 5vw, 40px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.close-button {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #f1eee6;
  color: var(--ink);
  font-weight: 900;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: 8px;
  background: #111111;
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.97);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-copy .reveal:nth-child(1) { transition-delay: 0.05s; }
.hero-copy .reveal:nth-child(2) { transition-delay: 0.12s; }
.hero-copy .reveal:nth-child(3) { transition-delay: 0.2s; }
.hero-copy .reveal:nth-child(4) { transition-delay: 0.28s; }
.hero-copy .reveal:nth-child(5) { transition-delay: 0.36s; }

.benefits .benefit:nth-child(1) { transition-delay: 0.08s; }
.benefits .benefit:nth-child(2) { transition-delay: 0.16s; }
.benefits .benefit:nth-child(3) { transition-delay: 0.24s; }

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes storyScroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-50% - 6px));
  }
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes haloPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.88;
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .hero-visual img,
  .product-halo,
  .floating-card,
  .story-track {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

@media (max-width: 1080px) {
  .admin-app {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid #dfe3e8;
  }

  .admin-nav {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow: auto;
  }

  .admin-view-store {
    position: static;
    margin-top: 8px;
  }

  .admin-workspace,
  .admin-workspace-products,
  .admin-workspace-secondary {
    grid-template-columns: 1fr;
  }

  .admin-body .dashboard-stats.admin-metric-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero,
  .routine,
  .order-process,
  .checkout-layout,
  .contact-layout,
  .admin-grid,
  .product-manager,
  .admin-panels {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .thank-you-summary,
  .order-progress {
    grid-template-columns: 1fr;
  }

  .seo-copy,
  .seo-tags {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 430px;
  }

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

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

  .stats-strip-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .video-reel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid,
  .results-board,
  .reviews-shell {
    grid-template-columns: 1fr;
  }

  .bundle-shell {
    grid-template-columns: 1fr;
    max-width: 820px;
  }

  .bundle-product {
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: center;
  }

  .bundle-product figure {
    min-height: 160px;
    max-height: 200px;
  }

  .bundle-product img {
    max-height: 190px;
  }

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

@media (max-width: 720px) {
  .announcement {
    display: grid;
    text-align: center;
  }

  .site-header {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-actions {
    grid-column: 2;
    margin-left: auto;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-actions a {
    width: 100%;
  }

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

  .sticky-buy-bar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 16px var(--px);
  }

  .sticky-buy-bar .primary-button {
    width: 100%;
  }

  .benefits,
  .video-reel-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .video-showcase {
    padding-top: 48px;
  }

  .video-card,
  .video-card video {
    min-height: 430px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card figure {
    min-height: 250px;
  }

  .bundle-shell {
    padding: 14px 12px;
  }

  .bundle-product {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .bundle-product figure {
    min-height: 180px;
  }

  .bundle-title {
    gap: 10px;
    font-size: 15px;
  }

  .bundle-option {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 72px;
    gap: 12px;
    padding: 12px 14px 10px;
  }

  .bundle-price {
    grid-column: 2;
    justify-items: start;
    margin-top: 10px;
  }

  .bundle-copy strong,
  .bundle-price strong {
    font-size: 18px;
  }

  .bundle-copy small,
  .bundle-price del {
    font-size: 13px;
  }

  .bundle-ribbon {
    right: 14px;
    font-size: 13px;
  }

  .featured-result img {
    min-height: 320px;
    max-height: 520px;
  }

  .result-thumbs img {
    height: 108px;
  }

  .review-metrics,
  .story-topline,
  .story-card footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .shop-toolbar,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer a {
    margin: 0 0 9px;
  }

  .footer-cta,
  .footer-bottom {
    display: grid;
  }

  .footer-cta {
    margin-top: -18px;
  }

  .floating-card {
    min-width: 120px;
    padding: 10px 12px;
  }

  .floating-card strong {
    font-size: 18px;
  }

  .floating-card-one {
    top: 8%;
    right: 2%;
  }

  .floating-card-two {
    bottom: 8%;
    left: 2%;
  }
}

.shop-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) var(--px) clamp(48px, 6vw, 80px);
}

.shop-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--noir);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.shop-hero-badge i {
  color: #e1306c;
  font-size: 15px;
}

.shop-hero-title {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 800;
  line-height: 1.03;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.shop-hero-title em {
  font-style: italic;
  color: var(--leaf);
}

.shop-hero-lead {
  margin: 0 0 22px;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.68;
  color: var(--muted);
  max-width: 540px;
  font-weight: 400;
}

.shop-hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 16px;
}

.shop-hero-rating strong {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
}

.shop-hero-rating span {
  color: var(--muted);
}

.shop-stars {
  display: inline-flex;
  gap: 2px;
  color: #f5a623;
  font-size: 17px;
}

.shop-hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(193, 75, 56, 0.07);
  border: 1px solid rgba(193, 75, 56, 0.18);
  color: #b53a28;
  font-size: 13px;
  font-weight: 700;
}

.shop-hero-urgency i {
  color: #e74c3c;
}

.shop-hero-cta {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(16px, 1.8vw, 18px);
  min-height: 58px;
  padding: 0 34px;
}

.shop-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;  /* fill the grid track so switcher gets a real width */
}

.shop-hero-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(193, 120, 96, 0.28) 0%, transparent 72%);
  filter: blur(24px);
  pointer-events: none;
  animation: haloPulse 5s ease-in-out infinite;
}

.shop-hero-visual img {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  animation: productFloat 6s ease-in-out infinite;
}

.shop-hero-float {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(60, 40, 30, 0.18);
  border: 1px solid rgba(255,255,255,0.8);
  min-width: 148px;
}

.shop-hero-float strong { font-family: "Playfair Display", serif; font-size: clamp(22px, 2.6vw, 28px); font-weight: 700; color: var(--ink); line-height: 1.2; }
.shop-hero-float span { font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.shop-float-stars { color: #e8a020; font-size: 16px; letter-spacing: 2px; }
.shop-hero-float-a { top: 10%; right: 2%; animation: cardFloat 4.5s ease-in-out infinite; }
.shop-hero-float-b { bottom: 10%; left: 2%; animation: cardFloat 4.5s ease-in-out infinite 1.5s; }

.shop-results-strip {
  padding: clamp(48px, 6vw, 80px) var(--px);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shop-results-strip-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}

.shop-results-strip-head h2 {
  margin: 8px 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.shop-results-strip-head p { color: var(--muted); line-height: 1.65; }

.shop-results-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 24px);
  max-width: 1100px;
  margin: 0 auto;
}

.shop-result-thumb {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--mint);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shop-result-thumb:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.shop-result-thumb img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.shop-result-thumb figcaption { padding: 10px 12px; font-size: 13px; font-weight: 700; color: var(--ink-soft); text-align: center; border-top: 1px solid var(--line); }

.shop-results-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
}

.shop-results-note i { color: #27ae60; }
.shop-product-section { padding: clamp(32px, 4vw, 56px) var(--px) clamp(56px, 7vw, 96px); max-width: 1280px; margin: 0 auto; }

.shop-trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 22px);
  padding: clamp(32px, 4vw, 56px) var(--px);
  max-width: 1280px;
  margin: 0 auto;
}

.shop-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: clamp(20px, 3vw, 30px) clamp(14px, 2vw, 22px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.shop-trust-badge:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.shop-trust-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--mint);
  color: var(--leaf);
  font-size: 26px;
}

.shop-trust-badge strong { font-size: clamp(16px, 1.8vw, 19px); font-weight: 700; color: var(--ink); }
.shop-trust-badge span { font-size: clamp(14px, 1.6vw, 16px); color: var(--muted); line-height: 1.6; }

.shop-ingredients {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(60px, 8vw, 110px) var(--px);
  max-width: 1280px;
  margin: 0 auto;
}

.shop-ingredients-copy h2 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.shop-ingredients-copy > p { margin: 0 0 28px; color: var(--muted); line-height: 1.72; font-size: clamp(17px, 1.9vw, 20px); }

.shop-ingredients-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shop-ingredients-list li { display: flex; align-items: flex-start; gap: 14px; }

.shop-ing-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--leaf);
}

.shop-ingredients-list strong { display: block; font-size: clamp(17px, 1.8vw, 20px); font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.shop-ingredients-list span { font-size: clamp(15px, 1.6vw, 17px); color: var(--muted); line-height: 1.6; }

.shop-ingredients-imgs { display: grid; grid-template-rows: auto auto; gap: 16px; }
.shop-ing-img-top, .shop-ing-img-bottom { width: 100%; border-radius: 20px; object-fit: cover; box-shadow: var(--shadow); }
.shop-ing-img-top { aspect-ratio: 4/3; }
.shop-ing-img-bottom { aspect-ratio: 16/7; }

/* Single-image variant */
.shop-ingredients-imgs--single {
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-ing-img-single {
  width: 100%;
  max-width: 600px;
  border-radius: 0;
  box-shadow: none;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 40px rgba(100, 60, 20, 0.15));
  animation: productFloat 6s ease-in-out infinite;
}

.shop-benefits-section {
  padding: clamp(44px, 5.5vw, 72px) var(--px);
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.shop-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  max-width: 1100px;
  margin: 0 auto;
}

.shop-benefit-card {
  position: relative;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.shop-benefit-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 13px;
  font-weight: 900;
  color: var(--leaf);
  opacity: 0.6;
}

.shop-benefit-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; margin-bottom: 18px; }

.shop-benefit-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--mint);
  color: var(--leaf);
  font-size: 26px;
  margin-bottom: 18px;
}

.shop-benefit-card strong { display: block; font-family: "Playfair Display", serif; font-size: clamp(20px, 2.2vw, 26px); font-weight: 600; color: var(--ink); margin-bottom: 12px; line-height: 1.25; }
.shop-benefit-card p { font-size: clamp(15px, 1.7vw, 18px); color: var(--muted); line-height: 1.7; margin: 0; }
.shop-reviews-cta { margin-top: 28px; }

.shop-faq {
  padding: clamp(60px, 8vw, 100px) var(--px);
  max-width: 1280px;
  margin: 0 auto;
}

.shop-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 40px auto 0;
  max-width: 980px;
}

.shop-faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.shop-faq-item[open] { box-shadow: var(--shadow-sm); }

.shop-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  line-height: 1.4;
  transition: background 0.15s ease;
}

.shop-faq-item summary:hover { background: var(--mint); }
.shop-faq-item summary::-webkit-details-marker { display: none; }

.shop-faq-item summary i {
  flex-shrink: 0;
  color: var(--leaf);
  font-size: 13px;
  transition: transform 0.22s ease;
}

.shop-faq-item[open] summary i { transform: rotate(180deg); }
.shop-faq-item p { padding: 16px 24px 20px; margin: 0; font-size: clamp(15px, 1.6vw, 17px); color: var(--muted); line-height: 1.75; border-top: 1px solid var(--line); }

.shop-final-cta {
  padding: clamp(64px, 8vw, 100px) var(--px);
  background: var(--ink);
}

.shop-final-cta-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.shop-final-cta .eyebrow { color: var(--leaf-light); margin-bottom: 14px; }

.shop-final-cta h2 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.shop-final-cta p { color: rgba(255, 255, 255, 0.7); font-size: clamp(17px, 2vw, 21px); line-height: 1.7; margin-bottom: 32px; }
.shop-final-btn { font-size: 17px; padding: 17px 32px; }

.shop-final-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.shop-final-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
}

.shop-final-trust-row i { color: var(--leaf-light); }

.shop-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(12px, 2vw, 16px) clamp(16px, 3vw, 32px);
  background: var(--noir);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
}

.shop-sticky-cta.visible { transform: translateY(0); }
.shop-sticky-info { display: flex; flex-direction: column; gap: 3px; }
.shop-sticky-info strong { color: #fff; font-family: "Playfair Display", serif; font-size: clamp(15px, 1.8vw, 20px); font-weight: 700; line-height: 1.2; }
.shop-sticky-info span { color: rgba(255, 255, 255, 0.65); font-size: clamp(12px, 1.4vw, 14px); font-weight: 500; }
.shop-sticky-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 clamp(20px, 3vw, 32px);
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .shop-hero { grid-template-columns: 1fr; gap: 36px; }
  .shop-hero-title { font-size: clamp(34px, 8vw, 52px); }
  .shop-hero-visual { order: -1; max-width: 600px; margin: 0 auto; width: 100%; }
  .shop-hero-float-a { top: 4%; right: 0; }
  .shop-hero-float-b { bottom: 4%; left: 0; }
  .shop-results-row { grid-template-columns: repeat(2, 1fr); }
  .shop-trust-badges { grid-template-columns: repeat(2, 1fr); }
  .shop-ingredients { grid-template-columns: 1fr; }
  .shop-ingredients-imgs { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .shop-ing-img-top, .shop-ing-img-bottom { aspect-ratio: 1/1; }
  .shop-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .shop-hero-cta { width: 100%; justify-content: center; }
  .shop-trust-badges { grid-template-columns: 1fr 1fr; }
  .shop-benefits-grid { grid-template-columns: 1fr; }
  .shop-ingredients-imgs { grid-template-columns: 1fr; }
  .shop-sticky-cta { padding: 10px 14px; }
  .bundle-product { display: none; }
}

@media (max-width: 420px) {
  .shop-results-row { grid-template-columns: 1fr 1fr; }
  .shop-trust-badges { grid-template-columns: 1fr; }
}

body[data-page="shop"] {
  padding-bottom: 68px;
}


/* ═══════════════════════════════════════════════
   PRODUCT CARD GRID  (Zojja/Riffat-style)
═══════════════════════════════════════════════ */

.pc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--px) clamp(32px, 4vw, 56px);
}

.pc {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.45s ease,
    border-color 0.3s ease;
  position: relative;
  will-change: transform;
}

.pc:hover {
  transform: translateY(-10px);
  box-shadow:
    0 28px 72px rgba(60, 40, 30, 0.16),
    0 0 0 1px rgba(69, 168, 20, 0.18);
  border-color: rgba(69,168,20,0.35);
}

.pc-best {
  border-color: var(--leaf);
  box-shadow:
    0 0 0 2px rgba(196,91,48,0.28),
    0 8px 32px rgba(196,91,48,0.12);
}

/* Image area */
.pc-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #f5ede6, #fff7ec);
  overflow: hidden;
}

.pc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Primary image — fades out and scales up on hover */
.pc-img-primary {
  position: relative;
  z-index: 1;
}
.pc:hover .pc-img-primary {
  opacity: 0;
  transform: scale(1.05);
}

/* Hover image (herbs) — sits underneath, scales in as primary fades out */
.pc-img-hover {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transform: scale(1.06);
  object-fit: cover;
}
.pc:hover .pc-img-hover {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .pc-img-primary, .pc-img-hover { transition: none; animation: none; }
}

/* ── Mobile: no hover available — auto-cycle between product & herbs image ── */
@media (hover: none) {
  .pc-img-primary {
    animation: mobileCardPrimary 6s ease-in-out infinite;
  }
  .pc-img-hover {
    animation: mobileCardHover 6s ease-in-out infinite;
  }
}

@keyframes mobileCardPrimary {
  0%, 40%  { opacity: 1; transform: scale(1); }
  50%, 90% { opacity: 0; transform: scale(1.05); }
  100%     { opacity: 1; transform: scale(1); }
}

@keyframes mobileCardHover {
  0%, 40%  { opacity: 0; transform: scale(1.05); }
  50%, 90% { opacity: 1; transform: scale(1); }
  100%     { opacity: 0; transform: scale(1.05); }
}

/* Badges */
.pc-badge-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: #e03030;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 6px;
}

.pc-badge-free {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background: var(--leaf);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.04em;
}

.pc-badge-best {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 3;
  background: var(--gold, #c8873a);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 6px;
  letter-spacing: 0.06em;
}

/* Hover overlay quick-add */
.pc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 8, 0.22);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.pc:hover .pc-overlay {
  opacity: 1;
}

.pc-quick-add {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  color: var(--ink);
  border: none;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.15s ease, transform 0.15s ease;
  touch-action: manipulation;
}

.pc-quick-add:active {
  transform: scale(0.97);
  background: #fff;
}

/* Card body */
.pc-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(14px, 2vw, 20px);
  flex: 1;
}

/* Stars */
.pc-stars-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pc-stars {
  color: #e8a020;
  font-size: 13px;
  letter-spacing: 1px;
}

.pc-stars-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.pc-stars-label small {
  font-size: 12px;
  font-weight: 400;
}

/* Name */
.pc-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}

/* Desc */
.pc-desc {
  font-size: clamp(13px, 1.3vw, 14px);
  color: var(--muted);
  line-height: 1.58;
  margin: 0;
}

/* Price */
.pc-price-row {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}

.pc-price {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.pc-price-old {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--muted);
}

.pc-save-pct {
  font-size: 11px;
  font-weight: 800;
  color: #e03030;
  background: rgba(224, 48, 48, 0.09);
  padding: 2px 7px;
  border-radius: 5px;
}

/* Pill tags */
.pc-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pc-pill-row span {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--mint);
  padding: 3px 9px;
  border-radius: 5px;
}

.pc-pill-row .pc-pill-free {
  color: var(--leaf);
  background: rgba(69, 168, 20, 0.1);
}

/* Add to Cart button */
.pc-add-btn {
  margin-top: auto;
  min-height: 50px;
  font-size: clamp(13px, 1.5vw, 16px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  touch-action: manipulation;
  padding-left: 10px;
  padding-right: 10px;
  letter-spacing: -0.01em;
}

/* Home page grid — fewer columns */
.product-grid-home .pc-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .pc-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid-home .pc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .pc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pc-body { padding: 12px; gap: 8px; }
  .pc-name { font-size: 15px; }
  .pc-price { font-size: 18px; }
  .pc-desc { display: none; }
  .pc-pill-row { display: none; }
  .pc-add-btn { min-height: 44px; font-size: 13px; padding: 0 8px; gap: 5px; }
  .pc-add-btn .fa-bag-shopping { display: none; }
  .product-grid-home .pc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 380px) {
  .pc-grid { grid-template-columns: 1fr; }
}
/* shop toolbar sub-label */
.shop-toolbar-sub {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}

.shop-toolbar strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--ink);
}

/* product-grid padding override on shop page */
body[data-page="shop"] .product-grid {
  padding-top: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SENIOR DESIGNER ANIMATION SYSTEM v2
   Cursor glow · 3D card tilt · Magnetic buttons · Parallax
   Gradient text · Hero stagger · Shimmer badges · CTA pulse
═══════════════════════════════════════════════════════════════ */

/* ── Hero entrance stagger ── */
@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(44px) scale(0.96);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-copy > * {
  animation: heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.18s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.30s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.42s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.54s; }
.hero-copy > *:nth-child(6) { animation-delay: 0.64s; }

.hero-visual {
  animation: heroEntrance 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* ── Gradient animated text on headings ── */
@keyframes gradientShift {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

.section-title,
h1[data-setting="headline"] {
  background: linear-gradient(
    135deg,
    var(--ink) 0%,
    #8b3a15 40%,
    #b54a20 70%,
    var(--ink) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}

/* Light section-title (white text on dark bg) stays white */
.section-title-light,
.reviews-intro .section-title,
.shop-final-cta .section-title {
  background: none;
  -webkit-text-fill-color: #fff;
  animation: none;
}

/* ── CTA glow pulse ── */
@keyframes ctaGlowPulse {
  0%, 100% {
    box-shadow:
      0 4px 18px rgba(181,74,32,0.4),
      0 2px 6px rgba(0,0,0,0.12);
  }
  50% {
    box-shadow:
      0 4px 42px rgba(181,74,32,0.72),
      0 2px 6px rgba(0,0,0,0.12);
  }
}

.hero-cta,
.shop-hero-cta,
.shop-final-btn {
  animation: ctaGlowPulse 2.6s ease-in-out infinite;
}

/* ── Shimmer on SALE badge ── */
@keyframes saleShimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.pc-badge-sale {
  background: linear-gradient(90deg, #c0392b, #ff6b6b, #c0392b);
  background-size: 200% auto;
  animation: saleShimmer 2.2s linear infinite;
}

/* ── Best Value badge float ── */
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-5px); }
}

.pc-badge-best {
  animation: badgeFloat 2.4s ease-in-out infinite;
}

/* ── Animated gradient border on Bundle Deals nav pill ── */
.nav-links a[data-nav="bundles"] {
  background: linear-gradient(90deg, #b54a20, #d06a40, #b54a20, #8c3515, #b54a20);
  background-size: 250% auto;
  animation: saleShimmer 4s linear infinite;
}

.nav-links a[data-nav="bundles"]:hover,
.nav-links a[data-nav="bundles"].active {
  animation: saleShimmer 1.8s linear infinite;
}

/* ── Nav animated underline ── */
.nav-links a:not([data-nav="bundles"]) {
  position: relative;
}

.nav-links a:not([data-nav="bundles"])::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: clamp(10px, 1.4vw, 18px);
  right: clamp(10px, 1.4vw, 18px);
  height: 2px;
  background: var(--leaf);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:not([data-nav="bundles"]):hover::after,
.nav-links a:not([data-nav="bundles"]).active::after {
  transform: scaleX(1);
}

/* ── Cursor ambient glow ── */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,91,48,0.08) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, opacity 0.3s ease;
  will-change: left, top;
}

.cursor-glow.big {
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(196,91,48,0.12) 0%, transparent 68%);
}

/* ── 3D card perspective ── */
.pc-grid {
  perspective: 1400px;
}

.pc {
  transform-style: preserve-3d;
  transform-origin: center center;
}

/* ── Scroll progress line at top ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--leaf), #f0a070);
  z-index: 9999;
  transform-origin: left;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── Section heading word-reveal wrappers ── */
.word-reveal-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.word-reveal-inner {
  display: inline-block;
  transform: translateY(60%);
  opacity: 0;
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Prevent layout gap before word reveal fires */
.section-title:not([data-word-wrapped]) {
  opacity: 1;
  visibility: visible;
}

.word-reveal-wrap.revealed .word-reveal-inner {
  transform: translateY(0);
  opacity: 1;
}

/* ── Reduced motion — disable everything ── */
@media (prefers-reduced-motion: reduce) {
  .hero-copy > * { animation: none; }
  .hero-visual { animation: none; }
  .section-title, h1[data-setting="headline"] {
    animation: none;
    background: none;
    -webkit-text-fill-color: var(--ink);
  }
  .hero-cta, .shop-hero-cta, .shop-final-btn { animation: none; }
  .pc-badge-sale { animation: none; background: #c0392b; }
  .pc-badge-best { animation: none; }
  .nav-links a[data-nav="bundles"] { animation: none; }
  .nav-links a::after { transition: none; }
  .cursor-glow { display: none; }
  .scroll-progress { display: none; }

}

/* ── Hero & product bottle image — blend into peach background ── */
.hero-visual img,
.shop-hero-visual img {
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 48px rgba(100, 40, 20, 0.22));
}

/* Product card images — same blend so white bg disappears on cards */
.pc-img-wrap img {
  mix-blend-mode: multiply;
}

/* Ingredients section label image */
.shop-ingredients-imgs img,
.ingredients-visual img {
  border-radius: 16px;
  mix-blend-mode: multiply;
}

/* ═══════════════════════════════════════════════
   HERO IMAGE SWITCHER — crossfade carousel
═══════════════════════════════════════════════ */

/* Hero image switcher — layout only; opacity/transform driven by JS inline styles */
.hero-img-switcher {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 20px;
}

/* Suppress parent animation on switcher slides before JS initialises */
.hero-img-switcher .hero-img {
  animation: none;
  max-width: none;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

/* Dot indicators */
.hero-img-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-img-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-img-dot.active {
  background: var(--leaf);
  transform: scale(1.35);
}

@media (prefers-reduced-motion: reduce) {
  .hero-img-switcher .hero-img {
    transition: none;
  }
}

/* ═══════════════════════════════════════════════
   HERO VIDEO SLIDE
═══════════════════════════════════════════════ */

.hero-img-switcher .hero-img-video {
  object-fit: contain;
  background: transparent;
  border-radius: 12px;
}

/* ═══════════════════════════════════════════════
   SHOP VIDEO SECTION — "See It In Action"
═══════════════════════════════════════════════ */

.shop-video-section {
  background: var(--noir);
  padding: clamp(48px, 7vw, 96px) var(--px);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.shop-video-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Copy side */
.shop-video-copy .eyebrow {
  color: var(--rose);
  opacity: 0.9;
}

.shop-video-copy .section-title {
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, var(--rose) 60%, #ffcba4 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

.shop-video-copy .section-title em {
  font-style: italic;
}

.shop-video-copy .section-lead {
  color: rgba(255,255,255,0.65);
  font-size: clamp(16px, 1.8vw, 18px);
  margin-top: 16px;
}

.shop-video-cta {
  margin-top: 28px;
}

/* Video frame */
.shop-video-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  max-width: 360px;
  margin: 0 auto;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.08);
}

.shop-video-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(181,74,32,0.3) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
  animation: haloPulse 3.5s ease-in-out infinite;
}

.shop-product-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 24px;
}

.shop-video-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: rgba(247,224,213,0.15);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(247,224,213,0.25);
  border-radius: 100px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.shop-video-badge i {
  color: var(--rose);
}

/* Responsive */
@media (max-width: 768px) {
  .shop-video-inner {
    grid-template-columns: 1fr;
  }

  .shop-video-frame {
    max-width: 260px;
    order: -1;
  }

  .shop-video-copy {
    text-align: center;
  }

  .shop-video-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-product-video {
    animation: none;
  }
  .shop-video-glow {
    animation: none;
  }
}
