/* =============================================================
   ARIKA TEA — Premium redesign
   Light theme · primary #E4853B · Poppins + Playfair Display
   3D product slider hero · real imagery · clean, no cinematic FX
   ============================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --orange:      #E4853B;   /* primary */
  --orange-soft: #f0a868;
  --orange-dark: #c96a26;
  --orange-deep: #a8521a;

  /* Premium brand palette — deep tea green + gold + ivory.
     Accent is the site default; product pages override it per product. */
  --accent:      #2e5e4e;
  --accent-dark: #224a3d;
  --accent-grad: linear-gradient(135deg, #3a715e, #224a3d);

  /* Gold — luxury accent */
  --gold:   #b8923f;
  --gold-2: #d9b873;

  --ink:      #1f2a25;
  --ink-2:    #3a463f;
  --ink-soft: #6b756e;

  --cream:    #f6f2ea;
  --cream-2:  #ece3d4;
  --sand:     #e3d8c4;
  --white:    #ffffff;

  --line:     rgba(42, 29, 18, 0.12);
  --glass:    rgba(255, 255, 255, 0.6);
  --glass-bd: rgba(255, 255, 255, 0.7);

  /* Heading font — swap this one value to match arikahome.bh */
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", "Segoe UI", system-ui, sans-serif;

  --maxw: 1240px;
  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 10px 30px rgba(42, 29, 18, 0.08);
  --shadow:    0 24px 60px rgba(42, 29, 18, 0.14);
  --shadow-orange: 0 16px 40px rgba(31, 42, 37, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; color: var(--ink); }
.eyebrow {
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.32em;
  font-size: 0.72rem; font-weight: 500; color: var(--accent); margin-bottom: 0.9rem;
}
.section-title { font-size: clamp(2rem, 4.6vw, 3.5rem); }
.lead { font-size: clamp(1rem, 1.5vw, 1.16rem); color: var(--ink-soft); max-width: 62ch; font-weight: 300; }

/* ---------- Layout ---------- */
.container { width: min(100% - 2.6rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.8rem; border-radius: 100px;
  font-size: 0.82rem; letter-spacing: 0.08em; font-weight: 500;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s, color 0.4s;
}
.btn-orange { background: var(--accent); color: #fff; box-shadow: var(--shadow-orange); }
.btn-orange:hover { transform: translateY(-3px); background: var(--accent-dark); box-shadow: 0 22px 50px rgba(34, 74, 61, 0.4); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--ink); background: var(--white); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--accent); color: var(--accent-dark); }

/* =============================================================
   NAVIGATION
   ============================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.3rem, 4vw, 3rem);
  transition: background 0.45s var(--ease), padding 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 6px 24px rgba(42, 29, 18, 0.08);
  padding-block: 0.7rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-size: 1.5rem; letter-spacing: 0.28em; color: var(--ink); font-weight: 600; }
.brand .logo { height: 48px; width: auto; display: block; }
.brand .leaf-mark { width: 26px; height: 26px; flex: none; background: linear-gradient(135deg, var(--orange-soft), var(--orange-deep)); border-radius: 0 100% 0 100%; transform: rotate(-12deg); }
@media (max-width: 560px) { .brand .logo { height: 40px; } }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.8rem; letter-spacing: 0.1em; font-weight: 400; color: var(--ink-2); position: relative; padding: 0.3rem 0; transition: color 0.3s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.35s var(--ease); }
.nav-links a:hover { color: var(--accent-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle { display: none; width: 28px; height: 20px; position: relative; z-index: 110; }
.nav-toggle span { position: absolute; left: 0; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform 0.4s var(--ease), opacity 0.3s; }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 2.2rem;
    background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(16px);
    transform: translateX(100%); transition: transform 0.5s var(--ease);
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.1rem; }
}

/* =============================================================
   3D PRODUCT SLIDER HERO
   ============================================================= */
.hero {
  position: relative; min-height: 100svh; padding-top: 6rem; overflow: hidden;
  display: grid; grid-template-rows: auto 1fr auto;
  /* deep tea-green blend */
  background: linear-gradient(158deg, #3a715e 0%, #2e5e4e 42%, #224a3d 78%, #1b3d33 100%);
}
/* frosted glass orbs floating in the hero */
.hero::before, .hero::after { content: ""; position: absolute; z-index: 0; border-radius: 50%; pointer-events: none; }
.hero::before { width: clamp(220px, 32vw, 400px); aspect-ratio: 1; top: 12%; left: -4%; background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.55), rgba(255,255,255,0.04) 70%); filter: blur(6px); }
.hero::after  { width: clamp(180px, 26vw, 320px); aspect-ratio: 1; bottom: 8%; right: -3%; background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.4), rgba(255,255,255,0) 70%); filter: blur(8px); }
.hero-head { text-align: center; padding: 1rem 1.3rem 0; position: relative; z-index: 6; }
.hero-head .eyebrow { justify-content: center; color: rgba(255,255,255,0.92); }
.hero-head h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); letter-spacing: 0.01em; color: #fff; }
.hero-head h1 .accent { color: var(--gold-2); font-style: italic; }
.hero-head .lead { margin: 1rem auto 0; color: rgba(255,255,255,0.94); }

/* hero controls + caption on solid orange */
.hero-caption .hc-tag { color: rgba(255,255,255,0.92); }
.hero-caption .hc-name { color: #fff; }
.hero-caption .hc-price { color: rgba(255,255,255,0.92); }
.hero-caption .hc-price b { color: #fff; }
.hero-caption .btn-orange { background: #fff; color: var(--accent-dark); box-shadow: 0 14px 34px rgba(0,0,0,0.18); }
.hero-caption .btn-orange:hover { background: var(--gold-2); color: var(--ink); }
.hero-caption .btn-ghost { background: transparent; border-color: rgba(255,255,255,0.7); color: #fff; }
.hero-caption .btn-ghost:hover { border-color: #fff; color: #fff; }
.hero .slider-nav i { background: rgba(255,255,255,0.45); }
.hero .slider-nav i.on { background: #fff; }
.hero .slider-arrow:hover { background: rgba(255, 255, 255, 0.34); color: #fff; }
/* nav over the orange hero (before scroll) */
.nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.95); }
.nav:not(.scrolled) .nav-toggle span { background: #fff; }

/* Mobile menu: the slide-in panel is a near-white overlay, so its text and
   close (X) icon must stay dark/black regardless of scroll or hero state. */
@media (max-width: 820px) {
  .nav-links a,
  .nav:not(.scrolled) .nav-links a { color: var(--ink); }
  .nav-links.open a { color: var(--ink); }
  .nav-toggle.open span,
  .nav:not(.scrolled) .nav-toggle.open span { background: var(--ink); }
}

/* leaves — fixed, drifting site-wide on every page while scrolling */
.leaves { position: fixed; inset: 0; z-index: 4; pointer-events: none; overflow: hidden; }
.leaf { position: absolute; top: -8%; width: 34px; height: 42px; background: center/contain no-repeat url(../images/leaf.svg); opacity: 0; will-change: transform; }

/* slider stage — BIG */
.slider {
  position: relative; z-index: 5; align-self: center;
  width: 100%; height: clamp(420px, 60vh, 640px);
  perspective: 2200px; margin-top: 0.5rem;
}
.slides { position: absolute; inset: 0; transform-style: preserve-3d; }
.slide {
  position: absolute; top: 50%; left: 50%;
  width: clamp(320px, 46vw, 660px); aspect-ratio: 3 / 2;
  margin: 0; border-radius: var(--radius-lg);
  transform: translate(-50%, -50%); transform-style: preserve-3d;
  transition: transform 0.8s var(--ease), opacity 0.8s var(--ease), box-shadow 0.8s var(--ease);
  will-change: transform, opacity; cursor: pointer;
  background: var(--white); box-shadow: var(--shadow);
  border: 1px solid var(--glass-bd); overflow: hidden;
}
.slide .glow { position: absolute; inset: 0; z-index: 0; opacity: 0.25; background: var(--slide-grad, linear-gradient(160deg, #fff, var(--cream-2))); }
.slide img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
  transition: transform 0.8s var(--ease); image-rendering: -webkit-optimize-contrast;
}
.slide .badge {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 2.2rem 1.2rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.45));
  color: #fff; text-align: center; opacity: 0; transition: opacity 0.6s var(--ease);
}
.slide .badge .nm { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; }
.slide .badge .pr { font-size: 0.82rem; opacity: 0.92; }
.slide.is-active { box-shadow: 0 50px 90px rgba(42, 29, 18, 0.3); }
.slide.is-active .badge { opacity: 1; }
.slide.is-active img { transform: scale(1.03); }
/* keep every product crisp & clear (no dimming of side slides) */

/* hero caption (active product) */
.hero-caption {
  position: relative; z-index: 6; text-align: center;
  width: min(92%, 560px); margin: 0.6rem auto 2rem; padding: 1.3rem 1.8rem 1.5rem;
  border-radius: 24px;
  /* frosted glass that blends the same warm orange hero gradient through it */
  background:
    linear-gradient(158deg, rgba(246, 181, 106, 0.16) 0%, rgba(168, 82, 26, 0.12) 100%),
    rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(26px) saturate(200%);
  -webkit-backdrop-filter: blur(26px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.40);
  box-shadow: 0 22px 50px rgba(120, 60, 10, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.50);
}
.hero-caption .hc-tag { color: rgba(255,255,255,0.92); letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.72rem; font-weight: 500; }
.hero-caption .hc-name { font-family: var(--font-head); font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 0.2rem 0 0.1rem; color: #fff; }
.hero-caption .hc-price { color: rgba(255,255,255,0.92); font-weight: 500; }
.hero-caption .hc-price b { color: #fff; }
.hero-caption .hc-cta { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.1rem; }
.hero-caption .hc-fade { transition: opacity 0.4s ease; }

/* slider controls */
.slider-nav { position: absolute; bottom: -0.5rem; left: 50%; transform: translateX(-50%); z-index: 7; display: flex; gap: 0.5rem; }
.slider-nav i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); cursor: pointer; transition: all 0.35s; }
.slider-nav i.on { background: var(--accent); width: 28px; border-radius: 6px; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 7;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 30px rgba(120, 60, 10, 0.2);
  display: grid; place-items: center; color: #fff; transition: transform 0.3s, background 0.3s;
}
.slider-arrow:hover { background: rgba(255, 255, 255, 0.34); transform: translateY(-50%) scale(1.08); }
.slider-arrow.prev { left: clamp(0.5rem, 3vw, 2.5rem); }
.slider-arrow.next { right: clamp(0.5rem, 3vw, 2.5rem); }
.slider-arrow svg { width: 20px; height: 20px; }
@media (max-width: 600px) { .slider-arrow { width: 40px; height: 40px; } }

/* =============================================================
   PRODUCT SHOWCASE (3D tilt cards)
   ============================================================= */
.products-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); margin-top: 3.4rem; perspective: 1400px; }
.product-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  transform-style: preserve-3d; will-change: transform; min-height: 420px;
  display: flex; flex-direction: column;
}
.product-card .pc-imgwrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #fff; }
.product-card .pc-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); transform: translateZ(30px); }
.product-card:hover { transform: translateY(-10px) rotateX(4deg); box-shadow: var(--shadow); }
.product-card:hover .pc-img { transform: scale(1.07); }
.product-card .pc-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.2rem; flex: 1; }
.product-card .pc-tag { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.product-card .pc-name { font-size: 1.4rem; }
.product-card .pc-price { margin-top: 0.3rem; color: var(--ink-2); font-weight: 400; }
.product-card .pc-price b { font-family: var(--font-head); font-size: 1.2rem; color: var(--accent-dark); font-weight: 600; }
.product-card .pc-cta { margin-top: auto; padding-top: 0.9rem; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.35s, color 0.35s; font-weight: 500; }
.product-card:hover .pc-cta { gap: 0.9rem; color: var(--accent-dark); }

/* =============================================================
   ABOUT
   ============================================================= */
.about { background: var(--white); }
.value-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 2.8rem; }
.value { padding: 2rem 1.6rem; border-radius: var(--radius); background: var(--cream); border: 1px solid var(--line); transition: transform 0.45s var(--ease), box-shadow 0.45s; }
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.value .num { font-family: var(--font-head); font-size: 1.6rem; color: var(--accent); font-weight: 600; }
.value h3 { font-size: 1.3rem; margin: 0.5rem 0 0.4rem; }
.value p { color: var(--ink-soft); font-size: 0.94rem; }

/* =============================================================
   CONTACT / FOOTER
   ============================================================= */
.contact { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.contact-card { margin-top: 2.8rem; padding: clamp(2.2rem, 5vw, 4rem); border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); text-align: center; }
.contact-card .num { font-family: var(--font-head); font-size: clamp(1.8rem, 5vw, 2.8rem); color: var(--accent-dark); font-weight: 600; }
.footer { padding: 3rem 0 4rem; background: var(--accent); color: rgba(255,255,255,0.92); text-align: center; font-size: 0.84rem; }
.footer .brand { justify-content: center; margin-bottom: 1rem; color: #fff; }
.footer .brand .logo { height: 42px; filter: brightness(0) invert(1); opacity: 0.95; }

/* =============================================================
   WHATSAPP FLOAT
   ============================================================= */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.8rem); bottom: clamp(1rem, 3vw, 1.8rem); z-index: 90;
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: #25d366; color: #053; font-weight: 500;
  padding: 0.85rem 1.25rem; border-radius: 100px; box-shadow: 0 14px 38px rgba(37, 211, 102, 0.4);
  font-size: 0.9rem; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.wa-float svg { width: 22px; height: 22px; flex: none; }
.wa-float:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 20px 50px rgba(37, 211, 102, 0.55); }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 100px; border: 2px solid #25d366; animation: waPulse 2.4s ease-out infinite; z-index: -1; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.4); opacity: 0; } }
@media (max-width: 560px) { .wa-float .wa-text { display: none; } .wa-float { padding: 0.9rem; } }

/* =============================================================
   PRODUCT PAGE
   ============================================================= */
.p-hero {
  position: relative; min-height: 88svh; display: flex; align-items: center; overflow: hidden; padding-top: 6rem;
  /* themed per product (set via --ph-hero); falls back to the soft cream wash */
  background: var(--ph-hero,
    radial-gradient(60% 60% at 78% 50%, var(--ph-tint, rgba(46,94,78,0.14)), transparent 60%) ,
    linear-gradient(180deg, var(--cream), var(--cream-2)));
}
.p-hero .container { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 880px) { .p-hero .container { grid-template-columns: 1.05fr 1fr; } }
.p-hero .eyebrow { color: var(--accent); }
.p-hero h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.p-hero .lead { margin-top: 1rem; }
.p-hero .p-price-badge { display: inline-flex; align-items: baseline; gap: 0.5rem; margin-top: 1.6rem; padding: 0.7rem 1.4rem; border-radius: 100px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.p-hero .p-price-badge b { font-family: var(--font-head); font-size: 1.5rem; color: var(--accent-dark); font-weight: 600; }
.p-hero .p-price-badge small { color: var(--ink-soft); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.66rem; }

/* 3D product image (hero + reusable) */
.p3d { position: relative; perspective: 1200px; }
.p3d .p3d-inner {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/2; box-shadow: var(--shadow); border: 1px solid var(--glass-bd);
  transform-style: preserve-3d; transition: transform 0.4s var(--ease);
  background: #fff;
  animation: float3d 7s ease-in-out infinite;
}
.p3d .p3d-inner img { width: 100%; height: 100%; object-fit: cover; }
.p3d .p3d-inner .ph { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,0.7); font-family: var(--font-head); font-size: 1.4rem; }
@keyframes float3d { 0%,100% { transform: translateY(0) rotateX(0) rotateY(-4deg); } 50% { transform: translateY(-14px) rotateX(3deg) rotateY(4deg); } }

.back-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.4rem; color: var(--ink-soft); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; transition: gap 0.35s, color 0.35s; }
.back-link:hover { gap: 0.9rem; color: var(--accent-dark); }

.p-section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.p-section.alt { background: var(--white); }
.p-feature-img { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 4/3; position: relative; background: var(--ph-grad, var(--cream-2)); }
.p-feature-img img { width: 100%; height: 100%; object-fit: cover; }
.p-feature-img .ph { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,0.7); font-family: var(--font-head); font-size: 1.4rem; }

.chip-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.chip { padding: 0.5rem 1.1rem; border-radius: 100px; background: var(--cream); border: 1px solid var(--line); font-size: 0.84rem; color: var(--ink-2); }

.brew-guide { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); margin-top: 2.4rem; }
.brew-guide .step { padding: 1.7rem 1.3rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); text-align: center; }
.brew-guide .step .ic { font-size: 1.7rem; }
.brew-guide .step b { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--accent-dark); margin: 0.4rem 0 0.2rem; font-weight: 600; }
.brew-guide .step span { color: var(--ink-soft); font-size: 0.86rem; }

.benefits { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 2.4rem; }
.benefit { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1.3rem; border-radius: var(--radius); background: var(--cream); border: 1px solid var(--line); }
.benefit .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); margin-top: 0.55rem; flex: none; }

.price-band { text-align: center; padding: clamp(2.5rem, 6vw, 4.5rem); border-radius: var(--radius-lg); background: var(--accent-grad); color: #fff; box-shadow: var(--shadow); margin-top: 2.8rem; }
.price-band .big { font-family: var(--font-head); font-size: clamp(2.4rem, 7vw, 3.8rem); font-weight: 600; }
.price-band small { display: block; opacity: 0.9; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.7rem; margin-bottom: 0.5rem; }
.price-band .btn-ghost { margin-top: 1.4rem; background: #fff; border-color: #fff; color: var(--accent-dark); }

.related-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); margin-top: 2.4rem; }
.related-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform 0.45s var(--ease); display: block; }
.related-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.related-card .rc-grad { position: absolute; inset: 0; background: var(--rc-grad, var(--cream-2)); }
.related-card span { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1rem 1rem; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55)); color: #fff; font-family: var(--font-head); font-size: 1.15rem; }
.related-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
