/* Retailer's Club India — mobile-first landing styles.
   No frameworks, no animation libraries. */

:root {
  --ink: #17233e;
  --ink-2: #0d1830;
  --ink-soft: #24304d;
  --ink-cta: #172b50;
  --paper: #ffffff;
  --paper-2: #f7f8fa;
  --line: #e3e6ec;
  --text: #101827;
  --muted: #5d6b82;
  --muted-dark: #a7b4c9;
  --teal: #42c7bd;
  --teal-dark: #2fa9a0;
  --gold: #e8551c;
  --orange: #e8551c;
  --whatsapp: #25d366;
  --radius: 18px;
  --radius-lg: 24px;
  --wrap: 1120px;
  --shadow: 0 8px 24px rgba(16, 24, 39, 0.08);
}


* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 18px; }
p { margin: 0 0 14px; }
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 18px;
}

.section { padding: 34px 0; }
.section--dark { background: var(--ink); color: #fff; }
.section--soft { background: var(--paper-2); }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 10px;
}
.section--dark .eyebrow { color: var(--teal); }

.lead { color: var(--muted); font-size: 15px; }
.section--dark .lead { color: var(--muted-dark); }

.center { text-align: center; }

/* ---------- Announcement / trust bar ---------- */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 9px 14px;
  letter-spacing: 0.01em;
}
.topbar span { color: var(--teal); }

.brandbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
}
.brandbar .mark {
  width: 30px; height: 30px; flex: 0 0 30px;
  border-radius: 9px;
  background: var(--ink);
  color: var(--teal);
  display: grid; place-items: center;
  font-family: "Archivo", sans-serif;
  font-weight: 900; font-size: 14px;
}
.brandbar .name {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
}

/* ---------- Buttons ---------- */
.btn {
  display: block;
  width: 100%;
  border: 0;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 16px 20px;
  border-radius: 14px;
  min-height: 52px;
  transition: transform 0.12s ease, background-color 0.12s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--teal); color: #04231a; }
.btn--primary:hover { background: var(--teal-dark); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--orange { background: var(--orange); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.28); }
.btn--wa { background: var(--whatsapp); color: #04250f; }

/* ---------- Hero ---------- */
.hero { padding: 26px 0 8px; }
.hero h1 { font-size: 30px; }
.hero h1 em { font-style: normal; color: var(--teal-dark); }
.hero .kicker {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
}
.hero .subline { font-size: 14px; color: var(--muted); font-weight: 600; }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 14px 0 4px;
}
.pill {
  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  color: var(--muted);
}
.section--dark .pill { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: #dbe3ef; }

/* ---------- Placeholders ---------- */
.ph {
  position: relative;
  border: 1.5px dashed #c8cee0;
  background:
    repeating-linear-gradient(135deg, #f7f8fc 0 12px, #f1f3fa 12px 24px);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  color: var(--muted);
}
.ph__label {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ph__hint { font-size: 12px; margin-top: 6px; color: #8593ab; }
.ph--video { aspect-ratio: 16 / 9; }
.ph--square { aspect-ratio: 1 / 1; }
.ph--chat { aspect-ratio: 3 / 4; }
.ph--table { min-height: 240px; }
.ph--dark {
  border-color: rgba(255,255,255,0.22);
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 12px, rgba(255,255,255,0.02) 12px 24px);
  color: #cdd7e6;
}
.ph--dark .ph__hint { color: #8fa0b8; }
.play {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  margin-bottom: 10px; font-size: 18px;
}

/* ---------- Rails ---------- */
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88%;
  align-items: start;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.rail > * { scroll-snap-align: center; }
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: #d7dce8; border-radius: 6px; }

/* ---------- Membership ---------- */
.plans { display: grid; gap: 16px; margin-top: 18px; }

.plan {
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  color: #fff;
  position: relative;
}
.plan--featured {
  background: var(--paper);
  border-color: var(--teal);
  color: var(--text);
  box-shadow: 0 0 0 2px rgba(66, 199, 189, 0.25);
}
.plan__tag {
  position: absolute;
  top: -11px;
  left: 18px;
  background: var(--teal);
  color: #04231a;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 5px 10px;
  border-radius: 999px;
}
.plan__tag--gold { background: var(--teal); color: #04231a; }
.plan__tag--muted { background: rgba(255,255,255,0.16); color: #e7edf7; }
.plan__price {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  margin: 10px 0 4px;
}
.plan__period { font-size: 13px; font-weight: 700; color: var(--muted-dark); }
.plan__note { font-size: 12px; color: var(--teal); font-weight: 700; margin-top: 2px; }
.plan__renew { font-size: 11px; color: #8fa0b8; margin: 10px 0 14px; }
.plan ul { list-style: none; padding: 0; margin: 12px 0 16px; }
.plan li {
  font-size: 13px;
  color: #dbe3ef;
  padding-left: 20px;
  position: relative;
  margin-bottom: 7px;
}
.plan li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--teal); font-weight: 800;
}

.disclaimer {
  font-size: 11.5px;
  color: #8fa0b8;
  margin-top: 18px;
  line-height: 1.6;
}
.disclaimer a { color: #cdd7e6; }

/* ---------- Value check ---------- */
.valuecard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  box-shadow: var(--shadow);
  text-align: center;
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; margin-top: 16px; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 16px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 26px 15px 0;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 12px;
  font-size: 20px; color: var(--teal-dark); font-weight: 700;
}
.faq details[open] summary::after { content: "–"; }
.faq p { font-size: 14px; color: var(--muted); padding-bottom: 14px; margin: 0; }

/* ---------- Final CTA + footer ---------- */
.final { background: var(--ink-cta); color: #fff; }
.plan--featured .plan__period,
.plan--featured .plan__renew { color: var(--muted); }
.plan--featured li { color: var(--text); }
.plan--featured .plan__note { color: var(--teal-dark); }
.checklist { list-style: none; padding: 0; margin: 16px 0; display: grid; gap: 8px; }
.checklist li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 13.5px;
  font-weight: 600;
}

.footer { background: #0d1830; color: #8fa0b8; font-size: 12px; padding: 26px 0 92px; }
.footer a { color: #cdd7e6; text-decoration: none; }
.footer .links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 12px 0; }
.footer .fine { line-height: 1.7; margin-top: 12px; }

/* ---------- Sticky CTA ---------- */
.sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(23, 35, 62, 0.96);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  z-index: 40;
}
.sticky .btn { max-width: 460px; margin: 0 auto; }

/* ---------- Modal ---------- */
.modal[hidden] { display: none; }
.modal {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(7, 12, 22, 0.7);
  display: grid; place-items: end center;
  padding: 0;
}
.modal__card {
  background: #fff;
  width: 100%;
  max-width: 460px;
  border-radius: 20px 20px 0 0;
  padding: 20px 18px calc(20px + env(safe-area-inset-bottom));
}
.modal__card h3 { margin-bottom: 4px; }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 5px; }
.field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  font-size: 16px;
  background: var(--paper-2);
}
.field input:focus { outline: 2px solid rgba(0,196,140,0.4); background: #fff; }
.modal__meta { font-size: 12px; color: var(--muted); margin-top: 10px; text-align: center; }
.modal__close {
  background: none; border: 0; color: var(--muted);
  font-size: 13px; padding: 10px; width: 100%; cursor: pointer;
}
.formerror { color: #c0392b; font-size: 13px; font-weight: 600; margin: 0 0 8px; }

/* ---------- Thank you page ---------- */
.status {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px 20px;
  text-align: center;
}
.status__icon { font-size: 40px; margin-bottom: 8px; }
.spinner {
  width: 34px; height: 34px; margin: 0 auto 14px;
  border: 3px solid var(--line);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; color: var(--muted); word-break: break-all; }

/* ---------- Desktop ---------- */
@media (min-width: 768px) {
  body { font-size: 17px; }
  .section { padding: 60px 0; }
  h1 { font-size: 46px; }
  .hero h1 { font-size: 48px; }
  h2 { font-size: 34px; }
  .hero { padding: 48px 0 12px; }
  .lead { font-size: 17px; max-width: 700px; margin-left: auto; margin-right: auto; }
  .wrap { padding: 0 28px; }
  .ph--video { max-width: 860px; margin: 0 auto; }
  .rail {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    overflow: visible;
  }
  .plans { grid-template-columns: repeat(3, 1fr); align-items: start; gap: 20px; }
  .plan--featured { transform: translateY(-10px); }
  .btn { display: inline-block; width: auto; min-width: 260px; }
  .plan .btn { display: block; width: 100%; }
  .checklist { grid-template-columns: repeat(3, 1fr); }
  .disclaimer { max-width: 800px; margin-left: auto; margin-right: auto; text-align: center; }
  .valuecard { max-width: 760px; margin: 0 auto; padding: 34px; }
  .faq { grid-template-columns: repeat(2, 1fr); gap: 14px; align-content: start; }
  .footer { padding-bottom: 34px; }
  .sticky { display: none; }
  .modal { place-items: center; }
  .modal__card { border-radius: 20px; }
}

@media (min-width: 1024px) {
  .ph--table { min-height: 380px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .spinner { animation-duration: 3s; }
}

/* ---------- Media: video, community shots, manufacturer table ---------- */
.brandbar__logo { width: 40px; height: 40px; object-fit: contain; }
.videobox {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: var(--shadow);
  max-width: 860px;
  margin: 0 auto;
}
.videobox--vertical { aspect-ratio: 9 / 16; max-width: 340px; }
@media (min-width: 900px) { .videobox--vertical { max-width: 380px; } }

.videobox iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.shot {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: var(--shadow);
  display: block;
}
.shot img { display: block; width: 100%; height: auto; }

.tableshot {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: auto;
  background: var(--paper);
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
  max-height: 78vh;
}
.tableshot img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: 0 0;
  transition: width .15s ease;
}
.zoombar {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 0 0 10px;
}
.zoombar button {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 18px; font-weight: 700;
  cursor: pointer;
}
.zoombar button:active { transform: scale(.96); }
.zoombar span { font-size: 13px; color: var(--muted); min-width: 52px; text-align: center; }



.footer__logo { width: 54px; height: 54px; object-fit: contain; margin: 0 auto 8px; }

@media (min-width: 768px) {
  .brandbar__logo { width: 46px; height: 46px; }
}


/* ---------- FOMO offer bar + countdown ---------- */
.offerbar {
  position: sticky; top: 0; z-index: 60;
  background: var(--gold, #E8551C);
  color: #fff;
  text-align: center;
  padding: 6px 12px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .2px;
  display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap;
  line-height: 1.3;
}
.offerbar__timer {
  background: rgba(0,0,0,.22);
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.fomo {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin: 14px 0 2px;
}
.fomo__chip {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12.5px; font-weight: 600;
}
.section--soft .fomo__chip, .section:not(.section--dark):not(.final) .fomo__chip {
  background: #fff; border-color: var(--line); color: var(--ink);
}
.fomo__dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #35d07f; margin-right: 6px; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }

.zoomhint {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--muted);
}

/* ---------- Lightbox ---------- */
body.lb-open { overflow: hidden; }
.lb {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(9, 14, 26, .96);
  display: flex; flex-direction: column;
}
.lb[hidden] { display: none; }
.lb__bar {
  display: flex; align-items: center; justify-content: flex-end; gap: 8px;
  padding: 10px 12px; padding-top: max(10px, env(safe-area-inset-top));
}
.lb__level { color: #fff; font-size: 13px; font-weight: 700; margin-right: auto; opacity: .85; font-variant-numeric: tabular-nums; }
.lb__btn {
  min-width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: #fff; font-size: 20px; font-weight: 700;
  cursor: pointer;
}
.lb__btn--wide { min-width: auto; padding: 0 14px; font-size: 13px; }
.lb__btn--close { font-size: 24px; }

/* Mobile-optimized "Open now" button for the verified manufacturer list */
.lb__btn.zoombar__open,
.zoombar__open {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex: 0 0 100%;
  width: 100%; min-width: auto; min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff; color: var(--ink);
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 15px; font-weight: 800;
  padding: 10px 16px;
  box-shadow: 0 2px 8px rgba(16, 24, 39, 0.06);
}
.lb__btn.zoombar__open .d-desktop,
.zoombar__open .d-desktop { display: none; }

.d-mobile { display: inline; }
.d-desktop { display: none; }

@media (min-width: 768px) {
  .d-mobile, .zoombar__open .d-mobile, .lb__btn.zoombar__open .d-mobile { display: none; }
  .d-desktop, .zoombar__open .d-desktop, .lb__btn.zoombar__open .d-desktop { display: inline; }
  .lb__btn.zoombar__open,
  .zoombar__open {
    flex: 0 0 auto;
    width: auto; min-width: auto; min-height: 42px;
    border-radius: 10px;
    font-size: 13px; font-weight: 700;
    padding: 0 14px;
    background: #fff; color: var(--ink);
    box-shadow: none;
    white-space: nowrap;
  }
}
.lb__stage {
  flex: 1; overflow: hidden;
  display: grid; place-items: center;
  touch-action: none;
  cursor: grab;
}
.lb__img {
  max-width: 100%; max-height: 100%;
  transform-origin: center center;
  will-change: transform;
  user-select: none; -webkit-user-drag: none;
}
.lb__hint {
  color: rgba(255,255,255,.7);
  font-size: 12px; text-align: center;
  padding: 10px 14px; padding-bottom: max(10px, env(safe-area-inset-bottom));
}
[data-lightbox] { cursor: zoom-in; }


/* --- Consent checkbox (Meta Ads compliance) --- */
.consent{display:flex;gap:10px;align-items:flex-start;margin:4px 0 14px;font-size:12.5px;line-height:1.5;color:#4a5568;text-align:left}
.consent input{margin-top:2px;width:18px;height:18px;flex:0 0 auto;accent-color:var(--teal, #42C7BD)}
.consent a{color:inherit;text-decoration:underline}

/* --- Legal pages --- */
.legal{max-width:760px;margin:0 auto;padding:28px 18px 60px;text-align:left}
.legal h1{font-size:26px;margin:0 0 6px}
.legal h2{font-size:17px;margin:24px 0 6px}
.legal p,.legal li{font-size:14px;line-height:1.7;color:#4a5568}
.legal ul{padding-left:20px}
.legal .updated{font-size:12.5px;color:#7b8698}

.byline { margin-top: 6px; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; opacity: .6; }

/* --- Plan countdown (single fixed campaign deadline, factual only) ------- */
.plancount {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 14px auto 4px; padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  font-size: 13px; font-weight: 600; letter-spacing: .2px;
}
.section:not(.section--dark) .plancount { background: #fff; border-color: #E3E7EE; color: #17233E; }
.plancount__time { font-variant-numeric: tabular-nums; color: #42C7BD; font-weight: 800; }
.videobox__ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: #101C33; color: #9FB0C9; font-size: 14px; font-weight: 600; text-align: center; padding: 16px;
}

/* Thank-you page: copyable community link */
.copyrow { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.copyrow__input {
  flex: 1 1 200px; min-width: 0; padding: 12px 14px; font-size: 13px;
  border: 1px solid #d8dee8; border-radius: 10px; background: #fff; color: #17233E;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.btn.copyrow__btn {
  flex: 0 0 auto; width: auto; min-width: 160px; padding: 12px 32px; font-size: 13px;
  background: #17233E; color: #fff; border: 1px solid #17233E;
}
@media (max-width: 480px) {
  .copyrow__input { flex: 1 1 100%; }
  .btn.copyrow__btn { flex: 1 1 100%; width: 100%; min-width: 0; padding: 12px 18px; }
}
