/* ========================================
   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;
  overflow-x: hidden;
}
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 { font-family: inherit; cursor: pointer; border: 0; background: 0; }
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 24px; }

/* ===== Top Bar ===== */
.topbar {
  background: var(--c-primary-dark);
  color: #fff;
  font-size: 13px;
  overflow: hidden;
}
.topbar__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  padding: 10px 0;
}
.topbar__item { display: inline-flex; align-items: center; padding: 0 24px; gap: 8px; }
.topbar__star { color: var(--c-accent); }
@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);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 32px;
}
.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__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;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--c-bg-soft);
  align-items: center; justify-content: center;
}
.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--c-text);
  position: relative;
  transition: .25s;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ''; position: absolute; left: 0;
  width: 22px; height: 2px; background: var(--c-text);
  transition: .25s;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

/* ===== 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; }
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--c-border);
    transform: translateY(-120%);
    transition: transform .3s;
    box-shadow: var(--shadow-lg);
  }
  .nav.open { transform: translateY(0); }
  .nav__link { width: 100%; }
  .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:linear-gradient(135deg,#0E1B14,#0A7B3F); color:#fff; padding:32px; border-radius:16px; margin-top:40px; }
.security-note h3 { margin:0 0 16px; font-family:'Space Grotesk',sans-serif; }
.security-note ul { margin:0; padding-left:20px; line-height:1.7; }
.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; }

.coin-picker { display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); gap:10px; margin-top:16px; }
.coin-btn { display:flex; flex-direction:column; align-items:center; gap:6px; padding:16px; background:#fff; border:2px solid #d8e2dc; border-radius:12px; cursor:pointer; transition:all .15s; font-family:inherit; }
.coin-btn img { width:42px; height:42px; border-radius:6px; object-fit:cover; }
.coin-btn span { font-size:.85rem; color:#5a6960; }
.coin-btn b { font-family:'Space Grotesk',sans-serif; color:#0E1B14; font-size:1.1rem; }
.coin-btn:hover { border-color:#0A7B3F; }
.coin-btn.active { border-color:#0A7B3F; background:#f0faf3; box-shadow:0 0 0 3px rgba(10,123,63,.15); }

.pay-panel { margin-top:24px; padding:24px; background:#f7faf7; border-radius:14px; border:1px solid #d8e2dc; }
.pay-grid { display:grid; grid-template-columns:240px 1fr; gap:24px; align-items:start; }
@media (max-width:700px) { .pay-grid { grid-template-columns:1fr; } }
.pay-qr { text-align:center; }
.pay-qr img { width:100%; max-width:240px; height:auto; border-radius:12px; box-shadow:0 4px 16px rgba(0,0,0,.1); background:#fff; padding:8px; }
.pay-network { font-size:.8rem; color:#5a6960; margin-top:8px; }
.pay-info { display:flex; flex-direction:column; gap:10px; }
.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; }
.copy-row { display:flex; gap:8px; }
.copy-row input { flex:1; padding:12px; font-family:'Courier New',monospace; font-size:.85rem; border:1px solid #d8e2dc; border-radius:8px; background:#fff; }
.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 */
.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-gallery { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.product-gallery img { width:100%; border-radius:12px; background:#f7faf7; }
.product-gallery img:first-child { grid-column:1/-1; }
.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; }
