/* =====================================================================
   TapSaathi — NFC Review Card store
   Design system: light, premium, tech-forward. Electric blue accent.
   ===================================================================== */

:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-2: #fbfbfd;
  --ink: #0b1220;
  --ink-2: #3a4656;
  --ink-soft: #5b6472;
  --ink-faint: #8b93a3;
  --line: #e7e9f0;
  --line-strong: #d8dbe5;

  --accent: #3151ff;
  --accent-deep: #1f3adf;
  --accent-ink: #1630c9;
  --accent-soft: #eaf0ff;
  --accent-super: #f4f7ff;

  --emerald: #0e9f6e;
  --emerald-soft: #e5f7ef;
  --amber: #f59e0b;
  --amber-soft: #fff4df;
  --danger: #e5484d;
  --danger-soft: #fdebec;

  --grad: linear-gradient(135deg, #4d6bff 0%, #3151ff 55%, #1f3adf 100%);
  --grad-soft: linear-gradient(135deg, #eaf0ff 0%, #f4f7ff 100%);

  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 13px;
  --radius-sm: 9px;

  --shadow-sm: 0 2px 6px rgba(11, 18, 32, 0.05);
  --shadow-md: 0 8px 24px rgba(11, 18, 32, 0.08);
  --shadow-lg: 0 18px 48px rgba(11, 18, 32, 0.12);
  --shadow-accent: 0 12px 28px rgba(49, 81, 255, 0.35);

  --font-head: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---- 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(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.02em; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

::selection { background: var(--accent); color: #fff; }

:focus-visible { outline: 3px solid rgba(49, 81, 255, 0.45); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.container--wide { max-width: 1200px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft);
  padding: 7px 14px; border-radius: 999px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.section { padding: clamp(56px, 9vw, 104px) 0; position: relative; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }

.section-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4.6vw, 44px); font-weight: 700; margin: 16px 0 12px; }
.section-head p { color: var(--ink-soft); font-size: clamp(15px, 2vw, 17px); }

.muted { color: var(--ink-soft); }
.small { font-size: 14px; }

/* =====================================================================
   Navbar (glass on scroll)
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(246, 247, 251, 0.72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(11,18,32,0.02), 0 12px 32px rgba(11,18,32,0.05);
}
.nav__inner { display: flex; align-items: center; gap: 24px; height: 68px; }

.dbar {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 9px 16px; text-align: center; font-size: 13.5px; font-weight: 700;
  color: #fff; background: var(--grad);
}
.dbar svg { width: 15px; height: 15px; flex: none; }
@media (max-width: 640px) { .dbar { font-size: 12px; padding: 8px 12px; } }

.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.brand__logo { height: 40px; width: auto; display: block; }

.nav__links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav__links a {
  font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  padding: 8px 14px; border-radius: 999px; transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--ink); background: rgba(11,18,32,0.05); }

.nav__actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.icon-btn {
  position: relative; width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink);
  display: grid; place-items: center; transition: transform .15s, box-shadow .2s, border-color .2s;
}
.icon-btn:hover { box-shadow: var(--shadow-md); border-color: var(--line-strong); transform: translateY(-1px); }
.icon-btn:active { transform: translateY(0) scale(.96); }
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn .cart-count {
  position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px;
  padding: 0 5px; border-radius: 999px; background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 800; display: grid; place-items: center;
  border: 2px solid var(--bg);
  transform: scale(0); transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.icon-btn .cart-count.show { transform: scale(1); }
.cart-count.bump { animation: bump .5s cubic-bezier(.34,1.56,.64,1); }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--grad); color: #fff; font-weight: 700; font-size: 15px;
  padding: 14px 24px; border-radius: var(--radius-md); border: none;
  box-shadow: var(--shadow-accent); position: relative; overflow: hidden;
  transition: transform .15s, box-shadow .2s, filter .2s;
}
.btn-primary:hover { filter: brightness(1.05); box-shadow: 0 16px 32px rgba(49,81,255,.42); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0) scale(.98); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--surface); color: var(--ink); font-weight: 700; font-size: 15px;
  padding: 14px 24px; border-radius: var(--radius-md); border: 1.5px solid var(--line-strong);
  transition: border-color .2s, box-shadow .2s, transform .15s; position: relative; overflow: hidden;
}
.btn-outline:hover { border-color: var(--ink); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-outline:active { transform: translateY(0) scale(.98); }

.btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 15px;
  padding: 14px 24px; border-radius: var(--radius-md); border: none; position: relative; overflow: hidden;
  transition: transform .15s, box-shadow .2s;
}
.btn-dark:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.btn-dark:active { transform: translateY(0) scale(.98); }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 30px; font-size: 16px; border-radius: 15px; }
.btn-sm { padding: 9px 14px; font-size: 13.5px; border-radius: 10px; }

/* ripple */
.ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.55); transform: scale(0); animation: ripple .6s ease-out forwards; pointer-events: none; }
.btn-outline .ripple, .icon-btn .ripple { background: rgba(11,18,32,0.14); }
.btn-dark .ripple { background: rgba(255,255,255,0.18); }

/* mobile nav toggle */
.nav-toggle { display: none; }

@media (max-width: 880px) {
  .nav-toggle { display: grid; }
  .nav__links {
    position: fixed; inset: 68px 0 auto 0; z-index: 89;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(18px);
    padding: 16px 20px 24px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform .28s ease, opacity .28s ease;
  }
  .nav__links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { font-size: 17px; padding: 14px 10px; border-radius: 12px; }
  .nav__links a:hover { background: var(--accent-super); }
}

/* =====================================================================
   Buttons ripple key + misc animation keyframes
   ===================================================================== */
@keyframes ripple { to { transform: scale(4); opacity: 0; } }
@keyframes bump { 0%{transform:scale(1)} 35%{transform:scale(1.45)} 100%{transform:scale(1)} }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes shimmer { 100% { transform: translateX(100%); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pop { 0%{transform:scale(.92);opacity:0} 100%{transform:scale(1);opacity:1} }

.reveal { opacity: 0; }
.reveal.in { animation: fadeUp .7s cubic-bezier(.16,1,.3,1) forwards; }

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(40px, 7vw, 84px) 0 clamp(56px, 8vw, 96px);
}
.hero__bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(900px 460px at 8% -10%, rgba(49,81,255,0.10), transparent 60%),
    radial-gradient(760px 420px at 96% 8%, rgba(14,159,110,0.08), transparent 60%),
    radial-gradient(600px 500px at 60% 110%, rgba(49,81,255,0.05), transparent 60%);
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }

.hero__badge { animation: fadeUp .6s ease both; }
.hero h1 { font-size: clamp(40px, 7vw, 68px); font-weight: 700; line-height: 1.04; margin: 20px 0 6px; letter-spacing: -0.03em; animation: fadeUp .6s .08s ease both; }
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .typed { white-space: nowrap; }
.hero .typed > span { border-right: 3px solid var(--accent); padding-right: 2px; animation: blink 1s steps(1) infinite; }

.hero__sub { font-size: clamp(16px, 2.2vw, 19px); color: var(--ink-soft); max-width: 30ch; margin: 18px 0 28px; animation: fadeUp .6s .16s ease both; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; animation: fadeUp .6s .24s ease both; }

.hero__trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 34px; animation: fadeUp .6s .32s ease both; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.trust-item .ti-icon { width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center; background: var(--emerald-soft); color: var(--emerald); flex: none; }
.trust-item .ti-icon svg { width: 16px; height: 16px; }

.hero__stats {
  display: flex; gap: clamp(18px, 3vw, 40px); margin-top: 38px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--line); animation: fadeUp .6s .4s ease both;
}
.stat .stat-num { font-family: var(--font-head); font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -0.02em; }
.stat .stat-num b { color: var(--accent); }
.stat .stat-label { font-size: 13px; color: var(--ink-faint); font-weight: 600; }

/* hero visual: phone + card tap mockup */
.hero-visual { position: relative; display: grid; place-items: center; padding: 30px 0; animation: fadeUp .8s .2s ease both; }
.phone {
  width: min(300px, 74vw); aspect-ratio: 9/19; background: #0d1220;
  border-radius: 42px; padding: 10px; box-shadow: 0 40px 80px rgba(11,18,32,.28), 0 8px 24px rgba(11,18,32,.16);
  position: relative;
}
.phone__screen {
  border-radius: 32px; background: #fff; height: 100%; overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}
.phone__screen .app-top { padding: 26px 18px 14px; border-bottom: 1px solid var(--line); }
.phone__screen .app-bar { display: flex; align-items: center; gap: 8px; }
.app-bar .grey { height: 9px; border-radius: 6px; background: #eceff4; }
.phone__screen .app-body { flex: 1; padding: 20px 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 12px; }
.app-logo { width: 46px; height: 46px; border-radius: 14px; background: var(--grad); display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 20px; box-shadow: var(--shadow-accent); }
.app-logo .grad { font-size: 18px; }
.stars { color: var(--amber); font-size: 20px; letter-spacing: 2px; }
.app-title { font-family: var(--font-head); font-weight: 700; font-size: 17px; }
.app-sub { font-size: 12.5px; color: var(--ink-faint); }
.app-cta-bar { display: flex; gap: 7px; width: 100%; margin-top: 4px; }
.app-cta-bar .pbtn { height: 40px; flex: 1; border-radius: 12px; background: var(--grad); color: #fff; font-size: 12px; font-weight: 700; display: grid; place-items: center; }
.app-cta-bar .pbtn.ghost { background: #eff2f8; color: var(--ink-2); }
.phone__screen .app-bottom { padding: 12px 18px; border-top: 1px solid var(--line); }
.app-done { display: flex; align-items: center; gap: 8px; color: var(--emerald); font-size: 12.5px; font-weight: 700; }

.nfc-card {
  position: absolute; width: 158px; aspect-ratio: 1.62; border-radius: 18px;
  left: 50%; bottom: 6px; transform: translateX(-58%);
  background: linear-gradient(140deg, #101731, #29415e); color: #fff;
  padding: 12px 14px; display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 24px 44px rgba(11,18,32,.35);
  z-index: 3;
}
.nfc-card::after {
  content: ""; position: absolute; inset: -14px; border-radius: 27px;
  background: radial-gradient(circle, rgba(49,81,255,.5), transparent 65%);
  opacity: 0; z-index: -1; animation: tapPulse 2.4s ease-in-out infinite;
  filter: blur(6px);
}
.nfc-card__chip { width: 26px; height: 20px; border-radius: 6px; background: linear-gradient(135deg,#e8c25c,#b7891f); }
.nfc-card__tag { position: absolute; top: 12px; right: 12px; font-size: 9px; font-weight: 800; letter-spacing: .14em; color: #9fc0ff; display: flex; align-items: center; gap: 5px; }
.nfc-card__tag .wave { display: inline-block; width: 11px; height: 11px; border-radius: 50%; border: 1.6px solid #9fc0ff; position: relative; }
.nfc-card__tag .wave::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1.4px solid rgba(159,192,255,.5); }
.nfc-card__line { height: 8px; border-radius: 6px; background: rgba(255,255,255,.22); width: 70%; }
.nfc-card__line.short { width: 46%; }

.nfc-waves {
  position: absolute; left: 50%; bottom: 78px; transform: translateX(-48%); pointer-events: none; z-index: 2;
  animation: wavePulse 2.4s ease-in-out infinite;
}
.nfc-waves span { position: absolute; border: 2px solid var(--accent); border-radius: 50%; opacity: 0; width: 60px; height: 60px; }
.nfc-waves span:nth-child(1) { border-color: var(--accent); }
.nfc-waves span:nth-child(2) { border-color: rgba(49,81,255,.5); }

.float-chip {
  position: absolute; display: flex; align-items: center; gap: 7px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 15px; font-size: 12.5px; font-weight: 700;
  box-shadow: var(--shadow-md); animation: floaty 5s ease-in-out infinite;
  z-index: 4;
}
.float-chip svg { width: 15px; height: 15px; }
.float-chip--1 { top: 6%; left: 0; }
.float-chip--2 { top: 26%; right: 2%; animation-delay: 1.2s; color: var(--emerald); animation-duration: 6s; }
.float-chip--3 { bottom: 34%; left: -2%; animation-delay: 2.1s; animation-duration: 5.4s; color: var(--amber); }

@keyframes tapPulse {
  0%, 100% { opacity: .25; transform: scale(.9); }
  50% { opacity: .65; transform: scale(1.18); }
}
@keyframes wavePulse {
  0% { transform: translateX(-48%) scale(.6); }
  50%, 100% { transform: translateX(-48%) scale(1.6); opacity: 1; }
}
.nfc-waves { opacity: 1; }
.nfc-waves span { display: block; }
.nfc-waves span:nth-child(1) { animation: wave1 2.4s ease-out infinite; }
.nfc-waves span:nth-child(2) { animation: wave2 2.4s ease-out infinite; }
@keyframes wave1 { 0%{opacity:.0;transform:scale(.4)} 20%{opacity:.9} 80%,100%{opacity:0;transform:scale(1.5)} }
@keyframes wave2 { 0%{opacity:0;transform:scale(.4)} 40%{opacity:.5} 80%,100%{opacity:0;transform:scale(1.9)} }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; padding: 10px 0 30px; transform: scale(.92); }
  .hero { text-align: left; }
}

/* =====================================================================
   How it works
   ===================================================================== */
.how { position: relative; }
.how::before { content: ""; position: absolute; inset: 0; background: var(--surface); z-index: -1; }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.6vw, 28px); counter-reset: step; }
.how-step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px); position: relative; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.how-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.how-step__num {
  width: 46px; height: 46px; border-radius: 14px; background: var(--accent-super); color: var(--accent);
  border: 1px solid rgba(49,81,255,.16); font-family: var(--font-head); font-weight: 700; font-size: 20px;
  display: grid; place-items: center; margin-bottom: 18px;
}
.how-step__ico { width: 54px; height: 54px; border-radius: 16px; background: var(--grad-soft); border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 16px; }
.how-step__ico svg { width: 26px; height: 26px; color: var(--accent); }
.how-step h3 { font-size: 19px; margin-bottom: 8px; }
.how-step p { color: var(--ink-soft); font-size: 14.5px; }

@media (max-width: 860px) { .how__grid { grid-template-columns: 1fr; } }

/* =====================================================================
   Product cards
   ===================================================================== */
.pgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(18px, 2.4vw, 28px); }

.pcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl);
  overflow: hidden; display: flex; flex-direction: column; position: relative;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s, border-color .3s;
}
.pcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }

.pcard__media {
  aspect-ratio: 1; background: #f0f2f7; position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 11.5px; font-weight: 800; letter-spacing: .04em;
  padding: 6px 12px; border-radius: 999px; background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; gap: 6px;
}
.pcard__badge--accent { background: var(--grad); box-shadow: var(--shadow-accent); }
.pcard__badge--emerald { background: var(--emerald); }

.pcard__quick {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 42px; height: 42px; border-radius: 13px; border: none;
  background: rgba(255,255,255,.9); backdrop-filter: blur(6px); color: var(--ink);
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  transition: transform .2s, background .2s, color .2s; opacity: 0; transform: translateY(6px);
}
.pcard:hover .pcard__quick { opacity: 1; transform: translateY(0); }
.pcard__quick:hover { background: var(--accent); color: #fff; }
.pcard__quick svg { width: 19px; height: 19px; }
@media (hover: none) { .pcard__quick { opacity: 1; transform: none; } }

.pcard__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pcard__rating { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-2); font-weight: 600; }
.pcard__rating .stars { font-size: 12px; letter-spacing: 1px; }
.pcard__brand { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-faint); }
.pcard__name { font-family: var(--font-head); font-size: 19px; font-weight: 700; line-height: 1.25; }
.pcard__desc { font-size: 14px; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.pcard__price { display: flex; align-items: baseline; gap: 10px; margin-top: 4px; }
.pcard__price .now { font-family: var(--font-head); font-size: 22px; font-weight: 700; }
.pcard__price .cut { color: var(--ink-faint); text-decoration: line-through; font-size: 14px; }
.pcard__price .off { color: var(--emerald); font-weight: 700; font-size: 12.5px; background: var(--emerald-soft); padding: 3px 8px; border-radius: 6px; }
.pcard__actions { display: flex; gap: 10px; margin-top: 14px; align-items: center; }
.pcard__actions .btn { flex: 1; }

/* coming soon tile */
.soon-tile {
  background: linear-gradient(160deg, #fbfbfe, #f1f2f8);
  border: 1.5px dashed var(--line-strong); border-radius: var(--radius-xl);
  min-height: 460px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px; gap: 12px; position: relative; overflow: hidden;
}
.soon-tile::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(49,81,255,.08), transparent 65%); }
.soon-tile .soon-ico { width: 74px; height: 74px; border-radius: 22px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; box-shadow: var(--shadow-md); }
.soon-tile .soon-ico svg { width: 32px; height: 32px; color: var(--accent); }
.soon-tile .soon-badge { font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); padding: 6px 12px; border-radius: 999px; }
.soon-tile h3 { font-size: 20px; }
.soon-tile p { color: var(--ink-soft); font-size: 14px; max-width: 26ch; }

/* =====================================================================
   Testimonials
   ===================================================================== */
.testi__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(16px, 2.4vw, 24px); }
.testi {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 30px); display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s, box-shadow .3s; position: relative;
}
.testi:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stars .st.off { color: #dfe3ec; }
.stars .st.half { color: var(--amber); opacity: .5; }
.testi__stars { color: var(--amber); font-size: 15px; letter-spacing: 2px; }
.testi__quote { font-size: 15px; line-height: 1.6; color: var(--ink-2); flex: 1; }
.testi__who { display: flex; align-items: center; gap: 12px; }
.testi__ava { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); color: #fff; font-weight: 800; font-size: 15px; display: grid; place-items: center; font-family: var(--font-head); }
.testi__who b { display: block; font-size: 14px; }
.testi__who span { font-size: 12.5px; color: var(--ink-faint); }

/* =====================================================================
   FAQ accordion
   ===================================================================== */
.faq { max-width: 780px; margin: 0 auto; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; transition: border-color .2s; }
.faq__item.open { border-color: rgba(49,81,255,.4); }
.faq__q {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px; font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--ink);
}
.faq__chev { width: 28px; height: 28px; flex: none; border-radius: 9px; background: var(--accent-super); color: var(--accent); display: grid; place-items: center; transition: transform .3s; }
.faq__chev svg { width: 14px; height: 14px; }
.faq__item.open .faq__chev { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a > div { padding: 0 22px 20px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; }

/* =====================================================================
   Banner / band
   ===================================================================== */
.band {
  background: var(--ink); color: #fff; border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px); position: relative; overflow: hidden;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
}
.band::before { content: ""; position: absolute; top: -40%; right: -10%; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(49,81,255,.55), transparent 65%); }
.band::after { content: ""; position: absolute; bottom: -60%; left: 8%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(14,159,110,.35), transparent 65%); }
.band h2 { font-size: clamp(24px, 3.4vw, 36px); max-width: 16ch; position: relative; z-index: 1; }
.band p { color: #b7bdcc; font-size: 15px; margin-top: 10px; position: relative; z-index: 1; }
.band .btn-primary { position: relative; z-index: 1; }

/* =====================================================================
   Delivery promo (home)
   ===================================================================== */
.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 24px); }
.delivery-card {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  padding: clamp(26px, 3.4vw, 42px); display: flex; gap: 20px; align-items: flex-start;
  border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease;
}
.delivery-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.delivery-card--jaipur { background: var(--grad); color: #fff; }
.delivery-card--india { background: var(--surface); }
.delivery-card--india::before { content: ""; position: absolute; top: -45%; right: -12%; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(49,81,255,.12), transparent 65%); }
.delivery-ico {
  width: 58px; height: 58px; border-radius: 18px; flex: none;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
}
.delivery-card--jaipur .delivery-ico { background: rgba(255,255,255,.16); color: #fff; }
.delivery-card--india .delivery-ico { background: var(--grad-soft); color: var(--accent); border: 1px solid var(--line); }
.delivery-ico svg { width: 30px; height: 30px; }
.delivery-tag {
  display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; border-radius: 999px; padding: 5px 12px; margin-bottom: 10px;
}
.delivery-card--jaipur .delivery-tag { background: rgba(255,255,255,.18); }
.delivery-card--india .delivery-tag { background: var(--accent-soft); color: var(--accent); }
.delivery-big { font-family: var(--font-head); font-weight: 700; font-size: clamp(34px, 4.6vw, 52px); line-height: 1; letter-spacing: -0.02em; }
.delivery-big span { display: block; font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: .02em; margin-top: 7px; }
.delivery-card--jaipur .delivery-big span { color: #dfe4ff; }
.delivery-card--india .delivery-big span { color: var(--ink-faint); }
.delivery-note { margin-top: 14px; font-size: 14.5px; line-height: 1.6; }
.delivery-card--jaipur .delivery-note { color: #dfe4ff; }
.delivery-card--india .delivery-note { color: var(--ink-2); }
.delivery-card__badge {
  position: absolute; top: 18px; right: -38px; transform: rotate(38deg);
  background: var(--amber); color: #fff; font-size: 10.5px; font-weight: 800; letter-spacing: .05em;
  text-transform: uppercase; padding: 5px 44px; box-shadow: var(--shadow-sm);
}
.delivery-card--india .delivery-card__badge { background: var(--emerald); }
@media (max-width: 780px) {
  .delivery-grid { grid-template-columns: 1fr; }
  .delivery-card { flex-direction: column; }
}

/* =====================================================================
   Footer
   ===================================================================== */
.footer { background: #0a101d; color: #c4cad6; margin-top: clamp(40px, 6vw, 80px); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: clamp(24px, 4vw, 48px); padding: clamp(44px, 6vw, 72px) 0 40px; }
.footer .brand { color: #fff; }
.footer .brand__logo {
  background: #fff; border-radius: 10px; padding: 6px 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.footer h4 { color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer a.fnav { display: block; color: #98a0b3; font-size: 14.5px; padding: 6px 0; transition: color .2s; }
.footer a.fnav:hover { color: #fff; }
.footer__about p { font-size: 14px; margin: 16px 0 20px; color: #98a0b3; max-width: 34ch; }
.footer__pay { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__pay span { font-size: 11.5px; font-weight: 700; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); padding: 6px 10px; border-radius: 8px; color: #dfe3ee; }
.footer__contact { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer__contact a { display: inline-flex; align-items: center; gap: 9px; color: #98a0b3; }
.footer__contact a:hover { color: #fff; }
.footer__contact svg { width: 16px; height: 16px; color: var(--accent); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: 13px; color: #7e8696; }
.footer__bottom a { color: #98a0b3; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* =====================================================================
   Skeleton loader
   ===================================================================== */
.skeleton {
  position: relative; overflow: hidden; background: #eceef4;
}
.skeleton::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  transform: translateX(-100%); animation: shimmer 1.4s infinite;
}
.img-wrap { position: relative; overflow: hidden; }
.img-wrap .skeleton { position: absolute; inset: 0; z-index: 1; }
.img-wrap img { opacity: 0; transition: opacity .5s ease; }
.img-wrap img.loaded { opacity: 1; }

/* =====================================================================
   Toast
   ===================================================================== */
.toast-wrap { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 10px; align-items: center; width: min(92vw, 420px); pointer-events: none; }
.toast {
  display: flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff; padding: 13px 20px; border-radius: 14px;
  font-size: 14px; font-weight: 600; box-shadow: var(--shadow-lg);
  animation: pop .35s cubic-bezier(.16,1,.3,1) both;
  pointer-events: auto;
}
.toast .t-ico { width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center; flex: none; }
.toast .t-ico svg { width: 14px; height: 14px; }
.toast.success .t-ico { background: var(--emerald); }
.toast.info .t-ico { background: var(--accent); }
.toast.error .t-ico { background: var(--danger); }
.toast.out { animation: pop .35s cubic-bezier(.16,1,.3,1) reverse both; }

/* floating whatsapp */
.wa-fab {
  position: fixed; bottom: 22px; right: 22px; z-index: 150;
  width: 56px; height: 56px; border-radius: 18px; background: #22c15e;
  color: #fff; box-shadow: 0 14px 30px rgba(34,193,94,.4);
  display: grid; place-items: center; transition: transform .2s;
}
.wa-fab:hover { transform: translateY(-4px) scale(1.05); }
.wa-fab svg { width: 28px; height: 28px; }

/* =====================================================================
   Shop / listing
   ===================================================================== */
.page-head { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(24px, 3vw, 40px); }
.page-head h1 { font-size: clamp(30px, 5vw, 48px); margin: 14px 0 10px; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-faint); font-weight: 600; }
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { color: var(--line-strong); }

.shop-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.shop-meta .count { font-size: 14px; color: var(--ink-soft); }
.shop-meta .filter {
  display: flex; gap: 8px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 4px;
}
.shop-meta .filter button {
  border: none; background: none; padding: 8px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); transition: background .2s, color .2s;
}
.shop-meta .filter button.on { background: var(--ink); color: #fff; }

/* =====================================================================
   Product detail
   ===================================================================== */
.pd-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .pd-grid { grid-template-columns: 1fr; } }

.gallery { display: flex; flex-direction: column; gap: 14px; }
.gallery__main { border-radius: var(--radius-xl); overflow: hidden; background: #f0f2f7; box-shadow: var(--shadow-sm); }
.gallery__main img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery__thumbs button {
  border: 2px solid var(--line); background: #f0f2f7; border-radius: var(--radius-md);
  overflow: hidden; padding: 0; aspect-ratio: 1; transition: border-color .2s, transform .2s;
}
.gallery__thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs button.on { border-color: var(--accent); }
.gallery__thumbs button:hover { transform: translateY(-2px); }

.pd-info { display: flex; flex-direction: column; gap: 18px; }
.pd-brand { font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.pd-name { font-size: clamp(26px, 4vw, 38px); font-weight: 700; line-height: 1.12; }
.pd-ratings { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.pd-ratings .stars { font-size: 16px; }
.pd-ratings .rate { font-size: 14.5px; font-weight: 700; }
.pd-ratings .sep-dot { color: var(--line-strong); }
.pd-ratings .reviews { font-size: 14px; color: var(--ink-faint); }
.pd-ratings .bs { font-size: 11.5px; font-weight: 800; background: var(--amber-soft); color: #a86907; padding: 5px 10px; border-radius: 999px; }

.pd-price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.pd-price .now { font-family: var(--font-head); font-size: 34px; font-weight: 700; }
.pd-price .cut { color: var(--ink-faint); text-decoration: line-through; font-size: 17px; }
.pd-price .off { color: var(--emerald); font-weight: 800; font-size: 14px; background: var(--emerald-soft); padding: 5px 10px; border-radius: 8px; }
.pd-tax { font-size: 12.5px; color: var(--ink-faint); }

.pd-desc { color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; }

.bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bullets li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); font-weight: 500; }
.bullets li svg { width: 19px; height: 19px; color: var(--emerald); flex: none; margin-top: 2px; }

.pd-controls { display: flex; flex-direction: column; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow-sm); }
.qty-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.qty-row .lbl { font-size: 13.5px; font-weight: 700; color: var(--ink-2); }
.qty {
  display: inline-flex; align-items: center; border: 1.5px solid var(--line-strong); border-radius: 12px; overflow: hidden; background: var(--surface);
}
.qty button { width: 42px; height: 42px; border: none; background: none; font-size: 19px; font-weight: 700; color: var(--ink-2); font-family: var(--font-head); transition: background .2s, color .2s; }
.qty button:hover { background: var(--accent-super); color: var(--accent); }
.qty input { width: 52px; text-align: center; border: none; background: none; font-weight: 700; font-size: 16px; outline: none; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.pd-cta-row { display: flex; gap: 12px; }
.pd-cta-row .btn { flex: 1; }
.pd-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.pd-trust span { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--ink-2); background: var(--surface); border: 1px solid var(--line); padding: 9px 13px; border-radius: 10px; }
.pd-trust svg { width: 15px; height: 15px; color: var(--emerald); }

.pd-long { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(20px, 3vw, 36px); margin-top: clamp(32px, 5vw, 60px); }
@media (max-width: 860px) { .pd-long { grid-template-columns: 1fr; } }
.pd-long h3 { font-size: 21px; margin-bottom: 12px; }
.pd-long p { color: var(--ink-soft); font-size: 15px; margin-bottom: 12px; }
.specs { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.specs .sp-row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 18px; font-size: 14px; }
.specs .sp-row:nth-child(odd) { background: var(--surface-2); }
.specs .sp-row b { font-weight: 700; }
.specs .sp-row span { color: var(--ink-soft); text-align: right; }

.related { margin-top: clamp(40px, 6vw, 70px); }

/* =====================================================================
   Cart
   ===================================================================== */
.cart-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(20px, 3vw, 40px); align-items: start; }
@media (max-width: 880px) { .cart-grid { grid-template-columns: 1fr; } }

.cart-list { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 16px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 14px; transition: box-shadow .2s, transform .2s, opacity .3s;
}
.cart-item:hover { box-shadow: var(--shadow-md); }
.cart-item.removing { opacity: 0; transform: translateX(30px); }
.cart-item__img { width: 96px; height: 96px; border-radius: var(--radius-md); overflow: hidden; background: #f0f2f7; }
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__name { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; margin-bottom: 3px; }
.cart-item__price { font-size: 13.5px; color: var(--ink-faint); }
.cart-item__price b { color: var(--ink); font-size: 15px; }
.cart-item__right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-item__sub { font-family: var(--font-head); font-weight: 700; font-size: 17px; }
.cart-item__remove { border: none; background: none; color: var(--ink-faint); font-size: 12.5px; font-weight: 700; text-decoration: underline; }
.cart-item__remove:hover { color: var(--danger); }
.cart-item .qty { border-radius: 10px; }
.cart-item .qty button { width: 34px; height: 34px; font-size: 16px; }

.summary {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 28px); position: sticky; top: 90px; box-shadow: var(--shadow-sm);
}
.summary h3 { font-size: 18px; margin-bottom: 18px; }
.sum-row { display: flex; justify-content: space-between; font-size: 14.5px; padding: 9px 0; color: var(--ink-soft); }
.sum-row b { color: var(--ink); }
.sum-row--big { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 8px; padding: 14px 0; }
.sum-note { font-size: 12.5px; color: var(--ink-faint); margin-top: 12px; line-height: 1.5; }

.empty-cart { text-align: center; padding: clamp(40px, 6vw, 80px) 20px; }
.empty-cart .empty-ico { width: 84px; height: 84px; border-radius: 28px; margin: 0 auto 22px; background: var(--accent-super); border: 1px solid rgba(49,81,255,.14); display: grid; place-items: center; color: var(--accent); }
.empty-cart .empty-ico svg { width: 36px; height: 36px; }
.empty-cart h2 { font-size: 26px; margin-bottom: 8px; }
.empty-cart p { color: var(--ink-soft); margin-bottom: 22px; }

/* =====================================================================
   Checkout
   ===================================================================== */
.co-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(20px, 3vw, 40px); align-items: start; }
@media (max-width: 920px) { .co-grid { grid-template-columns: 1fr; } }

.co-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(20px, 3vw, 30px); margin-bottom: 20px; }
.co-card h2 { font-size: 19px; display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.co-card h2 .cn { width: 28px; height: 28px; flex: none; border-radius: 9px; background: var(--ink); color: #fff; font-size: 13px; font-family: var(--font-head); display: grid; place-items: center; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; color: var(--ink-2); }
.field .req { color: var(--danger); }
.field input {
  width: 100%; border: 1.5px solid var(--line-strong); border-radius: var(--radius-md);
  padding: 13px 15px; font-size: 15px; background: var(--surface); transition: border-color .2s, box-shadow .2s;
}
.field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(49,81,255,.12); }
.field input.err { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(229,72,77,.1); }
.field .hint { font-size: 12px; color: var(--ink-faint); margin-top: 6px; display: flex; gap: 6px; align-items: center; }
.field .hint svg { width: 13px; height: 13px; }
.field .err-msg { display: none; font-size: 12.5px; color: var(--danger); font-weight: 600; margin-top: 6px; }
.field .err-msg.show { display: flex; align-items: center; gap: 6px; }
.field .err-msg svg { width: 14px; height: 14px; flex: none; }
.phone-wrap { position: relative; }
.phone-wrap .pj { position: absolute; left: 1px; top: 1px; bottom: 1px; display: flex; align-items: center; gap: 8px; padding: 0 12px; font-weight: 700; font-size: 15px; color: var(--ink); background: var(--surface-2); border-radius: var(--radius-md) 0 0 var(--radius-md); border-right: 1px solid var(--line); }
.phone-wrap input { padding-left: 58px; }

.check-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--ink-soft); }
.check-consent input { width: 18px; height: 18px; accent-color: var(--accent); margin-top: 2px; flex: none; }

.pay-options { display: flex; flex-direction: column; gap: 12px; }
.pay-opt {
  position: relative; display: block; cursor: pointer;
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-lg);
  padding: 16px 18px; transition: border-color .2s, box-shadow .2s, background .2s;
}
.pay-opt:hover { border-color: var(--accent); }
.pay-opt.checked { border-color: var(--accent); background: var(--accent-super); box-shadow: 0 0 0 4px rgba(49,81,255,.08); }
.pay-opt input { position: absolute; opacity: 0; pointer-events: none; }
.pay-opt__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pay-opt__l { display: flex; align-items: center; gap: 12px; }
.pay-opt__radio { width: 20px; height: 20px; flex: none; border-radius: 50%; border: 2px solid var(--line-strong); display: grid; place-items: center; transition: border-color .2s; }
.pay-opt.checked .pay-opt__radio { border-color: var(--accent); }
.pay-opt__radio::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); transform: scale(0); transition: transform .2s; }
.pay-opt.checked .pay-opt__radio::after { transform: scale(1); }
.pay-opt__t { font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.pay-opt__d { font-size: 12.5px; color: var(--ink-soft); }
.pay-opt__save { font-size: 11.5px; font-weight: 800; color: var(--emerald); background: var(--emerald-soft); padding: 5px 10px; border-radius: 999px; flex: none; }
.pay-opt__price { text-align: right; }
.pay-opt__price .po-now { font-family: var(--font-head); font-weight: 700; font-size: 17px; }
.pay-opt__price .po-line { color: var(--ink-faint); text-decoration: line-through; font-size: 13px; }
.pay-opt__price .po-tag { font-size: 11px; color: var(--ink-faint); }

.co-summary .summary { position: static; }
.co-paynow {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 16px 20px; margin-top: 16px;
}
.co-paynow .lbl { font-size: 13px; color: #b7bdcc; }
.co-paynow .amt { font-family: var(--font-head); font-size: 22px; font-weight: 700; }

.co-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.co-badges span { display: flex; flex-direction: column; align-items: center; gap: 7px; text-align: center; font-size: 11.5px; font-weight: 700; color: var(--ink-2); background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 12px 8px; }
.co-badges svg { width: 19px; height: 19px; color: var(--emerald); }

/* payment processing overlay */
.overlay { position: fixed; inset: 0; z-index: 300; background: rgba(11,18,32,.6); backdrop-filter: blur(6px); display: none; place-items: center; }
.overlay.show { display: grid; animation: fadeIn .25s ease; }
.overlay__card { background: #fff; border-radius: var(--radius-xl); padding: 40px 34px; max-width: 380px; width: 90%; text-align: center; box-shadow: var(--shadow-lg); animation: pop .35s cubic-bezier(.16,1,.3,1); }
.spinner {
  width: 46px; height: 46px; border-radius: 50%;
  border: 4px solid var(--accent-soft); border-top-color: var(--accent);
  margin: 0 auto 20px; animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.overlay__card h3 { font-size: 20px; margin-bottom: 6px; }
.overlay__card p { color: var(--ink-soft); font-size: 14px; }

/* =====================================================================
   Confirmation
   ===================================================================== */
.conf-card { max-width: 720px; margin: 0 auto; }
.conf-hero { text-align: center; padding: clamp(36px, 5vw, 60px) clamp(20px, 4vw, 48px); }
.conf-check { width: 82px; height: 82px; margin: 0 auto 22px; border-radius: 50%; background: var(--emerald-soft); display: grid; place-items: center; animation: pop .5s cubic-bezier(.16,1,.3,1); }
.conf-check svg { width: 40px; height: 40px; color: var(--emerald); }
.conf-hero h1 { font-size: clamp(26px, 4.5vw, 36px); margin-bottom: 10px; }
.conf-hero p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto; }
.conf-id { display: inline-block; margin-top: 18px; font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: .08em; background: var(--accent-super); color: var(--accent); border: 1px dashed rgba(49,81,255,.4); padding: 10px 20px; border-radius: 12px; }

.conf-detail { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; padding: 0 clamp(20px, 4vw, 48px) 12px; }
.conf-detail .cd { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 14px 16px; }
.conf-detail .cd .lbl { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }
.conf-detail .cd .val { font-weight: 700; font-size: 15.5px; margin-top: 3px; }

.wa-notice {
  margin: 8px clamp(20px, 4vw, 48px) 0; background: #eaf9ee;
  border: 1px solid #bfeccb; border-radius: var(--radius-lg);
  padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start;
}
.wa-notice svg { width: 26px; height: 26px; color: #149a4c; flex: none; margin-top: 2px; }
.wa-notice b { font-size: 14.5px; }
.wa-notice p { font-size: 13px; color: #2c6b41; margin-top: 3px; }

.conf-foot { padding: 26px clamp(20px, 4vw, 48px) 40px; text-align: center; }
.conf-foot .btn { margin: 6px; }

/* =====================================================================
   Generic helpers
   ===================================================================== */
.stack-ic { display: inline-flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.hide { display: none !important; }

.row-rating { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; }
.row-rating .stars { font-size: 12.5px; letter-spacing: 1px; }

/* reveal stagger */
.stagger > * { opacity: 0; }
.stagger.in > * { animation: fadeUp .7s cubic-bezier(.16,1,.3,1) forwards; }
.stagger.in > *:nth-child(2) { animation-delay: .08s; }
.stagger.in > *:nth-child(3) { animation-delay: .16s; }
.stagger.in > *:nth-child(4) { animation-delay: .24s; }
.stagger.in > *:nth-child(5) { animation-delay: .32s; }