/* ==========================================================
   Panthro Digital — Design Tokens (v3: Charcoal & Gold, flat/professional)
========================================================== */
:root {
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --ink: #111827;
  --ink-soft: #667085;
  --line: #E4E7EC;

  --header: #111827;      /* charcoal — header / footer / hero surface */
  --header-line: #1F2937;
  --on-dark: #9CA3AF;     /* secondary text on dark surfaces */
  --on-dark-dim: #6B7280; /* dimmer text on dark surfaces */

  --primary: #F2B705;     /* gold-yellow — CTAs, buttons, active states */
  --primary-dark: #A6790A; /* readable dark-gold for text/hover, dark enough for contrast on white */
  --primary-tint: #FFF8E1;
  --primary-tint-hover: #FFEFC2;

  --accent: #F2B705;       /* same color as --primary: one primary color, used consistently */
  --accent-dark: #A6790A;
  --accent-tint: #FFF8E1;

  --full: #22C55E;
  --full-bg: #EAFBF1;
  --limited: #C2410C;
  --limited-bg: #FFF3E8;

  --danger: #DC2626;

  --radius-sm: 8px;
  --radius-btn: 10px;
  --radius: 14px;
  --radius-lg: 20px;

  --shadow: 0 1px 3px rgba(17, 24, 39, 0.06);
  --shadow-lift: 0 8px 20px rgba(17, 24, 39, 0.10);

  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
p { margin: 0; line-height: 1.6; color: var(--ink-soft); }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition: none !important; }
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.section { padding: 48px 0; }
.section-head { margin-bottom: 24px; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: block;
  margin-bottom: 6px;
}
.section-head h2 { font-size: clamp(22px, 4vw, 30px); }

/* ---------- Header ---------- */
.site-header {
  background: var(--header);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--header-line);
}
.site-header .container {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  height: 66px;
  gap: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  justify-self: center;
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--header);
  flex-shrink: 0;
}
.brand small { color: var(--accent); font-weight: 500; margin-left: 1px; }

.nav-toggle {
  display: flex;
  justify-self: start;
  background: none; border: none; color: #fff;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 20px; height: 2px; background: #fff;
  position: relative; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span { margin: 5px 0; }
.nav-toggle.is-open span { opacity: 0; }
.nav-toggle.is-open::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open::after { transform: translateY(-7px) rotate(-45deg); }

.nav-cart-icon {
  justify-self: end;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav-cart-icon.is-active { background: var(--accent); }
.nav-cart-icon.is-active svg { stroke: var(--header); }
.nav-cart-icon .badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--accent);
  color: var(--header);
  font-family: var(--font-mono);
  font-size: 10.5px;
  min-width: 17px; height: 17px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  font-weight: 700;
  border: 2px solid var(--header);
}
.nav-cart-icon.is-active .badge { border-color: var(--accent); background: var(--header); color: #fff; }

.main-nav {
  position: fixed; inset: 66px 0 auto 0;
  background: var(--header);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 10px 20px 20px;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .18s ease, opacity .18s ease;
  border-bottom: 1px solid var(--header-line);
  z-index: 39;
}
.main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.main-nav a {
  font-size: 14.5px;
  color: var(--on-dark);
  transition: color .15s ease;
  padding: 12px 6px;
  border-bottom: 1px solid var(--header-line);
}
.main-nav a:hover, .main-nav a.is-active { color: #fff; }

.breadcrumbs {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 16px 0 0;
}
.breadcrumbs a { color: var(--primary); }
.breadcrumbs span { padding: 0 6px; color: #98A2B3; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 14.5px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--header); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; box-shadow: var(--shadow-lift); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-dark { background: var(--header); color: #fff; }
.btn-dark:hover { background: var(--header-line); }
.btn-block { width: 100%; }
.btn-ghost { background: var(--primary-tint); color: var(--primary-dark); }
.btn-ghost:hover { background: var(--primary-tint-hover); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---------- Hero (home) ---------- */
.hero {
  background: var(--header);
  color: #fff;
  padding: 52px 0 44px;
}
.hero-inner { max-width: 640px; }
.hero .eyebrow { color: var(--primary); }
.hero h1 { font-size: clamp(28px, 6vw, 42px); color: #fff; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p.lead { color: var(--on-dark); margin-top: 14px; font-size: 16px; max-width: 480px; }
.hero-ctas { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.trust-row {
  display: flex; gap: 22px; flex-wrap: wrap;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--header-line);
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--on-dark); }
.trust-item .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); flex-shrink: 0; }

/* ---------- Marquee (app strip) ---------- */
.marquee-wrap {
  background: var(--header-line);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 26s linear infinite;
}
.marquee-item {
  padding: 12px 30px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--on-dark);
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.08);
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Category tiles (home) ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cat-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.cat-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--primary); }
.cat-tile .cat-icon {
  width: 42px; height: 42px; margin-bottom: 14px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #fff;
  font-size: 15px;
}
.cat-tile h4 { font-size: 15.5px; margin-bottom: 4px; }
.cat-tile p { font-size: 13px; }
.cat-tile .soon-tag {
  display: inline-block; margin-top: 10px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .05em;
  background: var(--accent-tint); color: var(--accent-dark);
  padding: 3px 8px; border-radius: 999px;
}
@media (max-width: 640px) { .cat-grid { grid-template-columns: 1fr; } }

/* ---------- Category tabs (products page) ---------- */
.tab-row { display: flex; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }
.tab-btn {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-btn);
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}
.tab-btn.is-active { background: var(--header); border-color: var(--header); color: #fff; }
.empty-category {
  text-align: center;
  padding: 56px 20px;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}
.empty-category .cat-icon {
  width: 52px; height: 52px; border-radius: 12px; margin: 0 auto 16px;
  background: var(--primary-tint); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}

/* ---------- Product grid & card ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-media { height: 108px; }
  .product-media .cat-pill { font-size: 8.5px; padding: 3px 7px; top: 8px; left: 8px; }
  .product-media .media-fallback span { width: 38px; height: 38px; font-size: 15px; }
  .product-body { padding: 10px 10px 12px; gap: 6px; }
  .product-body h3 { font-size: 12.5px; line-height: 1.3; }
  .product-body .desc-line { display: none; }
  .pill-row .pill { font-size: 8.5px; padding: 3px 7px; }
  .price { font-size: 15px; }
  .mrp { font-size: 10.5px; }
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--primary); }
.product-media {
  height: 160px;
  position: relative;
  background: var(--header);
  overflow: hidden;
}
.product-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-media .cat-pill {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(17,24,39,0.75);
  color: #fff;
  font-size: 10.5px; letter-spacing: 0.05em;
  padding: 4px 9px; border-radius: 999px;
  font-family: var(--font-mono);
}
.product-media .media-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.product-media .media-fallback span {
  width: 54px; height: 54px; border-radius: 12px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
}
.product-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-body h3 { font-size: 15.5px; }
.product-body .desc-line { font-size: 13px; }
.pill-row { display: flex; gap: 6px; flex-wrap: wrap; }
.pill {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.02em;
  padding: 4px 9px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 4px;
}
.pill-full { background: var(--full-bg); color: var(--full); }
.pill-limited { background: var(--limited-bg); color: var(--limited); }
.pill-device { background: var(--bg); color: var(--ink-soft); border: 1px solid var(--line); }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.price { font-family: var(--font-mono); font-size: 20px; font-weight: 700; color: var(--primary-dark); }
.mrp { font-family: var(--font-mono); font-size: 13px; color: #98A2B3; text-decoration: line-through; }
.plan-count-pill {
  background: var(--accent-tint); color: var(--accent-dark);
  border: none;
}
.from-price-label { font-size: 11px; color: var(--ink-soft); font-weight: 500; margin-right: 2px; }

/* ---------- Plan (variant) picker on the product page ---------- */
.variant-row { margin: 16px 0 6px; }
.variant-row .variant-row-title { font-size: 13px; font-weight: 600; display: block; margin-bottom: 9px; }
.variant-options { display: flex; flex-wrap: wrap; gap: 9px; }
.variant-opt {
  border: 1.5px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-btn);
  padding: 9px 15px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 3px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color .15s ease, background .15s ease;
  position: relative;
}
.variant-opt .variant-opt-name { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.variant-opt .variant-opt-price { font-family: var(--font-mono); font-size: 13.5px; color: var(--ink-soft); }
.variant-opt.is-active { border-color: var(--primary); background: var(--primary-tint); }
.variant-opt.is-active .variant-opt-price { color: var(--primary); }
.variant-opt .variant-opt-tag {
  position: absolute; top: -9px; right: 8px;
  background: var(--accent); color: var(--header);
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .03em;
  padding: 2px 7px; border-radius: 999px;
}

/* ---------- Feature chips (e.g. "Netflix UHD 4K", "5 device connection") ---------- */
.feature-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 2px; }
.feature-chip {
  background: var(--primary-tint); color: var(--primary);
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  padding: 6px 11px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 5px;
}
.feature-chip.chip-highlight { background: var(--accent-tint); color: var(--accent-dark); }

/* ---------- Search bar ---------- */
.search-bar {
  display: flex; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  padding: 6px 6px 6px 18px;
  align-items: center;
  box-shadow: var(--shadow);
}
.search-bar input {
  flex: 1; border: none; outline: none; font-size: 14.5px; background: transparent;
  font-family: var(--font-body); color: var(--ink);
}
.search-bar button {
  background: var(--header); color: #fff; border: none;
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ---------- Product detail ---------- */
.pdp-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: start; }
@media (max-width: 800px) { .pdp-grid { grid-template-columns: 1fr; } }
.pdp-media {
  border-radius: var(--radius-lg);
  min-height: 300px;
  position: relative;
  overflow: hidden;
  background: var(--header);
}
.pdp-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pdp-media .media-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.pdp-media .media-fallback span {
  width: 84px; height: 84px; border-radius: 18px;
  background: rgba(255,255,255,0.14); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 30px;
}
.pdp-info h1 { font-size: clamp(22px, 4vw, 28px); margin-bottom: 10px; }
.pdp-summary { font-size: 15px; margin-bottom: 16px; }
.about-box, .rules-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 18px 0;
}
.about-box h4, .rules-box h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); margin-bottom: 10px; }
.about-box p { font-size: 14.5px; color: var(--ink-soft); }
.rules-box ul { margin: 0; padding-left: 18px; }
.rules-box li { font-size: 14px; color: var(--ink-soft); margin-bottom: 8px; line-height: 1.5; }
.rules-box li:last-child { margin-bottom: 0; }
.qty-row { display: flex; align-items: center; gap: 14px; margin: 18px 0; }
.qty-stepper { display: flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-btn); overflow: hidden; }
.qty-stepper button { width: 38px; height: 38px; background: var(--bg); border: none; font-size: 18px; }
.qty-stepper input { width: 42px; text-align: center; border: none; font-family: var(--font-mono); font-size: 15px; }
.pdp-price-line { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.pdp-price-line .price { font-size: 28px; }
.delivery-note { font-size: 13.5px; color: var(--primary-dark); background: var(--primary-tint); padding: 10px 14px; border-radius: var(--radius-sm); margin-top: 14px; }

/* ---------- Cart page ---------- */
.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto auto auto;
  gap: 14px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 12px;
}
.cart-line .swatch { width: 56px; height: 56px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-display); font-weight: 700; background: var(--header); overflow: hidden; position: relative; }
.cart-line .swatch img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cart-line h4 { font-size: 14.5px; margin-bottom: 4px; }
.cart-line .line-price { font-family: var(--font-mono); font-weight: 700; }
.cart-line .remove-btn { background: none; border: none; color: var(--danger); font-size: 13px; font-weight: 600; }
@media (max-width: 640px) {
  .cart-line { grid-template-columns: 48px 1fr; grid-template-areas: "img name" "img qty" "img price"; }
  .cart-line .swatch { grid-area: img; }
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}
.cart-empty .cat-icon { width: 60px; height: 60px; border-radius: 14px; margin: 0 auto 18px; background: var(--primary-tint); color: var(--primary); display:flex; align-items:center; justify-content:center; font-size: 26px; }
.summary-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 86px;
}
.summary-row { display: flex; justify-content: space-between; font-size: 14.5px; padding: 8px 0; color: var(--ink-soft); }
.summary-row.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; font-weight: 700; color: var(--ink); font-size: 17px; }
.summary-row.total .amount { font-family: var(--font-mono); }

/* ---------- Forms (checkout) ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13.5px; font-weight: 600; }
.field input {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .15s ease;
}
.field input:focus { border-color: var(--primary); }
.field .error { color: var(--danger); font-size: 12.5px; display: none; }
.field.has-error input { border-color: var(--danger); }
.field.has-error .error { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--header); color: var(--on-dark); margin-top: 60px; }
.footer-top { padding: 44px 0 28px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
@media (max-width: 700px) { .footer-top { grid-template-columns: 1fr; } }
.footer-top h5 { color: #fff; font-size: 13.5px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer-top ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-top a { font-size: 14px; color: var(--on-dark); }
.footer-top a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--header-line);
  padding: 16px 0;
  font-size: 12.5px;
  color: var(--on-dark-dim);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 50;
  width: 56px; height: 56px; border-radius: 999px;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- Thank you page ---------- */
.ty-box {
  max-width: 560px; margin: 40px auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
}
.ty-icon {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--full-bg); color: var(--full);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 28px;
}
.ty-order-id { font-family: var(--font-mono); background: var(--bg); padding: 10px 14px; border-radius: var(--radius-sm); font-size: 13.5px; margin: 16px 0; }
.steps-list { text-align: left; margin: 22px 0; padding: 0; list-style: none; counter-reset: step; }
.steps-list li { counter-increment: step; padding-left: 34px; position: relative; margin-bottom: 14px; font-size: 14.5px; color: var(--ink-soft); }
.steps-list li::before {
  content: counter(step);
  position: absolute; left: 0; top: -1px;
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--primary-tint); color: var(--primary-dark);
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ==========================================================
   Legal pages — Terms & Conditions / Refund Policy
========================================================== */
.legal-wrap { max-width: 780px; margin: 0 auto; }
.legal-wrap .updated-pill {
  display: inline-block; font-family: var(--font-mono); font-size: 12px;
  background: var(--primary-tint); color: var(--primary-dark);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 18px;
}
.legal-wrap > h1 { font-size: clamp(26px, 5vw, 34px); margin-bottom: 10px; }
.legal-wrap .legal-intro { color: var(--ink-soft); font-size: 15px; line-height: 1.7; margin-bottom: 26px; }
.legal-toc {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; margin-bottom: 34px; box-shadow: var(--shadow);
}
.legal-toc h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: 10px; }
.legal-toc ol { margin: 0; padding-left: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px; }
@media (max-width: 640px) { .legal-toc ol { grid-template-columns: 1fr; } }
.legal-toc a { font-size: 13.5px; color: var(--primary); }
.legal-toc a:hover { color: var(--accent-dark); }
.legal-section { padding-top: 30px; margin-top: 6px; border-top: 1px solid var(--line); scroll-margin-top: 90px; }
.legal-section:first-of-type { border-top: none; }
.legal-section h2 {
  font-size: 19px; margin-bottom: 12px; display: flex; align-items: baseline; gap: 10px;
}
.legal-section h2 .num { font-family: var(--font-mono); color: var(--accent-dark); font-size: 14px; }
.legal-section h3 { font-size: 14.5px; color: var(--primary-dark); margin: 16px 0 6px; }
.legal-section p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.75; margin-bottom: 10px; }
.legal-section ul, .legal-section ol.plain { margin: 6px 0 14px; padding-left: 20px; display: flex; flex-direction: column; gap: 7px; }
.legal-section li { color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; }
.legal-note {
  background: var(--primary-tint); border: 1px solid #DCD9FF; border-radius: var(--radius-sm);
  padding: 14px 16px; font-size: 13.5px; color: var(--ink-soft); margin: 14px 0;
}
.legal-note strong { color: var(--ink); }
.legal-contact-box {
  background: var(--header); color: var(--on-dark); border-radius: var(--radius);
  padding: 26px 26px; margin-top: 40px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; align-items: center;
}
.legal-contact-box h3 { color: #fff; font-size: 16.5px; margin-bottom: 4px; }
.legal-contact-box p { color: var(--on-dark); font-size: 13.5px; margin: 0; }
.legal-contact-box .btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-bottom a { color: var(--on-dark); }
.footer-bottom a:hover { color: #fff; }

/* ==========================================================
   UPI direct-payment panel (checkout)
========================================================== */
.is-hidden { display: none !important; }
.upi-panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 22px 26px;
}
.upi-qr-wrap { display: flex; justify-content: center; padding: 14px 0 18px; }
.upi-qr {
  width: 190px; height: 190px; display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.upi-qr canvas { display: block; }
.upi-detail-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-top: 1px solid var(--line); font-size: 14px; color: var(--ink-soft);
}
.upi-detail-row strong { color: var(--ink); font-family: var(--font-mono); }

/* ==========================================================
   Panthro Digital — Fresh Light Blue / Pink Theme
   Inspired by the supplied OTT promotional artwork.
========================================================== */
:root {
  --bg: #F6FAFF;
  --surface: #FFFFFF;
  --ink: #10224A;
  --ink-soft: #52627D;
  --line: #D9E4F2;

  --header: #FFFFFF;
  --header-line: #D9E4F2;
  --on-dark: #52627D;
  --on-dark-dim: #71809A;

  --primary: #2477E8;
  --primary-dark: #1555B5;
  --primary-tint: #EAF3FF;
  --primary-tint-hover: #DCEBFF;

  --accent: #E51A91;
  --accent-dark: #B80F72;
  --accent-tint: #FDEAF5;

  --full: #12A879;
  --full-bg: #E8F8F2;
  --limited: #D97706;
  --limited-bg: #FFF5E6;
  --danger: #DC2626;

  --shadow: 0 2px 8px rgba(35, 86, 145, 0.08);
  --shadow-lift: 0 12px 28px rgba(35, 86, 145, 0.14);
}

.site-header {
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  border-bottom: 1px solid var(--header-line);
  box-shadow: 0 2px 12px rgba(35,86,145,.06);
}
.brand { color: var(--ink); }
.brand-mark { background: linear-gradient(135deg, #2477E8, #E51A91); color: #fff; }
.menu-btn { color: var(--ink); }
.menu-btn::before, .menu-btn::after { background: var(--ink); }
.nav-cart-icon { color: var(--ink); }
.nav-cart-icon.is-active { background: var(--primary-tint); }
.nav-cart-icon.is-active .badge { border-color: var(--primary); background: var(--primary); color: #fff; }

.btn-primary { background: linear-gradient(135deg, #2477E8, #1764D0); color: #fff; }
.btn-primary:hover { background: linear-gradient(135deg, #1555B5, #C7147C); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #1C376B; }
.btn-ghost { background: var(--primary-tint); color: var(--primary-dark); }
.btn-ghost:hover { background: var(--primary-tint-hover); }

.hero {
  background: linear-gradient(135deg, #F8FCFF 0%, #EEF6FF 58%, #FFF1FA 100%);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.hero .eyebrow { color: var(--primary); }
.hero h1 { color: var(--ink); }
.hero h1 em { color: var(--accent); }
.hero p.lead { color: var(--ink-soft); }
.hero .btn-outline { border-color: #B9CBE2; color: var(--ink); }
.hero .btn-outline:hover { background: #EAF3FF; }
.trust-item .dot { background: var(--accent); }

.marquee { background: linear-gradient(90deg, #1764D0, #7A35D6, #E51A91); color: #fff; }
.tab-btn.is-active { background: var(--primary); border-color: var(--primary); color: #fff; }

.category-tile:hover { border-color: var(--primary); box-shadow: var(--shadow-lift); }
.category-tile .cat-icon { background: var(--accent-tint); color: var(--accent-dark); }

.product-media { background: linear-gradient(135deg, #EAF3FF, #FDEAF5); }
.product-media .cat-pill { background: rgba(16,34,74,.82); }
.product-card:hover { border-color: var(--primary); }
.price { color: var(--primary-dark); }
.variant-opt.is-active { border-color: var(--primary); background: var(--primary-tint); }
.variant-opt .price { color: var(--primary-dark); }
.feature-chip { background: var(--primary-tint); color: var(--primary-dark); }
.feature-chip.chip-highlight { background: var(--accent-tint); color: var(--accent-dark); }
.search-btn { background: var(--primary); color: #fff; }
.pdp-media { background: linear-gradient(135deg, #EAF3FF, #FDEAF5); }
.delivery-note { color: var(--primary-dark); background: var(--primary-tint); }

.site-footer {
  background: linear-gradient(135deg, #10224A, #173D7A);
  color: #DCE8F7;
}
.site-footer .footer-top h5 { color: #fff; }
.site-footer .footer-top a { color: #C9D8EB; }
.site-footer .footer-top a:hover { color: #fff; }
.footer-bottom { border-top-color: rgba(255,255,255,.14); color: #AFC2DA; }

.legal-contact-box { background: linear-gradient(135deg, #10224A, #244D91); }
.legal-note { background: #EEF6FF; border-color: #CFE0F5; }

.wa-float { box-shadow: 0 10px 26px rgba(16,34,74,.22); }

/* ==========================================================
   PANTHRO DIGITAL — FINAL LIGHT BLUE + PINK OVERRIDES
   High-priority theme layer based on supplied OTT artwork.
========================================================== */
:root {
  --bg: #F7FBFF !important;
  --surface: #FFFFFF !important;
  --ink: #10224A !important;
  --ink-soft: #52627D !important;
  --line: #D9E4F2 !important;
  --header: #FFFFFF !important;
  --header-line: #D9E4F2 !important;
  --primary: #2477E8 !important;
  --primary-dark: #1555B5 !important;
  --primary-tint: #EAF3FF !important;
  --primary-tint-hover: #DCEBFF !important;
  --accent: #E51A91 !important;
  --accent-dark: #B80F72 !important;
  --accent-tint: #FDEAF5 !important;
}

html, body { background: #F7FBFF !important; color: #10224A !important; }
body { background-image: radial-gradient(circle at 8% 5%, rgba(36,119,232,.06), transparent 28%), radial-gradient(circle at 92% 18%, rgba(229,26,145,.06), transparent 30%) !important; }
.site-header { background: #FFFFFF !important; color: #10224A !important; border-bottom: 1px solid #D9E4F2 !important; box-shadow: 0 3px 14px rgba(35,86,145,.08) !important; }
.brand { color: #10224A !important; }
.brand small { color: #E51A91 !important; }
.brand-mark { background: linear-gradient(135deg,#2477E8,#E51A91) !important; color:#fff !important; }
.nav-toggle { color:#10224A !important; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { background:#10224A !important; }
.nav-cart-icon { background:#EAF3FF !important; color:#10224A !important; }
.nav-cart-icon.is-active { background:#2477E8 !important; color:#fff !important; }
.nav-cart-icon.is-active svg { stroke:#fff !important; }
.main-nav { background:#FFFFFF !important; border-color:#D9E4F2 !important; }
.main-nav a { color:#52627D !important; }
.main-nav a:hover, .main-nav a.is-active { color:#2477E8 !important; }

.hero { background: linear-gradient(135deg,#FFFFFF 0%,#EEF6FF 60%,#FFF1FA 100%) !important; color:#10224A !important; border-bottom:1px solid #D9E4F2 !important; }
.hero h1 { color:#10224A !important; }
.hero h1 em { color:#E51A91 !important; }
.hero p.lead { color:#52627D !important; }

.btn-primary { background:linear-gradient(135deg,#2477E8,#1764D0) !important; color:#fff !important; border-color:#2477E8 !important; }
.btn-primary:hover { background:linear-gradient(135deg,#1555B5,#E51A91) !important; }
.btn-dark { background:#10224A !important; color:#fff !important; }
.btn-ghost { background:#EAF3FF !important; color:#1555B5 !important; }

.marquee { background:linear-gradient(90deg,#2477E8,#7A35D6,#E51A91) !important; color:#fff !important; }
.tab-btn.is-active { background:#2477E8 !important; border-color:#2477E8 !important; color:#fff !important; }
.category-tile, .product-card, .upi-panel, .cart-line, .cart-empty { background:#FFFFFF !important; border-color:#D9E4F2 !important; }
.category-tile:hover, .product-card:hover { border-color:#2477E8 !important; box-shadow:0 12px 28px rgba(35,86,145,.14) !important; }
.category-tile .cat-icon { background:#FDEAF5 !important; color:#B80F72 !important; }
.product-media, .pdp-media { background:linear-gradient(135deg,#EAF3FF,#FDEAF5) !important; }
.product-media .cat-pill { background:rgba(16,34,74,.82) !important; color:#fff !important; }
.price { color:#1555B5 !important; }
.variant-opt.is-active { border-color:#2477E8 !important; background:#EAF3FF !important; }
.feature-chip { background:#EAF3FF !important; color:#1555B5 !important; }
.feature-chip.chip-highlight { background:#FDEAF5 !important; color:#B80F72 !important; }
.search-btn { background:#2477E8 !important; color:#fff !important; }
.delivery-note { color:#1555B5 !important; background:#EAF3FF !important; }
.upi-qr { background:#fff !important; border-color:#D9E4F2 !important; }
.upi-detail-row { border-color:#D9E4F2 !important; }

.site-footer { background:linear-gradient(135deg,#10224A,#173D7A) !important; color:#DCE8F7 !important; }
.legal-contact-box { background:linear-gradient(135deg,#10224A,#244D91) !important; }
.legal-note { background:#EEF6FF !important; border-color:#CFE0F5 !important; }


/* Related product recommendations on product detail pages */
.related-products { margin-top: 48px; padding-top: 34px; border-top: 1px solid #D9E4F2; }
.related-heading { display:flex; align-items:flex-end; justify-content:space-between; gap:20px; margin-bottom:20px; }
.related-heading h2 { margin:0; font-size:28px; color:#10224A; }
.related-heading p:not(.related-kicker) { margin:6px 0 0; color:#52627D; font-size:14px; }
.related-kicker { margin:0 0 5px; color:#E51A91; font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.related-grid { grid-template-columns:repeat(4,1fr); }
.related-card { text-decoration:none; color:inherit; }
.related-card .product-media { height:145px; }
.related-card .product-body { padding:14px; }
.related-card .product-body h3 { font-size:15px; }
.related-card .desc-line { min-height:38px; }
.related-btn { margin-top:10px; text-align:center; }
@media (max-width:900px) { .related-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px) { .related-products { margin-top:34px; padding-top:26px; } .related-heading { align-items:flex-start; flex-direction:column; } .related-heading h2 { font-size:23px; } .related-heading .btn { width:100%; text-align:center; } .related-grid { grid-template-columns:repeat(2,1fr); gap:10px; } .related-card .product-media { height:110px; } .related-card .product-body { padding:10px; } .related-card .product-body h3 { font-size:12.5px; } .related-card .desc-line { display:none; } }
