:root {
  --bg: #f6f7f1;
  --surface: #ffffff;
  --surface-soft: #f8fbf4;
  --text: #1f2a1f;
  --muted: #657067;
  --line: #dce7d6;
  --brand: #4f8a10;
  --brand-dark: #356108;
  --brand-soft: #dff0c9;
  --accent: #ffb545;
  --shadow: 0 18px 48px rgba(26, 44, 20, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 181, 69, 0.15), transparent 28%),
    linear-gradient(180deg, #f4f9ed 0%, var(--bg) 240px, var(--bg) 100%);
}

body.has-cookie-banner {
  overflow: hidden;
}

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

.topbar__inner,
.header__inner,
.nav__inner,
.container,
.footer__inner,
.subfooter__inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(90deg, #3f7210, #5a9b17);
  color: #fff;
  font-size: 0.92rem;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 231, 214, 0.85);
}

.header__inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #4f8a10, #2f6a16);
  border-radius: 18px;
  padding: 10px 16px;
  min-height: 78px;
  box-shadow: 0 10px 24px rgba(34, 77, 16, 0.18);
}

.brand img {
  width: 190px;
  height: auto;
}

.searchbar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px 10px 18px;
}

.searchbar input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.button,
.button-secondary,
.searchbar button,
.qty-control button,
.chip,
.icon-pill,
.nav__toggle {
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.button,
.searchbar button {
  border: 0;
  cursor: pointer;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
}

.button-secondary,
.icon-pill,
.nav__toggle {
  background: #fff;
  color: var(--brand-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 700;
}

.button:hover,
.button-secondary:hover,
.searchbar button:hover,
.qty-control button:hover,
.chip:hover,
.icon-pill:hover,
.nav__toggle:hover {
  transform: translateY(-1px);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(26, 44, 20, 0.04);
}

.icon-pill__count {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.85rem;
}

.nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

.nav__toggle {
  display: none;
  border-radius: 12px;
  padding: 10px 14px;
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-weight: 700;
  color: #364037;
}

.nav__links a {
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
}

.hero,
.page-hero { padding: 30px 0 10px; }

.benefits-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.benefits-strip__inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.benefit-item {
  padding: 18px 22px 14px;
  text-align: center;
  position: relative;
}

.benefit-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 42px;
  background: var(--line);
}

.benefit-item strong {
  display: block;
  font-size: 1rem;
  color: #173a71;
  margin-bottom: 6px;
}

.benefit-item span {
  color: #324056;
  line-height: 1.4;
}

.hero__grid,
.detail-layout,
.checkout-grid,
.footer-grid,
.feature-grid,
.editorial-grid,
.info-grid,
.category-grid,
.product-grid,
.support-grid,
.mini-grid {
  display: grid;
  gap: 18px;
}

.hero__grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.9fr);
  gap: 24px;
}

.hero__content,
.hero__panel,
.panel,
.product-card,
.detail-card,
.summary-card,
.empty-state,
.auth-card,
.policy-card,
.status-card,
.support-card,
.feature-card,
.category-card,
.editorial-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(220, 231, 214, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero__content {
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(79, 138, 16, 0.92), rgba(95, 154, 25, 0.88)),
    url("images/full-frame-shot-of-white-pills-1032725754-5ba6db83c9e77c00826b3fc3.jpg") center/cover;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.hero__content::before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.eyebrow,
.tag,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.84rem;
  font-weight: 700;
}

.eyebrow {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tag,
.chip {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--brand-dark);
}

.tag.sale {
  background: #fff3dc;
  border-color: #ffd89a;
  color: #9b6500;
}

.chip {
  cursor: pointer;
}

.chip.is-active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.hero h1,
.page-hero h1,
.section-heading h2,
.detail-main h1,
.auth-card h1 {
  margin: 16px 0 12px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); max-width: 10ch; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.detail-main h1,
.auth-card h1 { font-size: clamp(2rem, 4.6vw, 3.5rem); }

.hero p,
.page-hero p,
.detail-main p,
.policy-card p,
.policy-card li,
.copy-muted,
.fineprint,
.product-card p,
.category-card p,
.editorial-card p,
.support-card p,
.feature-card p,
.muted {
  line-height: 1.75;
  color: var(--muted);
}

.hero p { color: rgba(255, 255, 255, 0.92); }

.hero__actions,
.cta-row,
.detail-actions,
.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.stat strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.hero__panel,
.panel,
.summary-card,
.auth-card,
.detail-card,
.status-card,
.policy-card,
.support-card,
.feature-card,
.category-card,
.editorial-card,
.empty-state {
  padding: 26px;
}

.panel-label,
.section-label {
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-highlight {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 16px;
  background: var(--surface-soft);
  border-radius: 20px;
  border: 1px solid var(--line);
  margin-top: 16px;
}

.hero-highlight img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.section { padding: 24px 0 0; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-heading h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); }
.section-heading p { max-width: 58ch; color: var(--muted); line-height: 1.7; }

.quicklinks-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.quicklink-card {
  display: grid;
  gap: 8px;
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(220, 231, 214, 0.92);
  box-shadow: var(--shadow);
}

.quicklink-card strong {
  color: #173a71;
  font-size: 1rem;
}

.quicklink-card span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.category-grid,
.product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.trustpilot-band {
  position: relative;
  overflow: hidden;
  padding: 44px 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(79, 138, 16, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 181, 69, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff, #f9fbf6);
  border: 1px solid rgba(220, 231, 214, 0.95);
  box-shadow: var(--shadow);
}

.trustpilot-band::before,
.trustpilot-band::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(53, 97, 8, 0.08);
  pointer-events: none;
}

.trustpilot-band::before {
  top: -160px;
  left: -130px;
}

.trustpilot-band::after {
  right: -150px;
  bottom: -160px;
}

.trustpilot-band__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 28px;
}

.trustpilot-band__header h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.3vw, 3rem);
  color: #0b4f7e;
}

.trustpilot-band__summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(220, 231, 214, 0.95);
}

.trustpilot-band__summary p {
  margin: 0;
  font-size: 1.05rem;
  color: #3f4b5a;
}

.trustpilot-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
  padding: 28px 24px 24px;
  border-radius: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 231, 214, 0.96);
  backdrop-filter: blur(6px);
}

.review-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: #505b67;
}

.review-card__footer {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-top: 26px;
}

.review-card__footer strong {
  font-size: 1rem;
  color: #3f4b5a;
}

.trustpilot-stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trustpilot-star {
  font-size: 1.85rem;
  line-height: 1;
  color: #ffc107;
  text-shadow: 0 4px 10px rgba(255, 193, 7, 0.18);
}

.category-card,
.editorial-card,
.feature-card,
.support-card {
  border-radius: var(--radius-lg);
}

.category-card {
  background: linear-gradient(180deg, #f9fcf5, #ffffff);
}

.category-card img {
  height: 110px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.product-card { overflow: hidden; }

.showcase {
  background: #0d3970;
  border-radius: var(--radius-xl);
  padding: 24px 24px 30px;
  box-shadow: var(--shadow);
}

.showcase__tabs {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.showcase__tab {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #fff;
  font-size: 1.1rem;
  padding: 6px 4px 14px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.75);
  min-width: 230px;
  text-align: center;
}

.showcase__tab.is-active {
  color: #ffd233;
  border-bottom-color: #ffd233;
}

.showcase__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.showcase__grid.is-switching {
  opacity: 0.72;
  transform: translateY(4px);
}

.showcase-card {
  background: #f3f1fa;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  min-height: 100%;
}

.showcase-card__top {
  background: #fff;
  padding: 18px 16px 0;
  min-height: 185px;
  display: grid;
  place-items: center;
}

.showcase-card__top img {
  width: 100%;
  max-width: 148px;
  height: 170px;
  object-fit: contain;
}

.showcase-card__body {
  padding: 18px 16px 22px;
  text-align: center;
}

.showcase-card h3 {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.4;
  min-height: 88px;
}

.showcase-card .price {
  display: block;
  margin-bottom: 16px;
}

.showcase-card .old-price {
  display: block;
  margin-bottom: 6px;
}

.showcase-card .button {
  width: 100%;
  justify-content: center;
  background: #0b4b85;
}

.showcase-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #e21818;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
  line-height: 1.05;
  font-size: 0.95rem;
}

.blog-band {
  padding: 10px 0 4px;
}

.blog-band__header {
  text-align: center;
  margin-bottom: 22px;
}

.blog-band__badge {
  display: inline-block;
  background: #2b68c7;
  color: #fff;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.blog-band__title {
  display: inline-block;
  background: #2b68c7;
  color: #fff;
  padding: 6px 12px;
  font-weight: 700;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.blog-card__body {
  padding: 18px 18px 20px;
  text-align: center;
}

.blog-card__body h3 {
  margin: 0 0 12px;
  color: #0f9bb4;
  font-size: 1rem;
  line-height: 1.35;
}

.blog-card__body p {
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.65;
}

.blog-card__link {
  color: #0b4b85;
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 320px;
  gap: 24px;
}

.article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.article-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.article-card__body {
  padding: 28px;
}

.article-card__body h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.article-card__body p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 16px;
}

.article-card__body h2 {
  margin: 24px 0 10px;
  font-size: 1.35rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.product-card__image {
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f5faef, #eef4e8);
  padding: 16px;
  min-height: 158px;
}

.product-card__image img {
  height: 188px;
  object-fit: contain;
}

.product-card__placeholder,
.detail-card__placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(180deg, #edf3e7, #e5ece0);
  color: #31572c;
  border: 1px dashed rgba(79, 138, 16, 0.28);
}

.product-card__placeholder {
  width: 100%;
  min-height: 118px;
  padding: 16px;
}

.detail-card__placeholder {
  width: min(100%, 320px);
  min-height: 320px;
  padding: 24px;
}

.product-card__placeholder span,
.detail-card__placeholder span {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card__placeholder small,
.detail-card__placeholder small {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #587153;
}

.product-card__body { padding: 18px; }

.product-card__status {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11, 75, 133, 0.94);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-soon-note {
  margin: 10px 0 14px;
  color: #0b4b85;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.coming-soon-note--detail {
  font-size: 1rem;
}

.button-secondary--coming-soon {
  background: #eef4e8;
  color: var(--brand-dark);
  border-color: #d2dec8;
  width: 100%;
  justify-content: center;
  cursor: default;
  pointer-events: none;
}

.product-card__meta,
.detail-meta,
.chip-row,
.inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 18px;
}

.price {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.old-price {
  color: #8d998f;
  text-decoration: line-through;
  font-weight: 700;
}

.page-hero__box {
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 235, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.breadcrumbs span:last-child {
  color: var(--text);
  font-weight: 700;
}

.detail-layout {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  margin-top: 18px;
}

.detail-card__media {
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f7fbf2, #eef4e8);
  border-radius: 22px;
  min-height: 380px;
  overflow: hidden;
}

.detail-card__media img {
  width: min(100%, 320px);
  height: auto;
}

.benefit-list,
.policy-list,
.summary-list,
.account-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.benefit-list li,
.summary-list li,
.account-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.detail-panel-stack {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.detail-panel {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
}

.detail-panel h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.detail-panel p {
  margin: 0 0 12px;
  line-height: 1.75;
  color: var(--muted);
}

.detail-panel p:last-child {
  margin-bottom: 0;
}

.feature-grid,
.editorial-grid,
.info-grid,
.mini-grid,
.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.support-card__media {
  display: grid;
  place-items: center;
  height: 240px;
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7fbf2, #eef4e8);
}

.support-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.support-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #d9e3e8, #c6d8e1);
  color: #3e5870;
  text-align: center;
  padding: 16px;
  font-weight: 700;
}

.support-card__list {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 10px 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.support-card .button-secondary {
  margin-top: auto;
  align-self: flex-start;
}

.editorial-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.inline-form input,
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  outline: 0;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.checkout-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 700;
  color: #334033;
}

.summary-card {
  position: sticky;
  top: 150px;
}

.summary-row,
.cart-row,
.cart-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 120px 110px 110px;
  gap: 12px;
  align-items: center;
}

.cart-head {
  padding: 0 0 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.cart-row {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.cart-product {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
}

.cart-product img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f5faef, #eef4e8);
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.qty-control button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 1.08rem;
  font-weight: 800;
}

.auth-wrap {
  width: min(480px, calc(100% - 32px));
  margin: 32px auto 0;
}

.message {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.message.success {
  background: #e7f5d7;
  color: var(--brand-dark);
}

.message.error {
  background: #ffe6e1;
  color: #92311f;
}

.empty-state {
  text-align: center;
}

.footer {
  margin-top: 42px;
  background: #1d271b;
  color: #e7efe1;
}

.footer__inner {
  padding: 42px 0 28px;
}

.footer-grid {
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
}

.newsletter {
  position: relative;
  padding: 30px 0 0;
  margin-top: 26px;
  background:
    linear-gradient(180deg, #f5f3fb 0 58px, #ffcf1c 58px 64px, #12345e 64px 100%);
}

.newsletter__box {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(520px, 1.2fr);
  align-items: center;
  gap: 28px;
  width: min(1140px, calc(100% - 64px));
  margin: 0 auto;
  padding: 30px 38px;
  border-radius: 22px;
  background: #fff;
  border: 0;
  color: var(--text);
  box-shadow: 0 18px 40px rgba(17, 39, 68, 0.12);
}

.newsletter__copy {
  max-width: 22ch;
}

.newsletter__box h2 {
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: #19293c;
  font-weight: 800;
}

.newsletter__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 14px;
  width: 100%;
  margin: 0;
}

.newsletter__form input {
  width: 100%;
  height: 54px;
  padding: 0 28px;
  border: 1px solid #d3d3d8;
  border-radius: 999px;
  font-size: 0.98rem;
  background: #fff;
  box-shadow: none;
  color: #1f2d3d;
}

.newsletter__form input::placeholder {
  color: #bbb9c1;
}

.newsletter__form button {
  border: 0;
  border-radius: 999px;
  background: #108c9d;
  color: #fff;
  font-weight: 700;
  font-size: 0.96rem;
  cursor: pointer;
  height: 54px;
  padding: 0 22px;
}

.newsletter .message {
  width: min(1140px, calc(100% - 64px));
  margin: 14px auto 0;
}

.social-row {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}

.social-link {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
}

.social-link.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social-link.facebook {
  background: #1877f2;
}

.social-link.twitter {
  background: #1da1f2;
}

.social-link.whatsapp {
  background: #25d366;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.32);
}

.floating-whatsapp__icon {
  font-size: 1.35rem;
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  background: rgba(14, 20, 18, 0.52);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__dialog {
  width: min(680px, calc(100% - 24px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  border-radius: 28px;
  background: #ffffff;
  color: #17341f;
  box-shadow: 0 24px 60px rgba(10, 18, 26, 0.22);
  border: 1px solid rgba(79, 138, 16, 0.14);
  transform: translateY(18px);
  transition: transform 0.22s ease;
}

.cookie-banner.is-visible .cookie-banner__dialog {
  transform: translateY(0);
}

.cookie-banner__copy {
  display: grid;
  gap: 8px;
}

.cookie-banner__copy strong {
  font-size: 1.18rem;
}

.cookie-banner__copy span {
  color: #49594f;
  line-height: 1.6;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner .button-secondary {
  background: #fff;
  color: #17341f;
  border-color: rgba(23, 52, 31, 0.14);
}

.upcoming-launches {
  position: relative;
  padding-top: 34px;
}

.upcoming-launches::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 420px;
  background:
    linear-gradient(90deg, rgba(20, 51, 33, 0.82), rgba(79, 138, 16, 0.52)),
    url("images/main_FoodsThatCanReplaceMultivitamin.jpg") center/cover no-repeat;
  pointer-events: none;
  box-shadow: inset 0 -120px 120px rgba(246, 247, 241, 0.22);
}

.upcoming-launches .container {
  position: relative;
  z-index: 1;
}

.upcoming-launches .section-heading {
  margin-bottom: 16px;
  padding-top: 40px;
}

.upcoming-launches .section-label,
.upcoming-launches .section-heading h2,
.upcoming-launches .section-heading p {
  color: #fff;
}

.upcoming-launches .section-heading p {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.88);
}

.footer a,
.footer p {
  color: #d0dcc8;
  line-height: 1.8;
}

.subfooter {
  border-top: 1px solid rgba(208, 220, 200, 0.16);
}

.subfooter__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  color: #b8c7b2;
  font-size: 0.92rem;
}

.subfooter__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.payment-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 7px 12px;
  border-radius: 10px;
  background: #fff;
  color: #1f2d3d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 1px rgba(20, 42, 69, 0.08);
}

.payment-badge.visa { color: #1434cb; }
.payment-badge.mastercard { color: #e35205; }
.payment-badge.maestro { color: #0099df; }
.payment-badge.amex { color: #2e77bc; }
.payment-badge.klarna { color: #111; background: #ffb3c7; }
.payment-badge.paypal { color: #003087; }

@media (max-width: 1100px) {
  .header__inner,
  .hero__grid,
  .detail-layout,
  .checkout-grid,
  .footer-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .header__actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .category-grid,
  .product-grid,
  .showcase__grid,
  .blog-grid,
  .quicklinks-grid,
  .trustpilot-grid,
  .feature-grid,
  .editorial-grid,
  .info-grid,
  .support-grid,
  .mini-grid,
  .benefits-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 14px;
  }

  .nav.is-open .nav__links {
    display: flex;
  }

  .topbar__inner,
  .subfooter__inner,
  .section-heading,
  .hero__stats,
  .field-grid,
  .summary-row,
  .cart-head,
  .cart-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .subfooter__meta,
  .payment-row {
    justify-content: flex-start;
  }

  .category-grid,
  .product-grid,
  .showcase__grid,
  .blog-grid,
  .trustpilot-grid,
  .feature-grid,
  .editorial-grid,
  .info-grid,
  .support-grid,
  .mini-grid,
  .benefits-strip__inner,
  .newsletter__form {
    grid-template-columns: 1fr;
  }

  .newsletter__box {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(100%, calc(100% - 24px));
    padding: 24px 20px;
  }

  .newsletter__copy {
    max-width: none;
  }

  .newsletter {
    padding-top: 24px;
    background:
      linear-gradient(180deg, #f5f3fb 0 48px, #ffcf1c 48px 54px, #12345e 54px 100%);
  }

  .newsletter .message {
    width: min(100%, calc(100% - 24px));
  }

  .cookie-banner {
    padding: 12px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .cookie-banner__dialog {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__actions .button,
  .cookie-banner__actions .button-secondary {
    width: 100%;
    justify-content: center;
  }

  .upcoming-launches {
    padding-top: 20px;
  }

  .upcoming-launches::before {
    height: 500px;
  }

  .hero__content,
  .hero__panel,
  .page-hero__box,
  .panel,
  .trustpilot-band,
  .summary-card,
  .auth-card,
  .detail-card,
  .feature-card,
  .support-card,
  .category-card,
  .editorial-card {
    padding: 22px;
  }

  .cart-product {
    grid-template-columns: 64px 1fr;
  }

  .trustpilot-band {
    padding: 28px 20px;
  }

  .trustpilot-band__summary {
    border-radius: 22px;
    padding: 12px 16px;
  }

  .review-card {
    min-height: auto;
    padding: 24px 18px;
  }

  .benefit-item:not(:last-child)::after {
    display: none;
  }
}
