/* ========================================
   Synedica Labs - Design System
   ======================================== */
:root {
  --c-primary: #0A7B3F;
  --c-primary-dark: #065C2E;
  --c-primary-light: #1FA85B;
  --c-accent: #FFB800;
  --c-accent-dark: #E69E00;
  --c-bg: #FFFFFF;
  --c-bg-soft: #F7FAF8;
  --c-bg-dark: #0E1B14;
  --c-text: #14241B;
  --c-text-soft: #4A5C53;
  --c-text-muted: #8A9A92;
  --c-border: #E2EAE6;
  --c-success: #16A34A;
  --c-danger: #DC2626;
  --c-warning: #F59E0B;
  --shadow-sm: 0 1px 2px rgba(14,27,20,.06), 0 1px 3px rgba(14,27,20,.04);
  --shadow-md: 0 4px 12px rgba(14,27,20,.08), 0 2px 4px rgba(14,27,20,.05);
  --shadow-lg: 0 16px 40px rgba(14,27,20,.10), 0 4px 12px rgba(14,27,20,.06);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1240px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-primary-dark); }
button, .btn, [role="button"] {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--c-text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.625rem); }
h4 { font-size: 1.15rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(16px, 4vw, 24px); }
/* Safe area for notched phones */
@supports (padding: env(safe-area-inset-top)) {
  .header { padding-top: env(safe-area-inset-top); }
  body { padding-bottom: env(safe-area-inset-bottom); }
  .container { padding-left: max(clamp(16px, 4vw, 24px), env(safe-area-inset-left)); padding-right: max(clamp(16px, 4vw, 24px), env(safe-area-inset-right)); }
}

/* ===== Top Bar ===== */
.topbar {
  background: var(--c-primary-dark);
  color: #fff;
  font-size: 13px;
  overflow: hidden;
  position: relative;
  z-index: 101;
}
.topbar__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  padding: 10px 0;
  will-change: transform;
}
.topbar__item { display: inline-flex; align-items: center; padding: 0 24px; gap: 8px; flex-shrink: 0; }
.topbar__star { color: var(--c-accent); flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--c-border);
  contain: layout style;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(64px, 10vh, 78px);
  gap: 16px;
  padding: 0 clamp(16px, 4vw, 24px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-text);
  letter-spacing: -.02em;
}
.logo__mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  color: #fff;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}
.logo__sub { color: var(--c-primary); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__mobile-head,
.nav__mobile-actions,
.nav-overlay,
.nav__close { display: none; }
.nav__link {
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--c-text);
  font-weight: 500;
  font-size: 15px;
  transition: all .2s;
}
.nav__link:hover { background: var(--c-bg-soft); color: var(--c-primary); }
.nav__link.active { color: var(--c-primary); }

.header__actions { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all .2s;
  cursor: pointer;
  border: 0;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  color: #fff;
  box-shadow: 0 4px 14px rgba(10,123,63,.35);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(10,123,63,.45); color: #fff; }
.btn--accent {
  background: var(--c-accent);
  color: var(--c-bg-dark);
  box-shadow: 0 4px 14px rgba(255,184,0,.35);
}
.btn--accent:hover { transform: translateY(-1px); background: var(--c-accent-dark); color: var(--c-bg-dark); }
.btn--outline {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid var(--c-border);
}
.btn--outline:hover { border-color: var(--c-primary); color: var(--c-primary); }
.btn--lg { padding: 16px 32px; font-size: 17px; }
.btn--block { width: 100%; justify-content: center; }

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all .25s ease;
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse at top right, rgba(31,168,91,.12), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(255,184,0,.08), transparent 60%),
    linear-gradient(180deg, #FAFCFA 0%, #fff 100%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(10,123,63,.08);
  color: var(--c-primary-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__badge::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-primary-light);
  box-shadow: 0 0 0 4px rgba(31,168,91,.25);
}
.hero h1 { margin-bottom: 24px; }
.hero h1 .accent { color: var(--c-primary); }
.hero__lead {
  font-size: 1.15rem;
  color: var(--c-text-soft);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__trust {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--c-border);
}
.hero__trust-item .num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--c-primary);
  display: block;
}
.hero__trust-item .lbl {
  font-size: 13px;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}
.hero__product {
  position: relative;
  background: linear-gradient(135deg, #ECF8F1, #F8FFF9);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
}
.hero__product img { max-height: 100%; max-width: 100%; filter: drop-shadow(0 20px 40px rgba(10,123,63,.18)); }
.hero__sticker {
  position: absolute;
  top: -10px; right: -10px;
  width: 110px; height: 110px;
  background: var(--c-accent);
  color: var(--c-bg-dark);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  font-size: 13px;
  line-height: 1.1;
  box-shadow: var(--shadow-md);
  transform: rotate(-15deg);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: rotate(-15deg) scale(1); }
  50% { transform: rotate(-15deg) scale(1.05); }
}

/* ===== Sections ===== */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(10,123,63,.08);
  color: var(--c-primary-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--c-text-soft); font-size: 1.05rem; }

/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--c-bg-soft);
  padding: 32px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
}
.trust-item__icon {
  width: 48px; height: 48px;
  background: #fff;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 22px;
  box-shadow: var(--shadow-sm);
}
.trust-item__title { font-weight: 700; font-size: 15px; }
.trust-item__sub { font-size: 13px; color: var(--c-text-muted); }

/* ===== Products Grid ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s;
  display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-primary-light);
  box-shadow: var(--shadow-lg);
}
.product-card__image {
  background: linear-gradient(135deg, #F2FAF5, #FAFFFB);
  aspect-ratio: 1/1;
  display: grid; place-items: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.product-card__image img {
  max-height: 100%; max-width: 100%;
  transition: transform .4s ease;
  filter: drop-shadow(0 8px 16px rgba(10,123,63,.12));
}
.product-card:hover .product-card__image img { transform: scale(1.06); }
.product-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 10px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.product-card__badge--hot { background: var(--c-accent); color: var(--c-bg-dark); }
.product-card__body {
  padding: 22px;
  display: flex; flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-card__cat {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--c-text-muted);
  font-weight: 600;
}
.product-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
}
.product-card__title a { color: inherit; }
.product-card__title a:hover { color: var(--c-primary); }
.product-card__desc {
  font-size: 14px;
  color: var(--c-text-soft);
  margin-bottom: auto;
}
.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 12px;
}
.product-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--c-primary-dark);
}
.product-card__price .old {
  font-size: .85rem;
  color: var(--c-text-muted);
  text-decoration: line-through;
  margin-right: 8px;
  font-weight: 500;
}

/* ===== Benefits ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.benefit-card {
  padding: 36px 28px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: all .3s;
}
.benefit-card:hover { border-color: var(--c-primary-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  color: #fff;
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(10,123,63,.25);
}
.benefit-card h3 { margin-bottom: 10px; }
.benefit-card p { color: var(--c-text-soft); font-size: .95rem; }

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--c-bg-dark) 0%, #133023 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(31,168,91,.25), transparent 70%);
  border-radius: 50%;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { opacity: .85; margin-bottom: 28px; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  background: #fff;
  overflow: hidden;
  transition: all .25s;
}
.faq-item[open] { border-color: var(--c-primary-light); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 22px 26px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  color: var(--c-text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--c-primary);
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 26px 24px;
  color: var(--c-text-soft);
  line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
  background: var(--c-bg-dark);
  color: #B5C5BD;
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand .logo { color: #fff; margin-bottom: 18px; }
.footer__brand p { font-size: 14px; color: #8FA399; max-width: 360px; line-height: 1.7; }
.footer__col h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { color: #B5C5BD; font-size: 14px; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #6F8278;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: grid; place-items: center;
  color: #B5C5BD;
  transition: all .2s;
}
.footer__social a:hover { background: var(--c-primary); color: #fff; }

/* ===== Disclaimer Bar ===== */
.disclaimer-bar {
  background: rgba(245,158,11,.10);
  border-top: 1px solid rgba(245,158,11,.25);
  border-bottom: 1px solid rgba(245,158,11,.25);
  padding: 14px 0;
  font-size: 13px;
  color: #92590B;
  text-align: center;
}
.disclaimer-bar strong { color: #6E4408; }

/* ===== Page Header (interior pages) ===== */
.page-header {
  padding: 60px 0 48px;
  background: linear-gradient(180deg, var(--c-bg-soft), #fff);
  border-bottom: 1px solid var(--c-border);
}
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--c-text-muted); }
.breadcrumb a:hover { color: var(--c-primary); }
.breadcrumb__sep { opacity: .5; }

/* ===== Product Detail ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  padding: 48px 0;
}
.product-gallery__main {
  background: linear-gradient(135deg, #ECF8F1, #FAFFFB);
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  padding: 48px;
  margin-bottom: 16px;
  border: 1px solid var(--c-border);
}
.product-gallery__main img { max-height: 100%; max-width: 100%; filter: drop-shadow(0 20px 40px rgba(10,123,63,.15)); }
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.product-gallery__thumb {
  background: var(--c-bg-soft);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-md);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  padding: 10px;
  cursor: pointer;
  transition: all .2s;
}
.product-gallery__thumb:hover, .product-gallery__thumb.active {
  border-color: var(--c-primary);
}
.product-gallery__thumb img { max-height: 100%; max-width: 100%; }

.product-info__cat {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-primary);
  font-weight: 700;
  margin-bottom: 12px;
}
.product-info h1 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}
.product-info__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--c-text-muted);
  font-size: 14px;
}
.stars { color: var(--c-accent); letter-spacing: 2px; }
.product-info__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 12px;
}
.product-info__price .now {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-primary-dark);
}
.product-info__price .old {
  font-size: 1.25rem;
  text-decoration: line-through;
  color: var(--c-text-muted);
}
.product-info__price .save {
  background: rgba(220,38,38,.10);
  color: var(--c-danger);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
}
.product-info__stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--c-success);
  font-weight: 600;
  margin-bottom: 24px;
}
.product-info__stock::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-success);
  box-shadow: 0 0 0 4px rgba(22,163,74,.20);
}
.product-info__desc {
  color: var(--c-text-soft);
  margin-bottom: 28px;
  line-height: 1.7;
}
.product-info__qty {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.qty-control {
  display: flex;
  border: 1.5px solid var(--c-border);
  border-radius: 999px;
  overflow: hidden;
}
.qty-control button {
  width: 44px; height: 48px;
  font-size: 1.3rem;
  background: transparent;
  color: var(--c-text);
}
.qty-control button:hover { background: var(--c-bg-soft); }
.qty-control input {
  width: 56px;
  text-align: center;
  border: 0;
  font-weight: 700;
  font-size: 1rem;
  outline: 0;
  background: transparent;
}
.product-info__cta {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}
.product-info__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  background: var(--c-bg-soft);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}
.product-info__features li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--c-text-soft);
}
.product-info__features li::before {
  content: '';
  color: var(--c-primary);
  font-weight: 700;
  font-size: 1.1rem;
}
.product-info__meta { font-size: 13px; color: var(--c-text-muted); }
.product-info__meta strong { color: var(--c-text); }

/* Product Tabs */
.product-tabs {
  border-top: 1px solid var(--c-border);
  padding-top: 48px;
  margin-top: 48px;
}
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tabs-nav button {
  padding: 14px 22px;
  background: transparent;
  font-weight: 600;
  font-size: 15px;
  color: var(--c-text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: all .2s;
}
.tabs-nav button.active { color: var(--c-primary); border-color: var(--c-primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content h3 { margin: 24px 0 12px; }
.tab-content p { margin-bottom: 14px; color: var(--c-text-soft); line-height: 1.7; }
.tab-content ul { padding-left: 24px; margin-bottom: 16px; color: var(--c-text-soft); }
.tab-content li { margin-bottom: 6px; }

/* Research Use Notice */
.research-notice {
  background: linear-gradient(135deg, rgba(245,158,11,.10), rgba(245,158,11,.04));
  border: 1px solid rgba(245,158,11,.30);
  border-left: 4px solid var(--c-warning);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin: 24px 0;
}
.research-notice strong { color: #92590B; display: block; margin-bottom: 6px; }
.research-notice p { font-size: 14px; color: var(--c-text-soft); margin: 0; }

/* ===== Newsletter ===== */
.newsletter {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.newsletter h2 { color: #fff; margin-bottom: 12px; }
.newsletter p { opacity: .9; margin-bottom: 28px; }
.newsletter__form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--shadow-lg);
}
.newsletter__form input {
  flex: 1;
  border: 0;
  padding: 14px 22px;
  font-size: 15px;
  outline: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--c-text);
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--c-bg-dark);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  transform: translateY(120%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.toast.show { transform: translateY(0); }
.toast__icon { color: var(--c-primary-light); font-size: 20px; }

/* ===== Mobile ===== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; }
  .hero__product { max-width: 380px; aspect-ratio: 1/1; padding: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { grid-template-columns: 1fr; padding: 48px 32px; text-align: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .hero { padding: 48px 0 64px; }
  .nav__links { width: 100%; flex-direction: column; align-items: stretch; gap: 2px; }
  .header__actions .btn:not(.menu-toggle) { display: none; }
  .hero__trust { flex-wrap: wrap; gap: 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .product-info__cta { flex-direction: column; }
  .newsletter__form { flex-direction: column; padding: 0; background: transparent; box-shadow: none; gap: 12px; }
  .newsletter__form input { background: #fff; padding: 16px 22px; border-radius: 999px; }
}
@media (max-width: 480px) {
  .trust-bar__grid { grid-template-columns: 1fr; }
  .product-info__features { grid-template-columns: 1fr; }
  .product-gallery__thumbs { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-2 { margin-top: 16px; } .mt-4 { margin-top: 32px; }
.bg-soft { background: var(--c-bg-soft); }

/* Loading skeleton */
@keyframes shimmer { 0% { background-position: -800px 0; } 100% { background-position: 800px 0; } }
.skeleton { background: linear-gradient(90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%); background-size: 800px 100%; animation: shimmer 1.4s infinite; border-radius: 6px; }

/* ============================================
   RETATRUTIDE LANDING PAGE COMPONENTS
   ============================================ */
.hero-retatrutide { background: linear-gradient(135deg, #0E1B14 0%, #0A7B3F 100%); color: #fff; padding: 80px 0 60px; }
.hero-retatrutide .hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.hero-retatrutide h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; margin: 16px 0 20px; font-weight: 700; }
.hero-retatrutide .text-accent { color: #FFB800; }
.hero-retatrutide .lead { font-size: 1.2rem; line-height: 1.5; margin-bottom: 28px; opacity: 0.92; }
.hero-retatrutide .badge-primary { background: rgba(255,184,0,0.18); color: #FFB800; padding: 6px 14px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; display: inline-block; }
.price-block { display: flex; align-items: center; gap: 16px; margin: 24px 0; }
.price-current { font-size: 2.4rem; font-weight: 700; font-family: 'Space Grotesk', sans-serif; color: #FFB800; }
.price-old { font-size: 1.3rem; text-decoration: line-through; opacity: 0.6; }
.badge-discount { background: #FFB800; color: #0E1B14; padding: 4px 10px; border-radius: 6px; font-weight: 700; font-size: 0.85rem; }
.hero-bullets { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 8px; }
.hero-bullets li { padding-left: 4px; font-size: 1rem; }
.hero-cta-row { display: flex; gap: 16px; margin: 28px 0 16px; flex-wrap: wrap; }
.btn-xl { padding: 18px 36px; font-size: 1.15rem; }
.btn-ghost { background: transparent; border: 2px solid rgba(255,255,255,0.4); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-accent { background: #FFB800; color: #0E1B14; font-weight: 700; }
.btn-accent:hover { background: #ffcb40; }
.trust-row { font-size: 0.95rem; opacity: 0.85; margin-top: 12px; }
.hero-visual img { width: 100%; height: auto; border-radius: 24px; box-shadow: 0 30px 80px rgba(0,0,0,0.45); }
@media (max-width: 900px) { .hero-retatrutide .hero-grid { grid-template-columns: 1fr; } }

.compare-table-wrap { overflow-x: auto; border-radius: 16px; box-shadow: 0 6px 24px rgba(14,27,20,0.08); }
.compare-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 600px; }
.compare-table th, .compare-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid #eef2ee; }
.compare-table thead th { background: #0E1B14; color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 600; }
.compare-table thead th.highlight { background: #0A7B3F; }
.compare-table tbody td.highlight { background: #f0faf3; color: #0A7B3F; }
.compare-table tbody tr:last-child td { border-bottom: none; }

.specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; margin-top: 32px; }
.spec-item { background: #f7faf7; border-left: 4px solid #0A7B3F; padding: 16px 20px; border-radius: 8px; display: flex; flex-direction: column; gap: 4px; }
.spec-key { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: #6b7a6f; font-weight: 600; }
.spec-val { font-size: 1rem; color: #0E1B14; font-weight: 500; }

.ladder { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 36px; }
.ladder-step { background: #fff; padding: 28px 24px; border-radius: 14px; box-shadow: 0 4px 18px rgba(14,27,20,0.06); position: relative; }
.ladder-num { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; background: #0A7B3F; color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 700; border-radius: 50%; margin-bottom: 16px; }
.ladder-step h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; margin: 8px 0; color: #0E1B14; }
.ladder-step p { font-size: 0.95rem; color: #5a6960; line-height: 1.5; margin: 0; }

.cta-strip { background: linear-gradient(135deg, #0A7B3F 0%, #0E1B14 100%); color: #fff; padding: 64px 0; text-align: center; }
.cta-strip h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0 0 12px; }
.cta-strip p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 28px; }

.section-alt { background: #f7faf7; }

/* ============================================
   AUTH / CHECKOUT / CRYPTO COMPONENTS
   ============================================ */
.auth-grid { display: grid; gap: 32px; }
.auth-card { background:#fff; padding:36px; border-radius:16px; box-shadow:0 6px 24px rgba(14,27,20,.08); max-width:520px; margin:0 auto; }
.auth-card h2 { font-family:'Space Grotesk',sans-serif; margin:0 0 8px; }
.auth-form { display:grid; gap:14px; margin-top:20px; }
.auth-form label { display:flex; flex-direction:column; gap:6px; font-size:.92rem; font-weight:500; color:#0E1B14; }
.auth-form input, .auth-form select { padding:12px 14px; border:1px solid #d8e2dc; border-radius:8px; font-size:1rem; font-family:inherit; }
.auth-form input:focus, .auth-form select:focus { outline:none; border-color:#0A7B3F; box-shadow:0 0 0 3px rgba(10,123,63,.15); }
.auth-form .row-2 { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.auth-form hr { border:none; border-top:1px dashed #e2eae5; margin:8px 0; }
.auth-form .checkbox { flex-direction:row; align-items:flex-start; gap:8px; font-size:.85rem; color:#5a6960; font-weight:400; }
.auth-form .checkbox input { margin-top:4px; }
.auth-error { color:#c62828; font-size:.9rem; min-height:1.2em; margin:0; }
.btn--block { width:100%; }
.btn--ghost { background:transparent; border:1px solid #d8e2dc; color:#0E1B14; }
.muted { color:#5a6960; }
.muted.small { font-size:.85rem; }
.security-note { background: #0E1B14; color: #e8efe9; padding: 36px 32px; border-radius: 16px; margin-top: 40px; border: 1px solid rgba(255,255,255,.08); }
.security-note h3 { margin: 0 0 8px; font-family: 'Space Grotesk', sans-serif; font-size: 18px; color: #fff; letter-spacing: -.01em; }
.security-note .security-note__sub { color: #8ba891; font-size: 14px; margin: 0 0 22px; line-height: 1.5; }
.security-note ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.security-note ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.6; color: #c5d2c7; }
.security-note ul li::before { content: '✓'; flex: 0 0 20px; color: #4ADE80; font-weight: 700; font-size: 14px; margin-top: 1px; }
.security-note ul li strong { display: block; color: #fff; font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.security-note ul li span { color: #9aaf9d; }
.order-item { background:#f7faf7; padding:14px 16px; border-radius:8px; margin-bottom:10px; border-left:3px solid #0A7B3F; }

.checkout-gate { text-align:center; padding:60px 20px; background:#f7faf7; border-radius:16px; margin-top:32px; }
.checkout-gate h2 { font-family:'Space Grotesk',sans-serif; margin:0 0 16px; }
.checkout-grid { display:grid; grid-template-columns:1.5fr 1fr; gap:32px; margin-top:32px; }
@media (max-width:900px) { .checkout-grid { grid-template-columns:1fr; } }
.checkout-block { background:#fff; padding:28px; border-radius:14px; box-shadow:0 4px 16px rgba(14,27,20,.06); margin-bottom:20px; }
.checkout-block h2 { font-family:'Space Grotesk',sans-serif; margin:0 0 16px; font-size:1.3rem; }
.addr-box { background:#f7faf7; padding:16px; border-radius:8px; border-left:3px solid #0A7B3F; line-height:1.5; }
.ship-options { display:grid; gap:10px; margin-top:16px; }
.ship-opt { display:flex; align-items:center; gap:14px; padding:14px 16px; border:1px solid #d8e2dc; border-radius:10px; cursor:pointer; transition:all .15s; }
.ship-opt:hover { border-color:#0A7B3F; }
.ship-opt input { width:18px; height:18px; accent-color:#0A7B3F; }
.ship-opt > div { flex:1; font-size:.95rem; }
.ship-opt b { font-family:'Space Grotesk',sans-serif; color:#0A7B3F; }
.ship-note { margin-top:16px; padding:12px; background:#fff8e7; border-left:3px solid #FFB800; border-radius:6px; }

/* ==========================================
   Crypto coin selector — clean cards, no QR codes
   ========================================== */
.coin-picker { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 20px; }
.coin-btn { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 22px 16px 18px; background: #fff; border: 2px solid #e2eae5; border-radius: 16px; cursor: pointer; transition: all .2s ease; font-family: inherit; text-align: center; }
.coin-btn:hover { border-color: #b8d4c0; background: #f9fdfa; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(14,27,20,.06); }
.coin-btn.active { border-color: #0A7B3F; background: #f0faf3; box-shadow: 0 0 0 4px rgba(10,123,63,.1); transform: translateY(-2px); }
.coin-btn__icon { width: 44px; height: 44px; display: block; flex: 0 0 auto; }
.coin-btn__icon svg { width: 100%; height: 100%; display: block; }
.coin-btn__name { font-weight: 700; font-size: .95rem; color: #0E1B14; }
.coin-btn__net { font-size: .75rem; color: #8a9e90; font-weight: 500; }

/* ==========================================
   Payment panel — appears after coin selection
   ========================================== */
.pay-panel { margin-top: 28px; padding: 0; background: #fff; border-radius: 18px; border: 1px solid #e2eae5; box-shadow: 0 8px 32px rgba(14,27,20,.07); overflow: hidden; }
.pay-panel__header { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 24px; background: #0E1B14; color: #fff; flex-wrap: wrap; }
.pay-panel__timer { display: flex; align-items: center; gap: 8px; font-size: .9rem; }
.pay-panel__timer svg { color: #4ADE80; flex: 0 0 auto; }
.pay-panel__timer strong { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; color: #fff; letter-spacing: .02em; }
.pay-panel__rate { font-size: .78rem; color: #8ba891; }
.pay-grid { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; padding: 28px 24px; }
@media (max-width: 700px) { .pay-grid { grid-template-columns: 1fr; gap: 20px; padding: 20px 16px; } }
.pay-qr { text-align: center; }
.pay-qr img { width: 100%; max-width: 220px; height: auto; border-radius: 14px; box-shadow: 0 6px 24px rgba(0,0,0,.12); background: #fff; padding: 10px; border: 1px solid #eef2ee; }
.pay-network { font-size: .82rem; color: #6b7d70; margin-top: 10px; font-weight: 600; }
.pay-info { display: flex; flex-direction: column; gap: 14px; }
.pay-info__total { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 8px; }
.pay-info__total span { font-size: .9rem; color: #5a6960; }
.pay-info__total b { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; color: #0E1B14; }
.pay-info__crypto { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-top: 1px solid #e2eae5; border-bottom: 1px solid #e2eae5; }
.pay-info__crypto span { font-size: .9rem; color: #5a6960; }
.pay-info__crypto b { font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; color: #0A7B3F; letter-spacing: -.01em; }
.pay-info__rate { font-size: .82rem; color: #8a9e90; padding-bottom: 4px; }
.pay-info__addr-label { font-size: .82rem; font-weight: 700; color: #0E1B14; text-transform: uppercase; letter-spacing: .05em; margin-top: 4px; }
.copy-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.copy-row input { min-width: 0; overflow: hidden; text-overflow: ellipsis; padding: 12px 14px; font-family: 'Courier New', monospace; font-size: .82rem; border: 1px solid #d8e2dc; border-radius: 10px; background: #f9fdfa; color: #0E1B14; }
.warn-box { background: #fffbf0; border: 1px solid #f0d060; padding: 14px 16px; border-radius: 10px; font-size: .84rem; line-height: 1.55; color: #5a4a00; }
.warn-box strong { color: #8a6900; }
.pay-panel__footnote { margin: 0 24px 24px; padding: 14px 18px; background: #f7faf8; border-radius: 10px; font-size: .82rem; color: #5a6960; line-height: 1.5; border: 1px solid #e2eae5; }
.checkout-ack { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: flex-start; margin: 0 24px 18px; padding: 14px 16px; background: #f7faf8; border: 1px solid #e2eae5; border-radius: 12px; font-size: .88rem; color: #5a6960; }
.checkout-ack input { margin-top: 2px; accent-color: #0A7B3F; width: 18px; height: 18px; }
#placeOrderBtn { margin: 0 24px 8px; width: calc(100% - 48px); }
#placeOrderBtn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

/* Legacy aliases (keep old classes working if referenced elsewhere) */
.amt-row { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; }
.amt-row.big { border-top: 1px solid #d8e2dc; padding-top: 14px; font-size: 1.15rem; }
.amt-row.big b { font-family: 'Space Grotesk', sans-serif; color: #0A7B3F; font-size: 1.5rem; }
.rate-row { display: flex; justify-content: space-between; font-size: .85rem; color: #5a6960; padding-bottom: 12px; border-bottom: 1px dashed #d8e2dc; }
.addr-label { font-size: .85rem; font-weight: 600; color: #0E1B14; margin-top: 8px; }
.warn-box { background:#fff8e7; border:1px solid #FFB800; padding:12px; border-radius:8px; font-size:.85rem; line-height:1.5; }
.btn--xl { padding:18px 32px; font-size:1.1rem; }

.checkout-summary { background:#fff; padding:24px; border-radius:14px; box-shadow:0 4px 16px rgba(14,27,20,.06); position:sticky; top:20px; }
.checkout-summary h3 { font-family:'Space Grotesk',sans-serif; margin:0 0 16px; }
.sum-line { display:grid; grid-template-columns:44px 1fr auto; gap:10px; align-items:center; padding:10px 0; border-bottom:1px dashed #eef2ee; }
.sum-line img { border-radius:6px; object-fit:cover; }
.sum-row { display:flex; justify-content:space-between; padding:8px 0; }
.sum-row.total { font-size:1.2rem; font-family:'Space Grotesk',sans-serif; color:#0A7B3F; padding-top:14px; border-top:1px solid #d8e2dc; }

.confirm-card { background:#fff; padding:40px; border-radius:16px; box-shadow:0 6px 24px rgba(14,27,20,.08); text-align:center; }
.confirm-icon { width:72px; height:72px; border-radius:50%; background:#0A7B3F; color:#fff; display:flex; align-items:center; justify-content:center; font-size:2.5rem; margin:0 auto 20px; font-weight:700; }
.confirm-grid { display:grid; grid-template-columns:1fr 1fr; gap:32px; text-align:left; margin-top:24px; }
@media (max-width:700px) { .confirm-grid { grid-template-columns:1fr; } }
.confirm-grid h3 { font-family:'Space Grotesk',sans-serif; margin:0 0 12px; font-size:1rem; text-transform:uppercase; letter-spacing:.05em; color:#5a6960; }
.sum-line-sm { display:flex; justify-content:space-between; padding:6px 0; font-size:.95rem; }
.sum-line-sm.total { font-weight:600; font-size:1.1rem; color:#0A7B3F; }
.next-steps { background:#f7faf7; padding:20px; border-radius:10px; margin:28px 0; text-align:left; }
.next-steps h3 { margin:0 0 12px; font-family:'Space Grotesk',sans-serif; }
.next-steps ol { margin:0; padding-left:20px; line-height:1.7; }

/* ============================================
   ENHANCED PREMIUM STYLES
   ============================================ */
.hero__badge { display:inline-block; background:linear-gradient(135deg,#0E1B14,#0A7B3F); color:#fff; padding:8px 18px; border-radius:20px; font-size:.85rem; font-weight:500; margin-bottom:20px; letter-spacing:.02em; }

/* Trust bar improvements */
.trust-bar { background:linear-gradient(180deg,#f7faf7 0%,#fff 100%); border-top:1px solid #e2eae5; border-bottom:1px solid #e2eae5; }
.trust-bar__grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:20px; align-items:center; }

/* Product Grid Premium */
.product-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:24px; }
.product-card { background:#fff; border-radius:16px; overflow:hidden; box-shadow:0 4px 20px rgba(14,27,20,.06); transition:all .3s ease; border:1px solid #eef2ee; display:flex; flex-direction:column; }
.product-card:hover { transform:translateY(-4px); box-shadow:0 12px 36px rgba(14,27,20,.12); border-color:#0A7B3F; }
.product-card__img { padding:24px 24px 0; text-align:center; background:linear-gradient(180deg,#f7faf7 0%,#fff 100%); }
.product-card__img img { width:100%; max-width:240px; height:auto; aspect-ratio:1; object-fit:contain; }
.product-card__body { padding:20px 24px 24px; flex:1; display:flex; flex-direction:column; }
.product-card__badge { display:inline-block; padding:4px 12px; border-radius:12px; font-size:.75rem; font-weight:600; text-transform:uppercase; letter-spacing:.04em; margin-bottom:10px; }
.product-card__badge--hot { background:#ffebee; color:#c62828; }
.product-card__badge--popular { background:#e8f5e9; color:#0A7B3F; }
.product-card__badge--premium { background:#fff3e0; color:#e65100; }
.product-card__badge--starter { background:#e3f2fd; color:#1565c0; }
.product-card__badge--combo { background:#f3e5f5; color:#7b1fa2; }
.product-card__badge--essential { background:#e0f2f1; color:#00695c; }
.product-card__badge--new { background:#fff8e1; color:#ff8f00; }
.product-card__badge--advanced { background:#fce4ec; color:#c62828; }
.product-card h3 { font-family:'Space Grotesk',sans-serif; font-size:1.1rem; margin:0 0 8px; line-height:1.3; }
.product-card__desc { font-size:.88rem; color:#5a6960; margin:0 0 16px; line-height:1.5; }
.product-card__price { display:flex; align-items:baseline; gap:8px; margin-top:auto; }
.price-now { font-family:'Space Grotesk',sans-serif; font-size:1.5rem; font-weight:700; color:#0A7B3F; }
.price-was { font-size:.9rem; color:#9aaba2; text-decoration:line-through; }
.product-card__cta { margin-top:14px; }

/* Landing page hero variants */
.product-hero { background:linear-gradient(135deg,#0E1B14 0%,#0A3320 50%,#0A7B3F 100%); color:#fff; padding:80px 0 60px; }
.product-hero .hero-copy { color:#fff; }
.product-hero .hero-copy h1 { color:#fff; font-size:2.8rem; line-height:1.15; }
.product-hero .hero-copy .lead { color:rgba(255,255,255,.85); font-size:1.15rem; }
.product-hero .badge-primary { background:rgba(255,255,255,.15); color:#fff; padding:6px 16px; border-radius:16px; font-size:.8rem; font-weight:600; }
.product-hero .price-current { color:#fff; font-family:'Space Grotesk',sans-serif; font-size:2.2rem; }
.product-hero .price-old { color:rgba(255,255,255,.5); }
.product-hero .badge-discount { background:#FFB800; color:#0E1B14; padding:4px 10px; border-radius:8px; font-size:.8rem; font-weight:700; }
.product-hero .hero-bullets { list-style:none; padding:0; margin:24px 0; display:grid; gap:8px; }
.product-hero .hero-bullets li { color:rgba(255,255,255,.9); font-size:.95rem; }
.product-hero .btn-primary { background:#fff; color:#0A7B3F; font-weight:700; }
.product-hero .btn-ghost { border:1px solid rgba(255,255,255,.3); color:#fff; background:transparent; }
.product-hero .btn-ghost:hover { background:rgba(255,255,255,.1); }
.product-hero .hero-visual img { border-radius:20px; background:rgba(255,255,255,.05); padding:12px; }

/* Section alternates */
.section-alt { background:#f7faf7; }
.cta-section { background:linear-gradient(135deg,#0A7B3F,#0E1B14); color:#fff; padding:80px 0; text-align:center; }
.cta-section h2 { color:#fff; font-family:'Space Grotesk',sans-serif; }
.cta-section .lead { color:rgba(255,255,255,.85); }

/* FAQ list */
.faq-list { max-width:760px; margin:0 auto; }
.faq-item { background:#fff; border:1px solid #e2eae5; border-radius:12px; margin-bottom:12px; overflow:hidden; transition:all .2s; }
.faq-item:hover { border-color:#0A7B3F; }
.faq-item summary { padding:18px 24px; font-weight:600; cursor:pointer; font-size:1.05rem; list-style:none; display:flex; justify-content:space-between; align-items:center; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:"+"; font-size:1.5rem; color:#0A7B3F; transition:transform .2s; }
.faq-item[open] summary::after { content:"−"; }
.faq-item p { padding:0 24px 20px; margin:0; color:#5a6960; line-height:1.6; }

/* Product detail grid (legacy fallback only — main grid is .product-detail) */
.product-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
@media (max-width:800px) { .product-detail-grid { grid-template-columns:1fr; } }
.product-info { font-size:1.05rem; line-height:1.7; }
.specs-table { width:100%; border-collapse:collapse; margin-top:16px; }
.specs-table td { padding:10px 12px; border-bottom:1px solid #eef2ee; font-size:.92rem; }
.specs-table td:first-child { font-weight:600; color:#0E1B14; width:40%; }

/* Text helpers */
.text-center { text-align:center; }
.text-accent { color:#0A7B3F; }

/* Features grid */
.features-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:24px; margin-top:32px; }
.feature-card { background:#fff; padding:28px; border-radius:14px; border:1px solid #eef2ee; transition:all .2s; }
.feature-card:hover { box-shadow:0 8px 28px rgba(14,27,20,.08); }
.feature-icon { font-size:2rem; margin-bottom:12px; }
.feature-card h3 { font-family:'Space Grotesk',sans-serif; font-size:1.1rem; margin:0 0 8px; }
.feature-card p { color:#5a6960; font-size:.92rem; line-height:1.6; margin:0; }

/* Section head */
.section-head { text-align:center; max-width:680px; margin:0 auto 40px; }
.section-head h2 { font-family:'Space Grotesk',sans-serif; font-size:2.2rem; margin:16px 0; }
.eyebrow { display:inline-block; padding:4px 14px; background:#e8f5e9; color:#0A7B3F; border-radius:12px; font-size:.8rem; font-weight:600; text-transform:uppercase; letter-spacing:.04em; }


/* Combo styles */
.combo-tag { display:inline-block; background:linear-gradient(135deg,#FFB800,#FF8F00); color:#0E1B14; padding:2px 10px; border-radius:8px; font-size:.8rem; font-weight:700; margin-top:4px; }
.combo-banner { background:linear-gradient(135deg,#FFB800,#FF8F00); color:#0E1B14; padding:14px 18px; border-radius:10px; margin-top:16px; font-weight:600; text-align:center; font-size:.95rem; }
.product-card__combo { display:inline-block; background:#FFB800; color:#0E1B14; padding:3px 10px; border-radius:8px; font-size:.75rem; font-weight:700; margin-left:8px; text-transform:uppercase; letter-spacing:.03em; }
.combo-badge-card { display:inline-block; background:linear-gradient(135deg,#FFB800,#FF8F00); color:#0E1B14; padding:5px 12px; border-radius:8px; font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.04em; margin:8px 0; }
.hero__promo { display:inline-block; background:linear-gradient(135deg,#FFB800,#FF8F00); color:#0E1B14; padding:10px 20px; border-radius:10px; font-size:.95rem; margin-bottom:20px; font-weight:600; }
.hero__promo strong { font-size:1.05rem; }
.combo-banner-shop { background:linear-gradient(135deg,#FFB800,#FF8F00); color:#0E1B14; padding:16px 24px; border-radius:12px; text-align:center; font-size:1rem; margin-bottom:28px; font-weight:500; }
.logo__img { height:32px; width:auto; vertical-align:middle; }

/* =====================================================
   MOBILE NAV — single source of truth
   ===================================================== */
@media (max-width:768px) {
  .menu-toggle { display:flex; }
  .header__actions { gap: 8px; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 88vw);
    height: 100dvh;
    background: #fff;
    box-shadow: -12px 0 40px rgba(14,27,20,.14);
    padding: 20px 20px 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    z-index: 120;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.open { transform: translateX(0); }
  .nav__mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--c-border);
  }
  .nav__mobile-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--c-text);
    letter-spacing: -.01em;
  }
  .nav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--c-border);
    border-radius: 12px;
    background: #fff;
    position: relative;
  }
  .nav__close span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
  }
  .nav__close span:first-child { transform: rotate(45deg); }
  .nav__close span:last-child { transform: rotate(-45deg); }
  .nav__link {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1.02rem;
    font-weight: 500;
    color: #0E1B14;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
    white-space: nowrap;
  }
  .nav__link:hover { background:#f0faf3; }
  .nav__link.active { background:#e8f5e9; color:#0A7B3F; font-weight:600; }
  .nav__mobile-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--c-border);
  }
  .nav__mobile-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--c-border);
    border-radius: 12px;
    background: #fff;
    color: var(--c-text);
    font-weight: 600;
  }
  .nav__mobile-btn--ghost { background: #f8fbf9; }
  .nav__mobile-btn--outline { background: #fff; }
  .nav__mobile-cart-count {
    min-width: 28px;
    min-height: 28px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--c-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
  }
  .nav__mobile-shop { margin-top: 4px; }
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(14,27,20,.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 0;
    opacity: 1;
    z-index: 110;
  }
}
picture img { width:100%; height:auto; }

/* =====================================================
   MOBILE-FIRST LAYOUT — App-like, contained, no overflow
   ===================================================== */
@media (max-width: 768px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .header__inner { height: 64px; gap: 10px; padding: 0 16px; }
  .logo__img { max-width: 132px; height: auto; }
  .topbar__track { animation-duration: 55s; }
  .topbar__item { padding: 0 14px; font-size: 12px; }

  /* Ensure sections stay within viewport */
  section, main, footer, .legal-page, .checkout-page {
    max-width: 100vw;
  }

  .hero { padding: 36px 0 48px; }
  .hero__grid,
  .hero-retatrutide .hero-grid,
  .product-hero .hero-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .hero__visual { order: -1; }
  .hero__product { max-width: 300px; width: 100%; padding: 16px; margin: 0 auto; }
  .hero__product img,
  .hero-visual img,
  .product-hero .hero-visual img { max-height: 300px; width: 100%; object-fit: contain; }
  .hero__sticker { display: none; }

  .products-grid,
  .product-grid { grid-template-columns: 1fr !important; gap: 18px; }
  .product-card__image { aspect-ratio: 1 / 0.78; max-height: 260px; padding: 14px; }
  .product-card__image img,
  .product-card__img img { max-height: 220px; width: 100%; object-fit: contain; }
  .product-card__foot { align-items: stretch; flex-direction: column; }
  .product-card__foot .btn { justify-content: center; width: 100%; }

  .product-detail,
  .product-detail-grid { grid-template-columns: 1fr !important; gap: 24px; padding: 28px 0; }
  .product-gallery__main { padding: 14px; max-height: 340px; aspect-ratio: 1 / 1; }
  .product-gallery__main img,
  #mainProductImage { max-height: 300px; width: 100%; object-fit: contain; }
  .product-gallery__thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
  .product-gallery__thumb { padding: 6px; }
  .product-info__price .now { font-size: 2rem; }
  .product-info__buy { display: grid; gap: 14px; }
  .product-info__features { grid-template-columns: 1fr; padding: 16px; }

  .checkout-grid,
  .confirm-grid,
  .auth-form .row-2 { grid-template-columns: 1fr !important; }
  .cart-row__img { width: 72px; height: 72px; }

  /* Account / Auth mobile */
  .auth-card { padding: 24px 18px; border-radius: 16px; }
  .auth-card h2 { font-size: 1.5rem; }
  .auth-form input, .auth-form select, .auth-form textarea { font-size: 16px !important; padding: 14px 16px; }
  .security-note { padding: 24px 18px; }

  /* Legal pages */
  .legal-hero { padding: 40px 0 28px; }
  .legal-section { padding: 36px 0 60px; }
  .legal-document { font-size: 15px; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-card { padding: 18px 20px; }
  .legal-table { font-size: 13px; }
  .legal-table th, .legal-table td { padding: 8px 10px; }

  /* Blog */
  .blog-list { grid-template-columns: 1fr; }
  .blog-card { padding: 20px; }
  .blog-article { padding: 32px 16px 60px; }
  .blog-article h1 { font-size: 1.6rem; }

  /* Track order */
  .track-form { padding: 20px 16px; }
  .track-card { padding: 18px; }

  /* Buttons full-width on mobile */
  .btn--xl, .btn--block { width: 100%; justify-content: center; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 420px) {
  .hero__product { max-width: 260px; }
  .hero__product img,
  .hero-visual img,
  .product-hero .hero-visual img { max-height: 260px; }
  .product-card__image { max-height: 230px; }
  .product-card__image img { max-height: 190px; }
  .product-gallery__main { max-height: 300px; }
  .product-gallery__main img,
  #mainProductImage { max-height: 260px; }
}

/* Official Synedica Labs brand: favicon mark + two-colour wordmark */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  line-height: 1;
}
.brand-logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  background: #fff;
  flex: 0 0 auto;
}
.brand-logo__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-logo__word {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.035em;
  white-space: nowrap;
}
.brand-logo__synedica { color: var(--c-text); }
.brand-logo__labs { color: var(--c-primary); font-weight: 700; }
.footer .brand-logo__synedica { color: #fff; }
.footer .brand-logo__labs { color: var(--c-primary-light); }
.logo__img { display: none; }

@media (max-width: 768px) {
  .brand-logo { gap: 8px; }
  .brand-logo__mark { width: 34px; height: 34px; border-radius: 8px; }
  .brand-logo__word { font-size: 19px; letter-spacing: -.03em; }
}

@media (max-width: 380px) {
  .brand-logo__word { font-size: 17px; }
  .brand-logo__mark { width: 32px; height: 32px; }
}

/* =====================================================
   Premium mobile-first checkout
   ===================================================== */
.checkout-page { background: linear-gradient(180deg, #f7faf8 0%, #fff 42%); }
.checkout-hero { padding: 34px 0 18px; background: radial-gradient(circle at top right, rgba(10,123,63,.12), transparent 36%), linear-gradient(180deg, #fff, #f7faf8); border-bottom: 1px solid var(--c-border); }
.checkout-hero__grid { display: grid; gap: 20px; align-items: center; }
.checkout-hero h1 { margin: 10px 0 10px; font-size: clamp(2rem, 6vw, 3.2rem); }
.checkout-hero p { color: var(--c-text-soft); max-width: 760px; font-size: 1.05rem; }
.checkout-trust-panel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.checkout-trust-panel div { background: #fff; border: 1px solid var(--c-border); border-radius: 16px; padding: 14px; box-shadow: var(--shadow-sm); }
.checkout-trust-panel strong { display: block; color: var(--c-primary-dark); font-family: var(--font-display); font-size: 1.1rem; }
.checkout-trust-panel span { display: block; color: var(--c-text-muted); font-size: .78rem; margin-top: 2px; }
.checkout-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 20px; }
.checkout-step { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.78); border: 1px solid var(--c-border); border-radius: 14px; padding: 10px; color: var(--c-text-muted); }
.checkout-step span { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: #edf5f0; color: var(--c-primary-dark); font-weight: 800; font-size: .82rem; flex: 0 0 auto; }
.checkout-step strong { font-size: .85rem; }
.checkout-step.is-active { border-color: var(--c-primary); background: #f0faf3; color: var(--c-primary-dark); box-shadow: 0 0 0 3px rgba(10,123,63,.09); }
.checkout-step.is-done span { background: var(--c-primary); color: #fff; }
.checkout-step.is-done { color: var(--c-primary-dark); }
.checkout-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 24px; }
.checkout-grid aside { order: -1; }
.checkout-flow { display: grid; gap: 16px; }
.checkout-block { border: 1px solid var(--c-border); box-shadow: 0 10px 30px rgba(14,27,20,.06); }
.checkout-block__head { display: flex; justify-content: space-between; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.checkout-block__head h2 { margin: 2px 0 0; font-size: 1.25rem; }
.checkout-mini-label { color: var(--c-primary); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; }
.checkout-pill { display: inline-flex; align-items: center; min-height: 28px; padding: 5px 10px; border-radius: 999px; background: #effaf3; color: var(--c-primary-dark); font-size: .76rem; font-weight: 700; text-align: center; }
.addr-box { border-left: 0; border: 1px solid #dbeae1; background: linear-gradient(135deg, #f6fff8, #fff); }
.ship-opt { position: relative; background: #fff; align-items: flex-start; }
.ship-opt.active { border-color: var(--c-primary); background: #f2fbf5; box-shadow: 0 0 0 3px rgba(10,123,63,.08); }
.ship-opt b { white-space: nowrap; }
/* Coin picker + pay panel now defined in full above */
.copy-row { display: grid; grid-template-columns: 1fr auto; }
.copy-row input { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.checkout-ack input { margin-top: 3px; accent-color: var(--c-primary); width: 18px; height: 18px; }
.checkout-summary { position: relative; top: auto; border: 1px solid var(--c-border); box-shadow: 0 14px 36px rgba(14,27,20,.08); border-radius: 20px; }
.checkout-summary__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; }
.checkout-summary__head span { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; }
.checkout-summary__head strong { color: var(--c-primary-dark); background: #effaf3; padding: 5px 10px; border-radius: 999px; font-size: .78rem; }
.sum-line { grid-template-columns: 50px 1fr auto; align-items: start; }
.sum-line img { width: 50px; height: 50px; object-fit: contain; background: var(--c-bg-soft); }
.sum-row.savings { color: var(--c-success); }
.sum-row.total { font-size: 1.35rem; }
.checkout-summary__note { margin-top: 16px; padding: 14px; border-radius: 14px; background: #0e1b14; color: #fff; }
.checkout-summary__note strong { display: block; font-size: .92rem; }
.checkout-summary__note span { display: block; color: rgba(255,255,255,.76); font-size: .82rem; margin-top: 3px; }
#addressLookupWrap { background: #f7faf8; border: 1px solid var(--c-border); border-radius: 12px; padding: 12px; }
#postcodeLookupBtn { min-height: 48px; }

@media (min-width: 900px) {
  .checkout-hero { padding: 54px 0 26px; }
  .checkout-hero__grid { grid-template-columns: 1.45fr .8fr; gap: 36px; }
  .checkout-grid { grid-template-columns: minmax(0, 1.45fr) minmax(340px, .75fr); gap: 28px; align-items: start; }
  .checkout-grid aside { order: 0; }
  .checkout-summary { position: sticky; top: 98px; }
  .coin-picker { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .checkout-steps { grid-template-columns: repeat(2, 1fr); }
  .checkout-step { padding: 9px; }
  .checkout-step strong { font-size: .78rem; }
  .checkout-trust-panel { grid-template-columns: 1fr; }
  .checkout-block, .checkout-summary { padding: 18px; border-radius: 16px; }
  .checkout-block__head { flex-direction: column; }
  .ship-opt { display: grid; grid-template-columns: 22px 1fr; }
  .ship-opt b { grid-column: 2; }
  .pay-grid { gap: 16px; }
  .copy-row { grid-template-columns: 1fr; }
  .copy-row .btn { justify-content: center; }
}

/* Required because component classes like .checkout-grid/.ship-opt set display values */
[hidden] { display: none !important; }

/* ==========================================
   Reviews / Social proof
   ========================================== */
.reviews-section { padding: 80px 0; }
.reviews-summary { display:flex; align-items:center; gap:12px; margin-bottom:32px; flex-wrap:wrap; font-size:18px; }
.review-stars { display:inline-flex; gap:2px; }
.reviews-grid { display:grid; gap:20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.reviews-list { display:grid; gap:16px; margin-top:24px; }
.review-card { background:#fff; border:1px solid var(--c-border); border-radius:var(--radius-lg); padding:24px; box-shadow:0 1px 2px rgba(0,0,0,.04); display:flex; flex-direction:column; gap:12px; }
.review-card__head { display:flex; align-items:center; gap:12px; }
.review-avatar { width:42px; height:42px; border-radius:50%; color:#fff; font-weight:700; font-size:14px; display:inline-flex; align-items:center; justify-content:center; letter-spacing:.5px; flex:0 0 auto; }
.review-meta { display:flex; flex-direction:column; line-height:1.3; flex:1; min-width:0; }
.review-meta strong { font-size:14px; }
.review-sub { font-size:12px; color:var(--c-text-muted); }
.review-verified { background:#E8F5EE; color:#0A7B3F; font-size:12px; font-weight:600; padding:4px 10px; border-radius:999px; flex:0 0 auto; }
.review-rating { display:flex; align-items:center; gap:10px; }
.review-date { color:var(--c-text-muted); font-size:12px; }
.review-title { font-size:16px; font-weight:600; margin:0; }
.review-body { font-size:14px; line-height:1.6; color:var(--c-text); margin:0; }
.reviews-anon-note { font-size:12px; color:var(--c-text-muted); margin-top:24px; padding:12px 16px; background:var(--c-bg-soft); border-radius:var(--radius-sm); border-left:3px solid var(--c-primary); }

/* ==========================================
   Cart upsell
   ========================================== */
.cart-upsell { margin-top:24px; padding:20px 24px; background:linear-gradient(135deg,#FFF8E1 0%,#FFFBEE 100%); border:2px dashed #FFB800; border-radius:var(--radius-lg); display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.cart-upsell__icon { font-size:32px; flex:0 0 auto; }
.cart-upsell__body { flex:1; min-width:200px; }
.cart-upsell__body strong { color:#0E1B14; font-size:16px; display:block; margin-bottom:4px; }
.cart-upsell__body span { color:#5a4a00; font-size:14px; }
.cart-upsell__btn { background:#FFB800; color:#0E1B14; font-weight:700; padding:10px 18px; border-radius:var(--radius-sm); border:0; cursor:pointer; text-decoration:none; flex:0 0 auto; }
.cart-upsell__btn:hover { background:#e6a600; }

/* ==========================================
   Order tracking
   ========================================== */
.track-page { padding: 60px 0 100px; }
.track-form { max-width:520px; margin:0 auto 40px; padding:32px; background:var(--c-bg-soft); border-radius:var(--radius-lg); border:1px solid var(--c-border); }
.track-form .form-row { display:grid; gap:8px; margin-bottom:16px; }
.track-form input { padding:12px 14px; border:1px solid var(--c-border); border-radius:var(--radius-sm); font:inherit; }
.track-result { max-width:780px; margin:0 auto; }
.track-card { background:#fff; border:1px solid var(--c-border); border-radius:var(--radius-lg); padding:28px; }
.track-card h2 { margin:0 0 4px; }
.track-status-chip { display:inline-block; padding:4px 12px; border-radius:999px; font-size:12px; font-weight:600; background:#E8F5EE; color:#0A7B3F; margin-bottom:16px; }
.track-status-chip.processing { background:#FFF8E1; color:#8a6900; }
.track-status-chip.dispatched { background:#E3F2FD; color:#1565C0; }
.track-status-chip.delivered { background:#E8F5EE; color:#0A7B3F; }
.track-timeline { list-style:none; padding:0; margin:24px 0 0; position:relative; }
.track-timeline::before { content:''; position:absolute; left:11px; top:8px; bottom:8px; width:2px; background:var(--c-border); }
.track-timeline li { position:relative; padding:0 0 20px 36px; }
.track-timeline li::before { content:''; position:absolute; left:4px; top:4px; width:16px; height:16px; border-radius:50%; background:#fff; border:2px solid var(--c-border); }
.track-timeline li.done::before { background:#0A7B3F; border-color:#0A7B3F; }
.track-timeline li.active::before { background:#FFB800; border-color:#FFB800; box-shadow:0 0 0 4px rgba(255,184,0,.2); }
.track-timeline strong { display:block; font-size:14px; }
.track-timeline span { color:var(--c-text-muted); font-size:13px; }

/* ==========================================
   Blog
   ========================================== */
.blog-list { display:grid; gap:24px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.blog-card { background:#fff; border:1px solid var(--c-border); border-radius:var(--radius-lg); padding:28px; transition:transform .2s, box-shadow .2s; }
.blog-card:hover { transform:translateY(-4px); box-shadow:0 8px 24px rgba(0,0,0,.08); }
.blog-card__meta { display:flex; gap:8px; font-size:12px; color:var(--c-text-muted); margin-bottom:12px; }
.blog-card__tag { background:#E8F5EE; color:#0A7B3F; padding:2px 10px; border-radius:999px; font-weight:600; }
.blog-card h3 { font-size:18px; margin:0 0 8px; }
.blog-card h3 a { color:var(--c-text); text-decoration:none; }
.blog-card h3 a:hover { color:var(--c-primary); }
.blog-card p { font-size:14px; color:var(--c-text-muted); margin:0; line-height:1.5; }
.blog-article { max-width:780px; margin:0 auto; padding:60px 24px 100px; }
.blog-article h1 { font-size:2.2rem; line-height:1.2; margin-bottom:8px; }
.blog-article .blog-meta { color:var(--c-text-muted); font-size:14px; margin-bottom:32px; padding-bottom:16px; border-bottom:1px solid var(--c-border); }
.blog-article h2 { font-size:1.5rem; margin:32px 0 12px; }
.blog-article h3 { font-size:1.15rem; margin:24px 0 8px; }
.blog-article p { line-height:1.7; margin:0 0 16px; font-size:16px; }
.blog-article ul { line-height:1.7; padding-left:24px; }
.blog-article ul li { margin-bottom:6px; }
.blog-article blockquote { border-left:3px solid var(--c-primary); padding:12px 20px; margin:24px 0; background:var(--c-bg-soft); border-radius:0 var(--radius-sm) var(--radius-sm) 0; color:var(--c-text-muted); font-style:italic; }

@media (max-width: 620px) {
  .review-card { padding:18px; }
  .blog-article h1 { font-size:1.6rem; }
}

/* ==========================================
   Legal / Institutional pages (legal, terms, privacy, cookies, refund, shipping, research-disclaimer, about, contact)
   ========================================== */
.legal-page { background: #fff; }
.legal-hero { background: linear-gradient(180deg, #F4F8F5 0%, #ffffff 100%); padding: 64px 0 40px; border-bottom: 1px solid var(--c-border); }
.legal-hero .container { max-width: 920px; }
.legal-hero h1 { font-size: clamp(28px, 4vw, 42px); margin: 8px 0 12px; line-height: 1.15; }
.legal-hero p { color: var(--c-text-muted); font-size: 16px; margin: 0; max-width: 720px; }
.legal-section { padding: 56px 0 80px; }
.legal-section .container { max-width: 920px; }
.legal-document { font-size: 15.5px; line-height: 1.75; color: var(--c-text); }
.legal-document h2 { font-size: 22px; margin: 36px 0 12px; padding-top: 12px; border-top: 1px solid var(--c-border); color: var(--c-text); }
.legal-document h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-document h3 { font-size: 17px; margin: 24px 0 8px; }
.legal-document p { margin: 0 0 14px; }
.legal-document ul, .legal-document ol { margin: 0 0 16px; padding-left: 22px; }
.legal-document ul li, .legal-document ol li { margin-bottom: 6px; }
.legal-document a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 2px; }
.legal-document a:hover { text-decoration: none; }
.legal-document strong { color: var(--c-text); }
.legal-document hr { border: 0; border-top: 1px solid var(--c-border); margin: 32px 0; }

.legal-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 8px; }
.legal-card { display: block; background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 22px 24px; text-decoration: none; color: var(--c-text); transition: transform .15s, box-shadow .15s, border-color .15s; }
.legal-card:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.06); border-color: var(--c-primary); }
.legal-card strong { display: block; font-size: 16px; margin-bottom: 6px; color: var(--c-text); }
.legal-card span { display: block; font-size: 13.5px; color: var(--c-text-muted); line-height: 1.55; }

.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 14px; }
.legal-table th, .legal-table td { padding: 10px 12px; border: 1px solid var(--c-border); text-align: left; vertical-align: top; }
.legal-table thead th { background: var(--c-bg-soft); font-weight: 600; }
.legal-table tbody tr:nth-child(even) td { background: #FAFBFA; }

.legal-notice { margin-top: 36px; padding: 24px 26px; background: var(--c-bg-soft); border: 1px solid var(--c-border); border-left: 4px solid var(--c-primary); border-radius: var(--radius-sm); }
.legal-notice h2 { font-size: 17px; margin: 0 0 10px; padding: 0; border: 0; }
.legal-notice ul { margin: 0; padding-left: 20px; font-size: 14.5px; line-height: 1.65; color: var(--c-text-soft); }
.legal-notice ul li { margin-bottom: 6px; }

.legal-toc { background: var(--c-bg-soft); border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 18px 22px; margin: 0 0 28px; font-size: 14px; }
.legal-toc strong { display: block; margin-bottom: 8px; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--c-text-muted); }
.legal-toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 28px; }
.legal-toc ol li { margin-bottom: 4px; break-inside: avoid; }
.legal-toc a { color: var(--c-text); text-decoration: none; }
.legal-toc a:hover { color: var(--c-primary); text-decoration: underline; }

@media (max-width: 640px) {
  .legal-hero { padding: 40px 0 28px; }
  .legal-section { padding: 36px 0 60px; }
  .legal-document { font-size: 15px; }
  .legal-toc ol { columns: 1; }
}

/* UK postcode lookup row */
.postcode-lookup-cell { display:flex; flex-direction:column; gap:6px; }
.postcode-lookup-cell__spacer { display:block; font-size:13px; color:transparent; user-select:none; }
.postcode-lookup-cell .btn { margin-top:0; }
@media (max-width: 540px) {
  .row-2#ukPostcodeRow { grid-template-columns: 1fr; }
  .postcode-lookup-cell__spacer { display:none; }
}
