*, *::before, *::after {
  box-sizing: border-box;
}

/* ==========================================================================
   Storefront CSS Architecture
   --------------------------------------------------------------------------
   1. Foundations: tokens, reset, base typography, layout primitives
   2. Global UI: buttons, labels, reusable layout atoms
   3. Navigation
   4. Landing blocks
   5. Content blocks
   6. Generic pages and forms
   7. Commerce flows
   8. Protocols
   9. Auth and account
  10. Overlays
  11. Footer
  12. Responsive overrides

   Rules:
   - Prefer reusable component classes over page-specific namespaces.
   - Compose existing blocks in templates before adding new selectors.
   - Keep one storefront system; avoid per-page mini design systems.
   ========================================================================== */

/* ── 1. Foundations ───────────────────────────────────────────────────────── */
:root {
  --store-orange: #ff6f3f;
  --store-orange-dark: #e85a2a;
  --store-green: #013c35;
  --store-green-soft: #025a50;
  --store-cream: #f7f6f3;
  --store-border: #e5e0d8;
  --store-text: #111111;
  --store-muted: #666666;
  --store-white: #ffffff;
  --store-shadow: 0 18px 55px rgba(1, 60, 53, 0.11);
  /* ── Shared design language (premium home + cards) ── */
  --abb-radius: 20px;
  --abb-radius-sm: 14px;
  --abb-ease: 0.25s ease;
  --abb-lift-shadow: 0 30px 60px rgba(1, 60, 53, 0.14);
  --abb-soft-shadow: 0 22px 50px rgba(1, 60, 53, 0.10);
  --abb-glow: radial-gradient(120% 100% at 100% 0, rgba(255, 111, 63, 0.22), transparent 55%);
  --abb-panel: linear-gradient(160deg, #faf9f7, #efece5);
  --abb-pain-tint: rgba(255, 111, 63, 0.07);
  --abb-pain-bar: rgba(255, 111, 63, 0.55);
  --abb-sol-tint: rgba(1, 60, 53, 0.06);
  --abb-sol-bar: rgba(1, 60, 53, 0.5);
}

/* Shared "lift on hover" surface — one rule for every premium card. */
.product-card,
.home-path-card,
.trust-card,
.blog-card,
.prt-card,
.audience-card {
  border-radius: var(--abb-radius);
  transition: transform var(--abb-ease), box-shadow var(--abb-ease), border-color var(--abb-ease);
}
.product-card:hover,
.home-path-card:hover,
.trust-card:hover,
.blog-card:hover,
.prt-card:hover,
.audience-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--abb-lift-shadow);
}

/* Shared accent panel: deep green + warm corner glow. */
.abb-accent {
  position: relative;
  background: var(--store-green);
  color: var(--store-white);
  overflow: hidden;
}
.abb-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background: var(--abb-glow);
  pointer-events: none;
}
.abb-accent > * { position: relative; }

/* Shared arrow link that nudges on hover. */
.abb-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--store-orange);
  text-decoration: none;
}
.abb-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  transition: transform 0.2s ease;
}
:hover > .abb-arrow svg,
.abb-arrow:hover svg { transform: translateX(4px); }

html {
  scroll-behavior: smooth;
}

body.store-page {
  margin: 0;
  background: var(--store-cream);
  color: var(--store-text);
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.shell {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

/* ── 2. Global UI ─────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--store-orange);
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--store-orange);
  color: var(--store-white);
  box-shadow: 0 12px 30px rgba(255, 111, 63, 0.28);
}

.button--primary:hover {
  background: var(--store-orange-dark);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.84);
}

.button--ghost:hover {
  border-color: var(--store-orange);
  color: var(--store-orange);
}

/* ── 3. Navigation ────────────────────────────────────────────────────────── */
.store-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(1, 60, 53, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.store-header--solid {
  background: rgba(1, 60, 53, 0.98);
}

.store-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.store-header__brand {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.4vw, 14px);
  min-width: 0;
  flex: 0 1 auto;
}

.store-logo img {
  height: clamp(36px, 4.5vw, 48px);
  width: auto;
}

.store-wordmark,
.store-logo {
  color: var(--store-orange);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.store-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
}

.store-nav__links,
.store-nav__actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
}

.store-nav__actions {
  gap: clamp(8px, 1.2vw, 14px);
}

.store-nav__contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 6px 4px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  flex: 0 0 auto;
}

.store-nav__phone,
.store-nav a.store-nav__phone {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 6px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.store-nav__phone:hover,
.store-nav a.store-nav__phone:hover {
  color: var(--store-orange);
}

.store-nav__social {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 111, 63, 0.13);
  color: var(--store-orange);
}

.store-nav__social svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.store-nav__social:nth-of-type(2) svg,
.store-nav__social:nth-of-type(3) svg {
  fill: currentColor;
  stroke: none;
}

.store-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.18s ease;
}

.store-nav a:hover {
  color: var(--store-orange);
}

.store-nav__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.store-nav__cart:hover {
  border-color: var(--store-orange);
  background: rgba(255, 111, 63, 0.12);
}

.store-nav__count {
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  margin-left: 6px;
  place-items: center;
  border-radius: 999px;
  background: var(--store-orange);
  color: var(--store-white);
  font-size: 10px;
  font-weight: 900;
}

.store-nav__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.store-nav__label {
  display: inline-block;
  line-height: 1;
}

.store-nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--store-white);
  cursor: pointer;
}

.store-nav__toggle-bar {
  display: block;
  width: 16px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.store-nav__toggle[aria-expanded="true"] .store-nav__toggle-bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.store-nav__toggle[aria-expanded="true"] .store-nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.store-nav__toggle[aria-expanded="true"] .store-nav__toggle-bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.store-nav__toggle .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.store-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.store-mobile-menu--open {
  opacity: 1;
  pointer-events: auto;
}

.store-mobile-menu__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.store-mobile-menu--open .store-mobile-menu__overlay {
  opacity: 1;
}

.store-mobile-menu__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(320px, 88vw);
  height: 100%;
  padding: 22px 18px 28px;
  background:
    linear-gradient(180deg, rgba(1, 60, 53, 0.98), rgba(6, 43, 39, 0.98));
  box-shadow: 18px 0 44px rgba(0, 0, 0, 0.24);
  transform: translateX(-100%);
  transition: transform 0.22s ease;
}

.store-mobile-menu--open .store-mobile-menu__panel {
  transform: translateX(0);
}

.store-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.store-account-btn:hover,
.store-account-btn--logged {
  border-color: rgba(255, 111, 63, 0.42);
  background: rgba(255, 111, 63, 0.12);
  color: var(--store-orange);
}

/* ── 4. Landing blocks ───────────────────────────────────────────────────── */
.store-hero {
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vw, 110px) 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 111, 63, 0.18), transparent 34%),
    radial-gradient(circle at 12% 92%, rgba(255, 255, 255, 0.06), transparent 28%),
    var(--store-green);
  overflow: hidden;
}

.store-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 390px);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.store-hero__content {
  min-width: 0;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: fit-content;
  margin-bottom: clamp(16px, 2.5vw, 32px);
}

.brand-lockup__top {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
}

.brand-lockup__name {
  color: var(--store-orange);
  font-size: clamp(28px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  white-space: nowrap;
}

.brand-lockup__name span {
  color: var(--store-white);
}

.brand-lockup__rule {
  width: 100%;
  margin: clamp(5px, 0.6vw, 8px) 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.brand-lockup__sub {
  display: block;
  color: var(--store-orange);
  font-size: clamp(12px, 1.5vw, 21px);
  font-weight: 600;
  letter-spacing: clamp(1px, 0.25vw, 2.5px);
  text-transform: uppercase;
  text-align: justify;
  text-align-last: justify;
  white-space: nowrap;
}

.store-hero h1 {
  max-width: 740px;
  margin: 0 0 clamp(14px, 2vw, 26px);
  color: var(--store-white);
  font-size: clamp(28px, 4.2vw, 58px);
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.store-hero__title {
  font-size: clamp(20px, 2.8vw, 36px) !important;
  line-height: 1.12;
}

.store-hero h1 em {
  color: var(--store-orange);
  font-style: normal;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.media-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2.6vw, 28px);
  justify-self: center;
  width: min(390px, 72vw);
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.media-panel::after {
  content: "";
  position: absolute;
  inset: 18%;
  z-index: -1;
  border-radius: 999px;
  background: rgba(255, 111, 63, 0.24);
  filter: blur(50px);
}

.media-panel img {
  width: min(100%, 250px);
  height: auto;
}

.metric-strip {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 4px;
}

.metric {
  flex: 1;
  text-align: center;
  padding: 0 8px;
}

.metric__value {
  display: block;
  margin-bottom: 8px;
  color: var(--store-orange);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.metric__label {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.45;
  text-transform: lowercase;
}

.metric-strip__divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.15);
}

.store-cats {
  position: sticky;
  top: 72px;
  z-index: 10;
  background: var(--store-green);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cat-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 66px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.cat-chip:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.cat-chip img {
  width: 36px;
  height: 36px;
  padding: 4px;
  border-radius: 9px;
  background: var(--store-white);
  object-fit: contain;
}

.store-section {
  padding: clamp(56px, 7vw, 92px) 0;
  background: var(--store-white);
}

.store-section--muted {
  background: var(--store-cream);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-head p {
  margin: 16px 0 0;
  color: var(--store-muted);
  font-size: 15px;
  line-height: 1.8;
}

.section-head--centered {
  margin-inline: auto;
  text-align: center;
}

.section-head--centered p {
  margin-inline: auto;
}

.section-head--action {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 36px);
}

.section-head--action > div {
  max-width: 760px;
}

.section-head--action .button {
  flex-shrink: 0;
  margin-bottom: 4px;
}

.section-head--with-media {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}

.section-head__media {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  object-fit: contain;
  justify-self: start;
}

#b2b .section-head--with-media {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

#b2b .section-head__media {
  width: 90px;
  height: 90px;
  max-width: none;
  flex: 0 0 90px;
  border-radius: 10px;
  background: var(--store-cream);
  padding: 6px;
  object-fit: contain;
}

#b2b .eyebrow {
  margin-bottom: 6px;
}

#b2b .section-head p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.75;
}

.section-head h2,
.store-about h1,
.store-about h2,
.simple-page h1 {
  margin: 0;
  color: var(--store-text);
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-head h2 em,
.store-about h1 em,
.store-about h2 em,
.simple-page h1 em {
  color: var(--store-orange);
  font-style: normal;
}

.section-head__title-link {
  color: inherit;
  text-decoration: none;
}

.section-head__title-link:hover {
  color: inherit;
  text-decoration: none;
}

/* ── 5. Content blocks ───────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.product-card,
.blog-card,
.quote-card {
  overflow: hidden;
  border: 1px solid var(--store-border);
  border-radius: 18px;
  background: var(--store-white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.product-card {
  display: flex;
  flex-direction: column;
}

/* Product card packshots are wide 1377x768 assets; keep the media slot close
   to that ratio so the cards do not reserve excess vertical whitespace. */
.product-card__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1377 / 768;
  padding: clamp(10px, 1.45vw, 18px);
  background: var(--abb-panel);
  overflow: hidden;
}

.product-card > img,
.product-card__top img {
  width: auto;
  max-width: 92%;
  height: auto;
  max-height: 88%;
  background: transparent;
  object-fit: contain;
}

.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2vw, 22px);
}

.product-card__rating {
  margin: 0 0 10px;
}

.product-card__rating small {
  color: var(--store-muted);
  font-weight: 600;
}

.product-card__name {
  margin: 0 0 6px;
  color: var(--store-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card__title,
.product-card h3 {
  margin: 0 0 12px;
  color: var(--store-text);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.28;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.product-card__title a {
  color: inherit;
  text-decoration: none;
}

.product-card__title a:hover { color: var(--store-orange); }

.product-card__meta {
  margin: 12px 0 0;
  color: var(--store-muted);
  font-size: 12.5px;
  font-weight: 600;
}

/* Foot: price block on the left, orange cart CTA on the right. */
.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
}

.product-card__price-cur {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--store-muted);
  margin-bottom: 2px;
}

.product-card__price strong,
.product-card__foot strong {
  font-size: clamp(19px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.product-card__foot .inline-cart-form {
  margin: 0;
  flex: none;
}

.product-card__foot .inline-cart-form button {
  width: auto;
  padding: 0 18px;
}

.product-card__detail {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--store-green);
  text-decoration: none;
  transition: color 0.18s ease;
}

.product-card__detail:hover { color: var(--store-orange); }

/* ── Shared carousel ───────────────────────────────────────────────────── */
.content-carousel {
  --carousel-gap: clamp(16px, 2vw, 24px);
  --carousel-visible: 3;
  position: relative;
  margin-top: clamp(28px, 3.5vw, 44px);
}

.content-carousel__viewport {
  overflow: hidden;
}

#homeProtocolsCarousel .content-carousel__viewport {
  padding-top: 8px;
  margin-top: -8px;
}

.content-carousel--scroll .content-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 111, 63, 0.8) rgba(255, 255, 255, 0.16);
}

.content-carousel--scroll .content-carousel__viewport::-webkit-scrollbar {
  height: 8px;
}

.content-carousel--scroll .content-carousel__viewport::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.content-carousel--scroll .content-carousel__viewport::-webkit-scrollbar-thumb {
  background: rgba(255, 111, 63, 0.86);
  border-radius: 999px;
}

.content-carousel__track {
  display: flex;
  gap: var(--carousel-gap);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.content-carousel--scroll .content-carousel__track {
  padding-bottom: 14px;
  transition: none;
  transform: none !important;
}

.content-carousel__item {
  flex: 0 0 calc((100% - (var(--carousel-gap) * (var(--carousel-visible) - 1))) / var(--carousel-visible));
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.content-carousel--scroll .content-carousel__item {
  scroll-snap-align: start;
}

.content-carousel__item > .prt-card,
.content-carousel__item > .blog-card,
.content-carousel__item > .review-card {
  flex: 1;
}

.content-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 100%;
  min-width: 0;
  margin-top: clamp(24px, 3vw, 36px);
}

.content-carousel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 2px solid var(--store-border);
  border-radius: 50%;
  background: var(--store-white);
  cursor: pointer;
  transition: all 0.2s ease;
}

.content-carousel__btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--store-green);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.content-carousel__btn:hover:not(:disabled) {
  border-color: var(--store-orange);
  background: var(--store-orange);
}

.content-carousel__btn:hover:not(:disabled) svg {
  stroke: var(--store-white);
}

.content-carousel__btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.content-carousel__dots {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: min(560px, calc(100vw - 150px));
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 2px;
  scrollbar-width: none;
}

.content-carousel__dots::-webkit-scrollbar {
  display: none;
}

.content-carousel__dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--store-border);
  cursor: pointer;
  transition: all 0.2s ease;
}

.content-carousel__dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--store-orange);
}

.content-carousel--static .content-carousel__nav {
  display: none;
}

.content-carousel .blog-card,
.content-carousel .prt-card,
.content-carousel .review-card {
  width: auto;
  min-width: 0;
}

.store-section--reviews {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(1, 60, 53, 0.98), rgba(2, 80, 72, 0.94)),
    var(--store-green);
}

.store-section--reviews .section-head h2 {
  color: var(--store-white);
}

.store-section--reviews .section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.review-section-head {
  margin-bottom: 26px;
}

.review-carousel {
  --carousel-gap: 22px;
  max-width: 1140px;
  margin-inline: auto;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--abb-radius);
  background: var(--store-white);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
  transition: transform var(--abb-ease), box-shadow var(--abb-ease);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 64px rgba(0, 0, 0, 0.3);
}

.review-card__media {
  position: relative;
  background: var(--store-green);
  aspect-ratio: 9 / 13;
  overflow: hidden;
}

.review-card__media video,
.review-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--store-green);
}

/* No-photo fallback — branded quote panel instead of an empty frame. */
.review-card__media--empty {
  display: grid;
  place-items: center;
}

.review-card__media--empty::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background: var(--abb-glow);
}

.review-card__placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
}

.review-card__ph-quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 0.5;
  font-weight: 700;
  color: var(--store-orange);
}

.review-card__ph-avatar {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--store-white);
  font-size: 24px;
  font-weight: 800;
}

.review-card__ph-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.review-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: 20px;
}

.review-card__name {
  margin: 0 0 6px;
  color: var(--store-orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-card h3 {
  margin: 0;
  color: var(--store-green);
  font-size: 17px;
  line-height: 1.3;
}

.review-card a {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(1, 60, 53, 0.06);
  color: var(--store-green);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.review-card a:hover {
  background: rgba(255, 111, 63, 0.12);
  color: var(--store-orange);
}

.store-section__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 3vw, 34px);
}

.home-path-section {
  padding-top: clamp(30px, 3.5vw, 50px);
  padding-bottom: clamp(44px, 5vw, 68px);
  background:
    linear-gradient(180deg, var(--store-white) 0%, rgba(247, 246, 243, 0.72) 100%);
}

.home-path-section .section-head {
  max-width: 820px;
  margin-bottom: clamp(18px, 2.5vw, 30px);
}

.home-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 22px);
}

.home-path-card {
  display: flex;
  position: relative;
  min-height: 250px;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid var(--store-border);
  background: var(--store-white);
  color: var(--store-text);
  text-decoration: none;
}

.home-path-card__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: rgba(255, 111, 63, 0.12);
  color: var(--store-orange);
}

.home-path-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.home-path-card__kicker {
  position: relative;
  color: var(--store-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.home-path-card strong {
  position: relative;
  display: block;
  color: var(--store-text);
  font-size: clamp(19px, 1.9vw, 23px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.home-path-card p {
  position: relative;
  margin: 0;
  color: var(--store-muted);
  font-size: 14px;
  line-height: 1.6;
}

.home-path-card__action {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--store-green);
  font-size: 13.5px;
  font-weight: 700;
}

.home-path-card__action::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--store-orange);
  border-right: 2px solid var(--store-orange);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.home-path-card:hover .home-path-card__action::after {
  transform: rotate(45deg) translate(2px, -2px);
}

/* Accent card — deep green + warm glow. */
.home-path-card--accent {
  background: var(--store-green);
  border-color: var(--store-green);
  color: var(--store-white);
}

.home-path-card--accent::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background: var(--abb-glow);
  pointer-events: none;
}

.home-path-card--accent .home-path-card__icon {
  background: var(--store-orange);
  color: var(--store-white);
}

.home-path-card--accent .home-path-card__kicker { color: var(--store-orange); }
.home-path-card--accent strong { color: var(--store-white); }
.home-path-card--accent p { color: rgba(255, 255, 255, 0.68); }
.home-path-card--accent .home-path-card__action { color: var(--store-white); }

.store-catalog-section {
  padding: 0 0 clamp(64px, 8vw, 108px);
  background:
    linear-gradient(180deg, rgba(247, 246, 243, 0.82) 0%, rgba(247, 246, 243, 0) 10%),
    var(--store-white);
}

.store-catalog-section__nav-wrap {
  position: sticky;
  top: 72px;
  z-index: 12;
  padding: 0;
  background: var(--store-green);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.store-catalog-nav {
  display: flex;
  gap: 0;
}

.store-catalog-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.8vw, 12px);
  min-height: clamp(48px, 6vw, 58px);
  padding: 0 clamp(12px, 2vw, 28px);
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.store-catalog-nav__link:hover,
.store-catalog-nav__link.active {
  border-bottom-color: var(--store-orange);
  background: transparent;
  color: var(--store-orange);
  transform: none;
  box-shadow: none;
}

.store-catalog-nav__link img {
  width: clamp(24px, 2.5vw, 36px);
  height: clamp(24px, 2.5vw, 36px);
  object-fit: contain;
  border-radius: 8px;
  background: var(--store-white);
  padding: 3px;
}

.store-catalog-nav__link span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.catalog-line {
  padding-top: clamp(28px, 3.5vw, 48px);
  scroll-margin-top: 164px;
}

.catalog-line + .catalog-line {
  margin-top: clamp(40px, 5vw, 72px);
}

.catalog-line__head {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 22px);
  padding: clamp(28px, 3.5vw, 48px) 0 clamp(20px, 2.5vw, 36px);
  border-bottom: 2px solid var(--store-border);
  margin-bottom: clamp(24px, 3vw, 44px);
}

.catalog-line__icon {
  display: grid;
  place-items: center;
  width: clamp(64px, 7vw, 96px);
  height: clamp(64px, 7vw, 96px);
  flex: 0 0 clamp(64px, 7vw, 96px);
  border-radius: 12px;
  background: var(--store-cream);
  border: 0;
  overflow: hidden;
  padding: 4px;
}

.catalog-line__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-line__copy h2 {
  margin: 0;
  color: var(--store-green);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.catalog-line__copy {
  flex: 1 1 auto;
  min-width: 0;
}

.catalog-line__copy h2 span {
  color: var(--store-orange);
}

.catalog-line__copy p {
  max-width: 760px;
  margin: 5px 0 0;
  color: var(--store-muted);
  font-size: 14px;
  line-height: 1.6;
}

.catalog-line__subhead {
  margin: clamp(24px, 3vw, 44px) 0 clamp(14px, 1.8vw, 24px);
  padding-left: 13px;
  border-left: 3px solid var(--store-green);
  color: var(--store-green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.catalog-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
}

.catalog-product-grid + .catalog-line__subhead {
  margin-top: clamp(30px, 4vw, 40px);
}

.catalog-product-grid--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Home catalog cards share the base product-card look; only density differs. */
.product-card--catalog {
  min-height: 100%;
  box-shadow: none;
}

.product-card--catalog .product-card__body {
  padding: clamp(14px, 1.8vw, 20px);
}

.product-card--catalog .product-card__top {
  padding: clamp(10px, 1.25vw, 16px);
}

.product-card--catalog .product-card__title {
  font-size: clamp(16px, 1.6vw, 19px);
}

.product-card--catalog .pc-sci {
  flex: 1;
}

.product-card--catalog .product-card__foot {
  gap: 12px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.trust-card {
  position: relative;
  padding: clamp(28px, 3vw, 34px) clamp(24px, 3vw, 30px) clamp(24px, 3vw, 30px);
  border: 1px solid var(--store-border);
  background: var(--store-white);
  overflow: hidden;
}

.trust-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--store-orange), var(--store-orange-dark));
}

.trust-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.trust-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--store-green);
  color: var(--store-white);
}

.trust-card__icon svg {
  width: 26px;
  height: 26px;
}

.trust-card__no {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(1, 60, 53, 0.1);
}

.trust-card h3 {
  margin: 0 0 10px;
  color: var(--store-text);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.trust-card p {
  margin: 0;
  color: var(--store-muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.home-trust-section {
  padding-top: clamp(34px, 4.5vw, 58px);
}

/* Founder block — editorial split: portrait + credentials. */
.author-note {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
  margin-bottom: clamp(28px, 3.5vw, 44px);
  border: 1px solid var(--store-border);
  border-radius: var(--abb-radius);
  background: var(--store-white);
  overflow: hidden;
  box-shadow: var(--abb-soft-shadow);
}

.author-note__media {
  position: relative;
}

.author-note__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.author-note__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 55%, rgba(1, 60, 53, 0.4));
}

.author-note__sign {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  color: var(--store-white);
}

.author-note__sign b {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.author-note__sign span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.author-note__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 3vw, 44px);
}

.author-note__label {
  margin-bottom: 14px;
  color: var(--store-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.author-note p {
  margin: 0;
  color: var(--store-text);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
}

.author-note__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
  padding: 22px 0;
  border-top: 1px solid var(--store-border);
  border-bottom: 1px solid var(--store-border);
}

.author-note__stat .n {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  color: var(--store-green);
  line-height: 1;
  letter-spacing: -0.02em;
}

.author-note__stat .l {
  display: block;
  margin-top: 7px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--store-muted);
  line-height: 1.35;
}

.author-note a {
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--store-orange);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.author-note a::after {
  content: "\2192";
  transition: transform 0.2s ease;
}

.author-note a:hover::after { transform: translateX(4px); }

@media (max-width: 760px) {
  .author-note { grid-template-columns: 1fr; }
  .author-note__media img { min-height: 280px; }
}

/* article list page uses a regular grid */
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.blog-card {
  display: flex;
  flex-direction: column;
  width: 320px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--store-border);
  background: var(--store-white);
  text-decoration: none;
  color: inherit;
}
.blog-list-grid .blog-card {
  width: auto;
}

.blog-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.5;
  background: var(--store-cream);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(1, 60, 53, 0.42));
}
.blog-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 900;
  color: var(--store-muted);
  opacity: 0.3;
}
.blog-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--store-white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.blog-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}
.blog-card-time {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--store-muted);
  margin-bottom: 11px;
}
.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--store-text);
  margin-bottom: 9px;
}
.blog-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--store-muted);
  flex: 1;
  margin-bottom: 18px;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--store-orange);
  margin-top: auto;
}
.blog-card-link svg { transition: transform 0.2s ease; }
.blog-card:hover .blog-card-link svg { transform: translateX(4px); }

.store-about {
  background: var(--store-cream);
}

.store-about .store-hero--page {
  position: relative;
  min-height: auto;
  padding: 72px 0 80px;
  background: var(--store-green);
}

.store-about .store-hero--page::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 111, 63, 0.13) 0%, transparent 65%);
  pointer-events: none;
}

.store-about .store-hero--page::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 65%);
  pointer-events: none;
}

.store-about .store-hero__grid--single {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.store-about .store-hero__content--wide h1,
.store-about .store-hero--page h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--store-white);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
}

.store-about .store-hero--page .eyebrow {
  padding: 7px 16px;
  border: 1px solid rgba(255, 111, 63, 0.3);
  border-radius: 40px;
  margin-bottom: 28px;
  background: rgba(255, 111, 63, 0.08);
  color: var(--store-orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
}

.store-about .store-hero--page .eyebrow::before {
  width: 6px;
  height: 6px;
}

.store-about .store-hero--page .lead {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.store-about .store-hero--page .lead strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.store-about .store-section {
  background: var(--store-cream);
}

.store-about .store-hero--page + .store-section {
  padding: 64px 0 0;
}

.store-about .store-section--muted {
  padding: 64px 0;
  background: var(--store-cream);
}

.store-about .store-section:nth-of-type(5) {
  padding: 0 0 64px;
}

.store-about .store-section:nth-of-type(6) {
  padding: 0 0 80px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.split p,
.section-copy p {
  color: #333333;
  font-size: 15px;
  line-height: 1.85;
}

.section-copy p {
  margin: 0 0 16px;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.quote-card {
  position: relative;
  padding: clamp(24px, 3vw, 38px);
  background: var(--store-green);
  color: var(--store-white);
  border-color: transparent;
}

.quote-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 111, 63, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.quote-card > * {
  position: relative;
  z-index: 1;
}

.quote-card .eyebrow {
  margin-bottom: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
}

.quote-card .eyebrow::before {
  display: none;
}

.quote-card blockquote {
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.3px;
}

.quote-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
}

.quote-card p strong {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.store-section--author {
  padding: 64px 0;
}

.author-profile {
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--store-border);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 246, 243, 0.96)),
    var(--store-white);
  box-shadow: 0 18px 55px rgba(1, 60, 53, 0.07);
}

.author-profile__intro {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}

.author-profile__media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--store-green);
  box-shadow: 0 18px 42px rgba(1, 60, 53, 0.14);
}

.author-profile__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(1, 60, 53, 0.32));
  pointer-events: none;
}

.author-profile__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.author-profile__summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(20px, 3vw, 34px) 0;
  border-top: 1px solid var(--store-border);
  border-bottom: 1px solid var(--store-border);
}

.author-profile__summary .eyebrow {
  display: block;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
}

.author-profile__summary .eyebrow::before {
  display: none;
}

.author-profile__summary h2 {
  margin-bottom: 10px;
  color: var(--store-green);
}

.author-profile__lead {
  max-width: 720px;
  margin: 0 0 22px;
  color: var(--store-text);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.author-profile__summary > p:not(.author-profile__lead) {
  max-width: 640px;
  margin: 0;
  color: var(--store-muted);
  font-size: 15px;
  line-height: 1.8;
}

.author-profile__text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(30px, 4vw, 44px);
}

.author-profile__text p {
  margin: 0;
  color: #333333;
  font-size: 15px;
  line-height: 1.85;
}

.author-profile__text a {
  color: var(--store-orange);
  font-weight: 700;
  text-decoration: none;
}

.author-profile__text a:hover {
  text-decoration: underline;
}

.author-profile__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: clamp(24px, 3vw, 34px);
  border: 1px solid var(--store-border);
  border-radius: 14px;
  background: var(--store-border);
}

.author-profile__facts div {
  padding: 18px;
  background: var(--store-white);
}

.author-profile__facts strong {
  display: block;
  margin-bottom: 6px;
  color: var(--store-orange);
  font-size: clamp(18px, 2.2vw, 25px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.author-profile__facts span {
  display: block;
  color: var(--store-muted);
  font-size: 12px;
  line-height: 1.5;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--store-border);
  border-radius: 16px;
  background: var(--store-white);
}

.store-about .section-head {
  margin-bottom: 48px;
}

.store-about .section-head .eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--store-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
}

.store-about .section-head .eyebrow::before {
  display: none;
}

.store-about .section-head h2 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -1px;
}

.feature-card {
  position: relative;
  padding: 32px 28px;
  background: var(--store-white);
  transition: background 0.2s ease;
}

.feature-card:hover {
  background: #fdfcfa;
}

.feature-card:nth-child(n + 4) {
  border-top: 1px solid var(--store-border);
}

.feature-card:not(:nth-child(3n)) {
  border-right: 1px solid var(--store-border);
}

.feature-card__num {
  margin-bottom: 16px;
  color: rgba(1, 60, 53, 0.12);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

.feature-card__icon,
.notice-box__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--store-orange);
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: rgba(255, 111, 63, 0.1);
}

.feature-card__icon svg,
.notice-box__icon svg {
  width: 20px;
  height: 20px;
}

.feature-card h3,
.info-card h3 {
  margin: 0 0 10px;
  color: var(--store-text);
}

.feature-card h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.feature-card p {
  margin: 0;
  color: var(--store-muted);
  font-size: 13px;
  line-height: 1.75;
}

.notice-box {
  position: relative;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  overflow: hidden;
  padding: 40px 48px;
  border-radius: 16px;
  background: var(--store-green);
}

.store-about .notice-box {
  margin-top: -28px;
}

.notice-box::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 111, 63, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.notice-box__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin-top: 2px;
  border-radius: 12px;
  background: rgba(255, 111, 63, 0.15);
}

.notice-box__content {
  position: relative;
  z-index: 1;
}

.notice-box__content .eyebrow {
  color: var(--store-orange);
}

.notice-box__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.8;
}

.notice-box__content p + p {
  margin-top: 10px;
}

.notice-box__content strong {
  color: var(--store-white);
  font-weight: 600;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.store-about .info-grid {
  margin-top: -24px;
}

.info-card {
  padding: 28px 32px;
  border: 1px solid var(--store-border);
  border-radius: 12px;
  background: var(--store-white);
}

.info-card h3 {
  font-size: 16px;
  font-weight: 700;
}

.info-card .eyebrow {
  display: block;
  margin-bottom: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
}

.info-card .eyebrow::before {
  display: none;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-row {
  display: flex;
  gap: 8px;
  color: var(--store-muted);
  font-size: 13px;
}

.info-row > span:first-child {
  min-width: 100px;
  margin-top: 1px;
  color: #bbbbbb;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info-row strong {
  color: inherit;
  font-size: inherit;
  font-weight: 500;
}

.info-row a {
  color: var(--store-orange);
  text-decoration: none;
}

.info-row a:hover {
  text-decoration: underline;
}

/* Compare: two separate cards with a VS medallion between them. */
.compare-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
}

.compare-grid__vs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--store-white);
  border: 1px solid var(--store-border);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--store-green);
  box-shadow: 0 16px 36px rgba(1, 60, 53, 0.16);
}

.compare-card {
  padding: clamp(26px, 3.2vw, 46px);
  border-radius: var(--abb-radius);
}

.compare-card--plain {
  background: var(--store-white);
  border: 1px solid var(--store-border);
}

.compare-card--brand {
  position: relative;
  background: var(--store-green);
  overflow: hidden;
}

.compare-card--brand::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background: var(--abb-glow);
  pointer-events: none;
}

.compare-card--brand > * { position: relative; }

.compare-card__tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: clamp(16px, 2vw, 22px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.compare-card__tag--plain { color: var(--store-muted); }
.compare-card__tag--brand { color: var(--store-orange); }

.compare-card h3 {
  margin: 0 0 14px;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.compare-card--plain h3 { color: var(--store-text); }
.compare-card--brand h3 { color: var(--store-white); }

.compare-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
}

.compare-card--plain p { color: var(--store-muted); }
.compare-card--brand p { color: rgba(255, 255, 255, 0.72); }

.compare-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-card__list li {
  display: flex;
  gap: 13px;
  font-size: 14px;
  line-height: 1.5;
}

.compare-card--plain .compare-card__list li { color: var(--store-muted); }
.compare-card--brand .compare-card__list li { color: rgba(255, 255, 255, 0.86); }

.compare-card__mk {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.compare-card__mk svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.compare-card__mk--x { background: #f0ede8; color: #b9b2a7; }
.compare-card__mk--ok { background: var(--store-orange); color: var(--store-white); }

/* Stages: green stepper panel with a connecting line and circular nodes. */
.stage-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  padding: clamp(34px, 4vw, 56px) clamp(20px, 3vw, 40px);
  border-radius: var(--abb-radius);
  background: var(--store-green);
  overflow: hidden;
}

.stage-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background: var(--abb-glow);
  pointer-events: none;
}

.stage-grid::after {
  content: "";
  position: absolute;
  top: calc(clamp(34px, 4vw, 56px) + 31px);
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 111, 63, 0.6), rgba(255, 255, 255, 0.08));
}

.stage-card {
  position: relative;
  z-index: 1;
  padding: 0 6px;
  text-align: center;
  background: transparent;
}

.stage-card:hover { background: transparent; }

.stage-card__node {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto clamp(14px, 1.6vw, 22px);
  border-radius: 50%;
  background: var(--store-green);
  border: 2px solid rgba(255, 255, 255, 0.18);
  color: var(--store-white);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.stage-card:hover .stage-card__node {
  border-color: var(--store-orange);
  transform: translateY(-4px);
}

.stage-card__node svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--store-white);
  stroke-width: 1.7;
}

.stage-card__num {
  position: absolute;
  top: -8px;
  right: -6px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--store-orange);
  border: 2px solid var(--store-green);
  color: var(--store-white);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.stage-card__title {
  display: block;
  margin-bottom: 8px;
  color: var(--store-white);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
}

.stage-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12.5px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .stage-grid { grid-template-columns: repeat(2, 1fr); }
  .stage-grid::after { display: none; }
}

@media (max-width: 720px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-grid__vs { display: none; }
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.8vw, 22px);
  align-items: stretch;
}

.audience-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--store-border);
  background: var(--store-white);
}

/* Photo header with a glass category chip. */
.audience-card__media {
  position: relative;
  height: clamp(170px, 18vw, 210px);
}

.audience-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(1, 60, 53, 0.55));
}

.audience-card__head {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.6vw, 30px) clamp(22px, 2.8vw, 34px) 0;
  background: transparent;
  color: var(--store-text);
}

.audience-card__chip {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--store-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-card__head h3 {
  margin: 0 0 10px;
  color: var(--store-text);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.audience-card__head p {
  margin: 0;
  color: var(--store-muted);
  font-size: 14px;
  line-height: 1.65;
}

.audience-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(18px, 2.4vw, 26px) clamp(22px, 2.8vw, 34px) clamp(24px, 2.8vw, 34px);
  background: var(--store-white);
}

/* B2B (pro) card — deep green emphasis for the masters' audience. */
.audience-card--pro {
  background: var(--store-green);
  border-color: var(--store-green);
}

.audience-card--pro .audience-card__head { color: var(--store-white); }
.audience-card--pro .audience-card__head h3 { color: var(--store-white); }
.audience-card--pro .audience-card__head p { color: rgba(255, 255, 255, 0.62); }
.audience-card--pro .audience-card__body { background: transparent; }
.audience-card--pro .check-list li { color: rgba(255, 255, 255, 0.86); }

.check-list {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.1vw, 13px);
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 20px;
  padding-left: 31px;
  color: var(--store-text);
  font-size: 14px;
  line-height: 1.55;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--store-orange);
  color: var(--store-white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.button-row--compact {
  margin-top: auto;
}

.button--ghost-dark {
  background: var(--store-white);
  border-color: rgba(1, 60, 53, 0.18);
  color: var(--store-green);
}

.button--ghost-dark:hover {
  background: var(--store-white);
  border-color: var(--store-orange);
  color: var(--store-orange);
}

/* ── 6. Generic pages and forms ──────────────────────────────────────────── */
.simple-page {
  min-height: 70svh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  background:
    radial-gradient(circle at 82% 15%, rgba(255, 111, 63, 0.14), transparent 30%),
    linear-gradient(135deg, var(--store-white), var(--store-cream));
}

.simple-page__inner {
  max-width: 760px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--store-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--store-shadow);
}

.simple-page p {
  max-width: 620px;
  color: var(--store-muted);
  font-size: 16px;
  line-height: 1.8;
}

.store-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.account-status-card {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid var(--store-border);
  border-radius: 8px;
  background: var(--store-white);
}

.account-status-card--success {
  border-color: rgba(1, 60, 53, 0.28);
  background: rgba(1, 60, 53, 0.06);
}

.account-status-card h2 {
  margin: 0;
  color: var(--store-green);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
}

.account-status-card p {
  margin: 0;
}

.account-status-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.master-benefits {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(1, 60, 53, 0.14);
  border-radius: 16px;
  background: rgba(1, 60, 53, 0.04);
}

.master-benefits__head {
  display: grid;
  gap: 6px;
}

.master-benefits__head span {
  color: var(--store-orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.master-benefits__head h2 {
  margin: 0;
  color: var(--store-green);
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.15;
}

.master-benefits__head p,
.master-benefits__note {
  margin: 0;
  max-width: none;
  color: var(--store-muted);
  font-size: 14px;
  line-height: 1.65;
}

.master-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.master-benefits__item {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--store-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.master-benefits__item strong {
  color: var(--store-text);
  font-size: 13px;
  line-height: 1.25;
}

.master-benefits__item span {
  color: var(--store-muted);
  font-size: 12px;
  line-height: 1.55;
}

.master-benefits__note {
  padding-top: 12px;
  border-top: 1px solid rgba(1, 60, 53, 0.1);
  font-size: 13px;
}

.master-benefits__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--store-green);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  list-style: none;
}

.master-benefits__summary::-webkit-details-marker {
  display: none;
}

.master-benefits__summary svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--store-orange);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.18s ease;
}

.master-benefits[open] .master-benefits__summary svg {
  transform: rotate(180deg);
}

.master-benefits[open] .master-benefits__grid {
  margin-top: 2px;
}

.master-benefits--page .master-benefits__summary {
  font-size: 16px;
}

.master-benefits--page .master-benefits__item strong {
  font-size: 15px;
}

.master-benefits--page .master-benefits__item span {
  font-size: 14px;
  line-height: 1.6;
}

.master-benefits--page .master-benefits__note {
  font-size: 14px;
}

.store-form__field {
  display: grid;
  gap: 8px;
}

.store-form__field label {
  color: var(--store-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-form__field input,
.store-form__field select,
.store-form__field textarea {
  width: 100%;
  border: 1px solid var(--store-border);
  border-radius: 10px;
  background: var(--store-white);
  color: var(--store-text);
  font: inherit;
  font-size: 15px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.store-form__field textarea {
  resize: vertical;
}

.store-form__field input:focus,
.store-form__field select:focus,
.store-form__field textarea:focus {
  border-color: var(--store-orange);
  box-shadow: 0 0 0 3px rgba(255, 111, 63, 0.12);
}

.store-form__field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--store-green) 50%),
    linear-gradient(135deg, var(--store-green) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 50%,
    calc(100% - 13px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 42px;
}

.store-form__hint {
  color: var(--store-muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.store-form__field input:disabled,
.store-form__field select:disabled,
.store-form__field textarea:disabled {
  background: #f0eee9;
  color: var(--store-muted);
  cursor: not-allowed;
}

.store-form__field--checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.store-form__field--checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--store-orange);
}

.store-form__field--checkbox label {
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
}

.store-form__prefilled-wrap {
  position: relative;
}

.store-form__prefilled-wrap input {
  padding-right: 90px;
}

.store-form__prefilled-badge {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 600;
  color: var(--store-green);
  background: rgba(1, 60, 53, 0.07);
  padding: 2px 8px;
  border-radius: 4px;
  pointer-events: none;
  white-space: nowrap;
}

.errorlist {
  margin: 0;
  padding-left: 18px;
  color: #b42318;
  font-size: 13px;
  line-height: 1.5;
}

.checkout-intro {
  max-width: 52ch;
  margin: 14px 0 0;
  color: var(--store-muted);
  font-size: 15px;
  line-height: 1.6;
}

.checkout-form { counter-reset: checkout-step; }

.checkout-form__section {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--store-border);
  border-radius: var(--abb-radius);
  background: var(--store-white);
  box-shadow: 0 6px 22px rgba(1, 60, 53, 0.05);
  counter-increment: checkout-step;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-form__section:focus-within {
  border-color: rgba(255, 111, 63, 0.45);
  box-shadow: 0 10px 30px rgba(1, 60, 53, 0.09);
}

.checkout-form__section h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--store-green);
  font-size: clamp(19px, 2vw, 23px);
}

.checkout-form__section h2::before {
  content: counter(checkout-step);
  display: grid;
  place-items: center;
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--store-orange), var(--store-orange-dark));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(255, 111, 63, 0.32);
}

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

.payment-options {
  display: grid;
  gap: 12px;
}

.payment-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.payment-option input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.payment-option__body {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid var(--store-border);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 246, 243, 0.98));
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.payment-option:hover .payment-option__body {
  border-color: rgba(255, 111, 63, 0.45);
  transform: translateY(-1px);
}

.payment-option input:checked + .payment-option__body {
  border-color: var(--store-orange);
  box-shadow: 0 0 0 3px rgba(255, 111, 63, 0.12);
}

.payment-option__title {
  color: var(--store-green);
  font-size: 16px;
  font-weight: 800;
}

.payment-option__meta {
  color: var(--store-muted);
  font-size: 14px;
  line-height: 1.55;
}

.payment-option__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: fit-content;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.payment-option__button--mono {
  background: transparent;
  width: 100%;
  justify-content: center;
}

.payment-option__button--wfp {
  background: transparent;
  width: 100%;
  justify-content: center;
}

.checkout-submit {
  width: 100%;
  gap: 10px;
  padding: 16px 22px;
  font-size: 16px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(255, 111, 63, 0.30);
}

.checkout-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(255, 111, 63, 0.36);
}

.checkout-delivery-panel[hidden] {
  display: none;
}

.checkout-hint {
  color: var(--store-muted);
  font-size: 12px;
  line-height: 1.45;
}

.checkout-pickup-note {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px dashed rgba(1, 60, 53, 0.28);
  border-radius: 14px;
  background: rgba(1, 60, 53, 0.06);
}

.checkout-pickup-note strong {
  color: var(--store-green);
}

.checkout-pickup-note span {
  color: var(--store-muted);
  font-size: 14px;
  line-height: 1.5;
}

.autocomplete-field {
  position: relative;
}

.autocomplete-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 18px);
  z-index: 30;
  display: grid;
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid var(--store-border);
  border-radius: 14px;
  background: var(--store-white);
  box-shadow: 0 18px 48px rgba(1, 60, 53, 0.16);
}

.autocomplete-menu[hidden] {
  display: none;
}

.autocomplete-menu__option {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid var(--store-border);
  background: transparent;
  color: var(--store-text);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
}

.autocomplete-menu__option:hover,
.autocomplete-menu__option:focus {
  background: rgba(255, 111, 63, 0.1);
  color: var(--store-green);
  outline: none;
}

.autocomplete-menu__empty {
  padding: 12px 14px;
  color: var(--store-muted);
  font-size: 13px;
  line-height: 1.45;
}

.catalog-hero {
  padding: clamp(58px, 7vw, 92px) 0;
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 111, 63, 0.14), transparent 32%),
    var(--store-green);
  color: var(--store-white);
}

.catalog-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.catalog-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.8;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.category-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid var(--store-border);
  border-radius: 999px;
  background: var(--store-white);
  color: var(--store-green);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.category-filter a.active,
.category-filter a:hover {
  border-color: var(--store-orange);
  background: rgba(255, 111, 63, 0.1);
  color: var(--store-orange);
}

.product-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 160px;
  place-items: center;
  background: transparent;
  color: rgba(1, 60, 53, 0.18);
  font-size: clamp(46px, 8vw, 72px);
  font-weight: 900;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.price-label {
  width: fit-content;
  margin: 12px 0 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 111, 63, 0.11);
  color: var(--store-orange-dark);
  font-size: 11px;
  font-weight: 800;
}

.master-promo-card {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(1, 60, 53, 0.14);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(1, 60, 53, 0.06), rgba(255, 111, 63, 0.07));
}

.master-promo-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
}

.master-promo-card__head span {
  color: var(--store-green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.master-promo-card__head strong {
  color: var(--store-orange-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.master-promo-card p {
  margin: 0;
  color: rgba(1, 60, 53, 0.76);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.inline-cart-form {
  margin-top: 14px;
}

.link-button {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--store-border);
  border-radius: 8px;
  background: var(--store-white);
  color: var(--store-green);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.inline-cart-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 11px;
  background: var(--store-orange);
  color: var(--store-white);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.inline-cart-form button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
}

.inline-cart-form button:hover {
  background: var(--store-orange-dark);
  transform: translateY(-1px);
}

.empty-state {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--store-border);
  border-radius: 20px;
  background: var(--store-white);
}

.empty-state h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.store-product-page {
  background: var(--store-white);
}

.product-breadcrumb {
  background: var(--store-cream);
}

.product-breadcrumb__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 0;
  color: var(--store-muted);
  font-size: 12px;
}

.product-breadcrumb__inner a {
  text-decoration: none;
  transition: color 0.18s ease;
}

.product-breadcrumb__inner a:hover,
.product-breadcrumb__current {
  color: var(--store-orange);
}

.product-breadcrumb__current {
  font-weight: 700;
}

.product-breadcrumb__sep {
  color: var(--store-border);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0 20px;
  color: var(--store-orange);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: gap 0.18s ease;
}

.back-link:hover {
  gap: 12px;
}

.back-link svg,
.prod-cart-submit svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.back-link svg {
  stroke-width: 2.5;
}

.prod-hero {
  padding: clamp(24px, 3vw, 40px) 0 0;
  background: var(--store-cream);
}

.prod-hero-grid {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.prod-img-block {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prod-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid var(--store-border);
  border-radius: 20px;
  background: var(--store-white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.prod-img-trigger {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.prod-img-wrap img,
.prod-img-trigger img {
  width: 100%;
  height: 100%;
  padding: clamp(8px, 1.4vw, 14px);
  object-fit: contain;
}

.prod-thumb-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  width: 100%;
}

.prod-thumb {
  flex: 0 0 clamp(66px, 6.2vw, 82px);
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid var(--store-border);
  border-radius: 12px;
  background: var(--store-white);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.prod-thumb:hover,
.prod-thumb--active {
  border-color: var(--store-green);
  box-shadow: 0 8px 24px rgba(42, 90, 63, 0.14);
}

.prod-thumb--active {
  transform: translateY(-1px);
}

.prod-thumb img {
  width: 100%;
  height: 100%;
  padding: 6px;
  object-fit: contain;
}

.prod-img-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.prod-badge {
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--store-green);
  color: var(--store-white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prod-img-num {
  margin-top: 10px;
  color: var(--store-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
}

.prod-image-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.prod-image-modal--open {
  opacity: 1;
  pointer-events: auto;
}

.prod-image-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 17, 17, 0.72);
  cursor: zoom-out;
}

.prod-image-modal__dialog {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1200px, calc(100vw - 48px));
  height: min(92svh, calc(100vh - 48px));
  margin: 24px auto;
  padding: 24px;
}

.prod-image-modal__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  background: var(--store-white);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.26);
}

.prod-image-modal__nav {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--store-white);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.prod-image-modal__nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

.prod-image-modal__nav--prev {
  left: 4px;
}

.prod-image-modal__nav--next {
  right: 4px;
}

.prod-image-modal__close {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--store-white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.prod-info-block {
  padding-bottom: clamp(40px, 6vw, 80px);
}

.prod-cat-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 111, 63, 0.1);
  color: var(--store-orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.prod-num-label {
  margin-bottom: 8px;
  color: var(--store-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.prod-h1 {
  margin: 0 0 4px;
  color: var(--store-green);
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.prod-h1-sub {
  margin-bottom: 16px;
  color: rgba(1, 60, 53, 0.65);
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.prod-tagline {
  margin-bottom: 24px;
  padding: 14px 18px;
  border-left: 4px solid var(--store-orange);
  border-radius: 0 10px 10px 0;
  background: rgba(255, 111, 63, 0.05);
  color: var(--store-text);
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 700;
  line-height: 1.4;
}

.chip {
  margin-bottom: 10px;
  padding: clamp(10px, 1.5vw, 14px) clamp(12px, 1.8vw, 18px);
  border-radius: 10px;
  font-size: clamp(12px, 1.3vw, 14px);
  line-height: 1.65;
}

.chip strong {
  display: block;
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chip-pain {
  border-left: 3px solid #ffb080;
  background: #fff5f0;
  color: #7a3a20;
}

.chip-pain strong {
  color: #c04a15;
}

.chip-sol {
  border-left: 3px solid #5cb87a;
  background: #f0f8f4;
  color: #1a5a35;
}

.chip-sol strong {
  color: #1a7a40;
}

.chip-sci {
  margin-bottom: 20px;
  border-left: 3px solid var(--store-green);
  background: rgba(1, 60, 53, 0.05);
  color: var(--store-green);
  font-style: italic;
}

.prod-order-card {
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid var(--store-border);
  border-radius: 16px;
  background: var(--store-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.prod-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.prod-price {
  color: var(--store-orange);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1;
}

.prod-vol {
  color: var(--store-muted);
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 500;
}

.master-promo-detail {
  display: grid;
  gap: 10px;
  margin: 12px 0 14px;
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid rgba(1, 60, 53, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(1, 60, 53, 0.07), rgba(255, 111, 63, 0.08)),
    var(--store-white);
}

.master-promo-detail__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.master-promo-detail__main span {
  color: var(--store-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.master-promo-detail__main strong {
  color: var(--store-orange-dark);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.master-promo-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.master-promo-detail__meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: rgba(1, 60, 53, 0.78);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.prod-special {
  margin-bottom: 16px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--store-cream);
  color: var(--store-muted);
  font-size: 12px;
  line-height: 1.7;
}

.prod-special strong {
  color: var(--store-green);
}

.order-section__main-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.order-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--store-border);
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.order-stepper__btn {
  width: 40px;
  height: 48px;
  border: 0;
  background: var(--store-white);
  color: var(--store-green);
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s ease;
}

.order-stepper__btn:hover {
  background: var(--store-cream);
}

.order-stepper__value {
  display: block;
  width: 40px;
  background: var(--store-white);
  color: var(--store-green);
  font-size: 16px;
  font-weight: 900;
  line-height: 48px;
  text-align: center;
}

.prod-cart-submit {
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 20px;
  border: 0;
  border-radius: 10px;
  background: var(--store-orange);
  color: var(--store-white);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.15s ease;
}

.prod-cart-submit:hover {
  background: var(--store-orange-dark);
  transform: translateY(-1px);
}

.prod-cart-submit svg {
  stroke-width: 2.5;
}

.order-price-calc {
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--store-cream);
  color: var(--store-muted);
  font-size: 13px;
}

.order-price-calc strong {
  color: var(--store-orange);
}

.order-section__divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.order-section__divider div {
  flex: 1;
  height: 1px;
  background: var(--store-border);
}

.order-section__divider span {
  color: #bbb;
  font-size: 11px;
  font-weight: 700;
}

.order-contact-row {
  display: flex;
  gap: 8px;
}

.order-contact-btn {
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 8px;
  color: var(--store-white);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: opacity 0.18s ease;
}

.order-contact-btn:hover {
  opacity: 0.85;
}

.order-contact-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: currentColor;
}

.order-contact-btn--viber {
  background: #7360f2;
}

.order-contact-btn--whatsapp {
  background: #25d366;
}

.prod-content {
  padding: clamp(40px, 6vw, 80px) 0;
  background: var(--store-white);
}

.prod-lead {
  margin-bottom: clamp(32px, 5vw, 56px);
  padding: clamp(24px, 4vw, 44px);
  border-radius: 16px;
  background: var(--store-green);
  color: var(--store-white);
}

.prod-lead-title {
  margin-bottom: 12px;
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 900;
  line-height: 1.35;
}

.prod-lead-title em {
  color: var(--store-orange);
  font-style: normal;
}

.prod-lead-sub {
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.75;
}

.store-product-page .content-block {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.store-product-page .section-label {
  display: block;
  margin-bottom: 10px;
  color: var(--store-orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.store-product-page .section-title {
  margin: 0 0 16px;
  color: var(--store-green);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.store-product-page .section-body {
  color: #2a2a2a;
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.8;
}

.store-product-page .section-body p {
  margin: 0 0 14px;
}

.inci-block {
  margin-bottom: clamp(24px, 4vw, 48px);
  padding: clamp(16px, 2.5vw, 24px);
  border: 1px solid rgba(1, 60, 53, 0.12);
  border-radius: 12px;
  background: rgba(1, 60, 53, 0.04);
}

.inci-label {
  display: block;
  margin-bottom: 8px;
  color: var(--store-green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.inci-text {
  color: #2a2a2a;
  font-size: 13px;
  line-height: 1.8;
  font-style: italic;
}

.product-reference-content .active-logic {
  margin-bottom: clamp(24px, 4vw, 48px);
  padding: clamp(22px, 3vw, 36px);
  border-radius: 16px;
  background: var(--store-cream);
}

.product-reference-content .active-logic-title {
  margin-bottom: 18px;
  color: var(--store-orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-reference-content .logic-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-reference-content .logic-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--store-border);
  border-radius: 10px;
  background: var(--store-white);
}

.product-reference-content .logic-dot {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 111, 63, 0.1);
}

.product-reference-content .logic-dot svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--store-orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-reference-content .logic-text strong {
  display: block;
  margin-bottom: 3px;
  color: var(--store-green);
  font-size: 13px;
  font-weight: 800;
}

.product-reference-content .logic-text span {
  color: var(--store-muted);
  font-size: 12px;
  line-height: 1.6;
}

.product-reference-content .audience-card {
  overflow: hidden;
  border: 1px solid var(--store-border);
  border-radius: 14px;
  background: var(--store-white);
}

.product-reference-content .aud-head {
  padding: clamp(18px, 2.5vw, 28px);
  background: var(--store-green);
  color: var(--store-white);
}

.product-reference-content .aud-head-tag {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-reference-content .aud-head-title {
  color: var(--store-white);
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 900;
  line-height: 1.3;
}

.product-reference-content .aud-head-sub {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.5;
}

.product-reference-content .aud-body {
  padding: clamp(16px, 2.2vw, 24px);
}

.product-reference-content .aud-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-reference-content .aud-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--store-text);
  font-size: clamp(11px, 1.2vw, 13px);
  line-height: 1.55;
}

.product-reference-content .chk {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--store-orange);
}

.product-reference-content .chk svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--store-white);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-reference-content .compare-table {
  width: 100%;
  margin-bottom: clamp(24px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--store-border);
  border-radius: 12px;
  border-collapse: separate;
  border-spacing: 0;
}

.product-reference-content .compare-table th {
  padding: 12px 16px;
  background: var(--store-green);
  color: var(--store-white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
}

.product-reference-content .compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--store-border);
  color: var(--store-text);
  font-size: clamp(11px, 1.2vw, 13px);
  line-height: 1.5;
  vertical-align: top;
}

.product-reference-content .compare-table tr:last-child td {
  border-bottom: 0;
}

.product-reference-content .compare-table tr:nth-child(even) td {
  background: var(--store-cream);
}

.product-reference-content .compare-vs {
  color: var(--store-green);
  font-weight: 800;
}

.product-reference-content .compare-adv {
  color: #1a7a40;
  font-weight: 700;
}

.product-reference-content .protocol-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.product-reference-content .protocol-method {
  padding: clamp(16px, 2.5vw, 24px);
  border: 1px solid var(--store-border);
  border-radius: 12px;
  background: var(--store-cream);
}

.product-reference-content .protocol-method-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--store-orange);
  color: var(--store-white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-reference-content .protocol-method h4 {
  margin: 0 0 12px;
  color: var(--store-green);
  font-size: 13px;
  font-weight: 800;
}

.product-reference-content .protocol-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-reference-content .protocol-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--store-text);
  font-size: 12px;
  line-height: 1.6;
}

.product-reference-content .step-num {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--store-green);
  color: var(--store-white);
  font-size: 10px;
  font-weight: 800;
}

.product-reference-content .info-card {
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid var(--store-border);
  border-radius: 12px;
  background: var(--store-cream);
}

.product-reference-content .info-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 9px;
  background: rgba(255, 111, 63, 0.1);
}

.product-reference-content .info-card-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--store-orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-reference-content .info-card h4 {
  margin: 0 0 8px;
  color: var(--store-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-reference-content .info-card p,
.product-reference-content .info-card li {
  color: var(--store-muted);
  font-size: 12px;
  line-height: 1.6;
}

.product-reference-content .info-card ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
}

.product-reference-content .faq-list {
  margin-bottom: clamp(24px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--store-border);
  border-radius: 14px;
}

.product-reference-content .faq-item {
  border-bottom: 1px solid var(--store-border);
}

.product-reference-content .faq-item:last-child {
  border-bottom: 0;
}

.product-reference-content .faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.5vw, 24px);
  border: 0;
  background: transparent;
  color: var(--store-text);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
}

.product-reference-content .faq-q:hover {
  background: var(--store-cream);
}

.product-reference-content .faq-q svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--store-orange);
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: transform 0.2s ease;
}

.product-reference-content .faq-item.open .faq-q svg {
  transform: rotate(180deg);
}

.product-reference-content .faq-a {
  display: none;
  padding: 0 clamp(16px, 2.5vw, 24px) clamp(14px, 2vw, 20px);
  color: var(--store-muted);
  font-size: clamp(12px, 1.3vw, 14px);
  line-height: 1.75;
}

.product-reference-content .faq-item.open .faq-a {
  display: block;
}

/* Reference product-page parity: keep these scoped so global landing styles do not leak in. */
.product-reference-content {
  --ref-or: var(--store-orange);
  --ref-gr: var(--store-green);
  --ref-tx: var(--store-text);
  --ref-gy: var(--store-muted);
  --ref-bg: var(--store-cream);
  --ref-bd: var(--store-border);
}

.product-reference-content .content-block {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.product-reference-content .section-label {
  display: block;
  margin-bottom: 10px;
  color: var(--ref-or);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-reference-content .section-title {
  margin: 0 0 16px;
  color: var(--ref-gr);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.product-reference-content .section-body {
  color: #2a2a2a;
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.8;
}

.product-reference-content .section-body p {
  margin: 0 0 14px;
}

.product-reference-content .active-logic {
  margin-bottom: clamp(24px, 4vw, 48px);
  padding: clamp(22px, 3vw, 36px);
  border-radius: 16px;
  background: var(--ref-bg);
}

.product-reference-content .active-logic-title {
  margin-bottom: 18px;
  color: var(--ref-or);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-reference-content .logic-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-reference-content .logic-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--ref-bd);
  border-radius: 10px;
  background: #fff;
}

.product-reference-content .logic-dot {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 111, 63, 0.1);
}

.product-reference-content .logic-dot svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--ref-or);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-reference-content .logic-text strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ref-gr);
  font-size: 13px;
  font-weight: 700;
}

.product-reference-content .logic-text span {
  color: var(--ref-gy);
  font-size: 12px;
  line-height: 1.6;
}

.product-reference-content .audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 20px);
  margin-bottom: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.product-reference-content .audience-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--ref-bd);
  border-radius: 14px;
  background: #fff;
}

.product-reference-content .aud-head {
  display: block;
  min-height: 0;
  padding: clamp(18px, 2.5vw, 28px);
  background: var(--ref-gr);
  color: #fff;
}

.product-reference-content .aud-head-tag {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-reference-content .aud-head-title {
  color: #fff;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 800;
  line-height: 1.3;
}

.product-reference-content .aud-head-sub {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.5;
}

.product-reference-content .aud-body {
  padding: clamp(16px, 2.2vw, 24px);
  background: #fff;
}

.product-reference-content .aud-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-reference-content .aud-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ref-tx);
  font-size: clamp(11px, 1.2vw, 13px);
  line-height: 1.55;
}

.product-reference-content .aud-list li strong {
  color: var(--ref-gr);
}

.product-reference-content .chk {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--ref-or);
}

.product-reference-content .chk svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-reference-content .compare-table {
  width: 100%;
  margin-bottom: clamp(24px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--ref-bd);
  border-radius: 12px;
  border-collapse: collapse;
}

.product-reference-content .compare-table th {
  padding: 12px 16px;
  background: var(--ref-gr);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: left;
  text-transform: uppercase;
}

.product-reference-content .compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--ref-bd);
  color: var(--ref-tx);
  font-size: clamp(11px, 1.2vw, 13px);
  line-height: 1.5;
  vertical-align: top;
}

.product-reference-content .compare-table tr:last-child td {
  border-bottom: none;
}

.product-reference-content .compare-table tr:nth-child(even) td {
  background: var(--ref-bg);
}

.product-reference-content .compare-vs {
  color: var(--ref-gr);
  font-weight: 700;
}

.product-reference-content .compare-adv {
  color: #1a7a40;
  font-weight: 600;
}

.product-reference-content .protocol-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.product-reference-content .protocol-method {
  padding: clamp(16px, 2.5vw, 24px);
  border: 1px solid var(--ref-bd);
  border-radius: 12px;
  background: var(--ref-bg);
}

.product-reference-content .protocol-method-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--ref-or);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.product-reference-content .protocol-method h4 {
  margin: 0 0 12px;
  color: var(--ref-gr);
  font-size: 13px;
  font-weight: 700;
}

.product-reference-content .protocol-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-reference-content .protocol-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ref-tx);
  font-size: 12px;
  line-height: 1.6;
}

.product-reference-content .step-num {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--ref-gr);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.product-reference-content .info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.product-reference-content .info-card {
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid var(--ref-bd);
  border-radius: 12px;
  background: var(--ref-bg);
}

.product-reference-content .info-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 9px;
  background: rgba(255, 111, 63, 0.1);
}

.product-reference-content .info-card-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--ref-or);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-reference-content .info-card h4 {
  margin: 0 0 8px;
  color: var(--ref-gr);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-reference-content .info-card ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-reference-content .info-card ul li {
  position: relative;
  padding-left: 12px;
  color: var(--ref-gy);
  font-size: 12px;
  line-height: 1.55;
}

.product-reference-content .info-card ul li::before {
  content: "·";
  position: absolute;
  left: 2px;
  color: var(--ref-or);
  font-weight: 700;
}

.product-reference-content .info-card p {
  margin: 0;
  color: var(--ref-gy);
  font-size: 12px;
  line-height: 1.6;
}

.product-reference-content .info-card p + p {
  margin-top: 8px;
}

.product-reference-content .inci-block {
  margin-bottom: clamp(24px, 4vw, 48px);
  padding: clamp(16px, 2.5vw, 24px);
  border: 1px solid rgba(1, 60, 53, 0.12);
  border-radius: 12px;
  background: rgba(1, 60, 53, 0.04);
}

.product-reference-content .inci-label {
  display: block;
  margin-bottom: 8px;
  color: var(--ref-gr);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-reference-content .inci-text {
  color: #2a2a2a;
  font-size: 13px;
  font-style: italic;
  line-height: 1.8;
}

.product-reference-content .faq-list {
  margin-bottom: clamp(24px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--ref-bd);
  border-radius: 14px;
}

.product-reference-content .faq-item {
  border-bottom: 1px solid var(--ref-bd);
}

.product-reference-content .faq-item:last-child {
  border-bottom: none;
}

.product-reference-content .faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.5vw, 24px);
  border: none;
  background: none;
  color: var(--ref-tx);
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  transition: background 0.2s;
}

.product-reference-content .faq-q:hover {
  background: var(--ref-bg);
}

.product-reference-content .faq-q svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--ref-or);
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: transform 0.25s;
}

.product-reference-content .faq-item.open .faq-q svg {
  transform: rotate(180deg);
}

.product-reference-content .faq-a {
  display: none;
  padding: 0 clamp(16px, 2.5vw, 24px) clamp(14px, 2vw, 20px);
  color: var(--ref-gy);
  font-size: clamp(12px, 1.3vw, 14px);
  line-height: 1.75;
}

.product-reference-content .faq-item.open .faq-a {
  display: block;
}

/* ── 7. Commerce flows ───────────────────────────────────────────────────── */

/* ── 8. Protocols ────────────────────────────────────────────────────────── */
.protlib-sec {
  padding: clamp(56px, 7vw, 88px) 0 clamp(64px, 8vw, 100px);
  background: var(--store-cream);
}

.protlib-sec .section-head {
  text-align: left;
  margin-inline: 0;
  margin-bottom: 0;
}

.protlib-sec .section-head h2 {
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 800;
}

.protlib-sec .section-head h2 em {
  color: var(--store-orange);
  font-style: normal;
}

.protlib-sec .section-head p {
  max-width: min(560px, 100%);
  margin: clamp(10px, 1.5vw, 16px) 0 0;
  font-size: var(--store-fs-base, 15px);
  line-height: 1.75;
  color: var(--store-muted);
}

.protlib-scroll-outer {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--store-orange) var(--store-border);
  padding-bottom: 12px;
}

.protlib-scroll-outer::-webkit-scrollbar { height: 6px; }
.protlib-scroll-outer::-webkit-scrollbar-track { background: var(--store-border); border-radius: 3px; }
.protlib-scroll-outer::-webkit-scrollbar-thumb { background: var(--store-orange); border-radius: 3px; }

.protlib-scroll-track {
  display: flex;
  gap: 18px;
  padding: 4px 2px 16px;
  width: max-content;
}

.protlib-scroll-track .prt-card {
  width: 320px;
  min-width: 320px;
  flex-shrink: 0;
}

/* Shares the visual language of .product-card: same border, radius, white
   fill, inset highlight and orange-border lift on hover. */
.prt-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  gap: 0;
  padding: 0;
  border: 1px solid var(--store-border);
  border-radius: 20px;
  background: var(--store-white);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
  text-decoration: none;
  color: inherit;
}

.prt-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 30px 60px rgba(1, 60, 53, 0.14);
}

/* Green "protocol sheet" header — code kicker + title + task summary. */
.prt-card-top {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(18px, 2vw, 24px);
  background: var(--store-green);
  color: var(--store-white);
  overflow: hidden;
}

.prt-card-top::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background: radial-gradient(120% 100% at 100% 0, rgba(255, 111, 63, 0.22), transparent 55%);
  pointer-events: none;
}

/* Code as an orange kicker with a square marker. */
.prt-num {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--store-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}

.prt-num::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--store-orange);
}

.prt-card-head {
  position: relative;
}

.prt-card-title {
  margin: 0;
  color: var(--store-white);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.prt-card-task {
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Foot pinned to the bottom of the white body, above a hairline. */
.prt-card-foot {
  display: flex;
  margin-top: auto;
  padding: clamp(16px, 2vw, 20px) clamp(18px, 2vw, 24px) clamp(18px, 2vw, 24px);
  border-top: 1px solid var(--store-border);
}

.prt-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 11px;
  background: var(--store-green);
  color: var(--store-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.2s ease;
}

.prt-cta::after {
  content: "\2192";
  font-size: 15px;
  transition: transform 0.2s ease;
}

.prt-card:hover .prt-cta {
  background: var(--store-orange);
}

.prt-card:hover .prt-cta::after {
  transform: translateX(4px);
}

.prt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 1;
  padding: clamp(16px, 2vw, 20px) clamp(18px, 2vw, 24px) 0;
}

.prt-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 8px;
}

.tag-damage  { background: rgba(255, 111, 63, 0.12); color: #c04a15; }
.tag-scalp   { background: rgba(1, 60, 53, 0.10); color: var(--store-green); }
.tag-loss    { background: rgba(90, 50, 160, 0.10); color: #5a32a0; }
.tag-color   { background: rgba(20, 120, 200, 0.10); color: #1478c8; }
.tag-special { background: rgba(0, 0, 0, 0.07); color: #444; }
.tag-neutral { background: rgba(0, 0, 0, 0.07); color: #444; }

.prt-products {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(16px, 2vw, 20px) clamp(18px, 2vw, 24px) 0;
}

.prt-products-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--store-green);
}

.prt-products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.prt-prod {
  display: inline-block;
  background: var(--store-cream);
  border: 1px solid rgba(1, 60, 53, 0.08);
  color: var(--store-green);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 999px;
  line-height: 1.4;
}

.prt-session {
  font-size: clamp(11px, 1.1vw, 12px);
  color: var(--store-muted);
  line-height: 1.6;
  margin-top: auto;
}

.prt-session strong {
  color: var(--store-text);
  font-weight: 700;
}

.prt-warn {
  background: rgba(255, 111, 63, 0.08);
  border-left: 3px solid var(--store-orange);
  border-radius: 0 6px 6px 0;
  padding: 6px 10px;
  font-size: 11px;
  color: #c04a15;
  margin-top: auto;
  font-weight: 600;
}

.protlib-stats {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  margin-top: clamp(32px, 4.5vw, 56px);
  padding: clamp(20px, 3vw, 32px);
  background: var(--store-white);
  border-radius: 14px;
  border: 1px solid var(--store-border);
  flex-wrap: wrap;
  justify-content: center;
}

.protlib-stat { text-align: center; }

.protlib-stat-num {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--store-orange);
  letter-spacing: -1px;
  line-height: 1;
  display: block;
}

.protlib-stat-lbl {
  font-size: clamp(11px, 1.2vw, 13px);
  color: var(--store-muted);
  margin-top: 5px;
  line-height: 1.4;
}

.protlib-stat-div {
  width: 1px;
  height: clamp(36px, 4vw, 52px);
  background: var(--store-border);
  flex-shrink: 0;
}

.protlib-lock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(1, 60, 53, 0.07);
  color: var(--store-green);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: background 0.18s ease;
}

.protlib-lock:hover {
  background: rgba(1, 60, 53, 0.13);
}

.protlib-lock svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.protlib-lock--open {
  background: var(--store-orange);
  color: var(--store-white);
}

.protlib-lock--open:hover {
  background: #e85a2a;
}

.task-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.task-search-wrap {
  position: relative;
  width: min(100%, 600px);
  margin: clamp(28px, 4vw, 44px) auto clamp(20px, 3vw, 32px);
}

.task-search {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 18px 22px 18px 56px;
  border: 2px solid var(--store-border);
  border-radius: 14px;
  background: var(--store-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  color: var(--store-text);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.task-search::-webkit-search-decoration,
.task-search::-webkit-search-cancel-button,
.task-search::-webkit-search-results-button,
.task-search::-webkit-search-results-decoration {
  display: none;
}

.task-search::placeholder {
  color: #bbbbbb;
}

.task-search:focus {
  border-color: var(--store-orange);
  box-shadow: 0 0 0 4px rgba(255, 111, 63, 0.1);
}

.task-search-ico {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 20px;
  height: 20px;
  color: #cccccc;
  transform: translateY(-50%);
  pointer-events: none;
  transition: color 0.2s ease;
}

.task-search-wrap:focus-within .task-search-ico {
  color: var(--store-orange);
}

.task-prt-empty {
  display: none;
  padding: 48px 20px;
  color: var(--store-muted);
  text-align: center;
}

.task-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 40px;
  border: 1.5px solid var(--store-border);
  background: var(--store-white);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--store-muted);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.task-chip:hover {
  border-color: var(--store-orange);
  color: var(--store-orange);
  background: rgba(255, 111, 63, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 111, 63, 0.15);
}

.task-chip.active {
  background: var(--store-orange);
  border-color: var(--store-orange);
  color: var(--store-white);
  box-shadow: 0 4px 14px rgba(255, 111, 63, 0.3);
}

.task-chip-icon {
  font-size: 16px;
  line-height: 1;
}

#homeProtocolsCarousel {
  margin-top: 0;
}

/* Protocol list grid */
.prt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 18px);
}

.protocol-library-intro {
  display: grid;
  gap: clamp(20px, 3vw, 30px);
  margin-bottom: clamp(28px, 4vw, 44px);
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--store-border);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 240, 0.94));
  box-shadow: 0 18px 44px rgba(1, 60, 53, 0.07);
}

.protocol-library-intro__copy {
  max-width: 820px;
}

.protocol-library-intro__copy h2 {
  max-width: 760px;
  margin: 8px 0 14px;
  color: var(--store-green);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.protocol-library-intro__copy p {
  max-width: 720px;
  margin: 0;
  color: var(--store-muted);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.8;
}

.protocol-library-scenarios {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.protocol-library-scenario {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(1, 60, 53, 0.1);
  border-radius: 8px;
  background: var(--store-white);
}

.protocol-library-scenario__mark {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--store-orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.protocol-library-scenario h3 {
  margin: 0 0 8px;
  color: var(--store-green);
  font-size: 15px;
  line-height: 1.3;
}

.protocol-library-scenario p {
  margin: 0;
  color: var(--store-muted);
  font-size: 13px;
  line-height: 1.65;
}

.protocol-library-flow {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.6fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  padding-top: clamp(18px, 3vw, 28px);
  border-top: 1px solid var(--store-border);
}

.protocol-library-flow__head h3 {
  margin: 8px 0 0;
  color: var(--store-text);
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.protocol-library-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: protocol-step;
}

.protocol-library-steps li {
  position: relative;
  display: grid;
  gap: 4px;
  padding-left: 44px;
  counter-increment: protocol-step;
}

.protocol-library-steps li::before {
  content: counter(protocol-step);
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--store-green);
  color: var(--store-white);
  font-size: 12px;
  font-weight: 900;
}

.protocol-library-steps strong {
  color: var(--store-green);
  font-size: 14px;
  line-height: 1.4;
}

.protocol-library-steps span {
  color: var(--store-muted);
  font-size: 13px;
  line-height: 1.65;
}

.protocol-library-note {
  padding: 18px 20px;
  border-left: 4px solid var(--store-orange);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 111, 63, 0.08);
}

.protocol-library-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--store-green);
  font-size: 14px;
}

.protocol-library-note p {
  margin: 0;
  color: #7a442c;
  font-size: 13px;
  line-height: 1.7;
}

.protocol-filters {
  margin-bottom: 32px;
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid var(--store-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 240, 0.98));
  box-shadow: 0 18px 38px rgba(1, 60, 53, 0.06);
}

.protocol-filters__form {
  display: block;
}

.protocol-filters__row {
  display: grid;
  grid-template-columns: minmax(280px, 1.8fr) minmax(180px, 1fr) minmax(180px, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.protocol-filters__field,
.protocol-filters__search {
  display: grid;
  gap: 8px;
}

.protocol-filters__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--store-muted);
}

.protocol-search-wrap {
  position: relative;
}

.protocol-search-wrap__icon {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  color: #c6bfb3;
  transform: translateY(-50%);
  pointer-events: none;
  transition: color 0.18s ease;
}

.protocol-search-wrap:focus-within .protocol-search-wrap__icon {
  color: var(--store-orange);
}

.protocol-filters input,
.protocol-filters select {
  min-height: 52px;
  width: 100%;
  border: 1px solid var(--store-border);
  border-radius: 16px;
  background: var(--store-white);
  color: var(--store-ink);
  font: inherit;
  font-size: 15px;
  padding: 0 18px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.protocol-filters input[type="search"] {
  padding-left: 48px;
}

.protocol-filters select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--store-green) 50%),
    linear-gradient(135deg, var(--store-green) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 42px;
}

.protocol-filters input:focus,
.protocol-filters select:focus {
  outline: none;
  border-color: var(--store-orange);
  box-shadow: 0 0 0 3px rgba(255, 111, 63, 0.12);
}

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

.protocol-filters__actions .button {
  min-height: 52px;
  justify-content: center;
}

.product-filters__row {
  grid-template-columns: minmax(320px, 2fr) minmax(220px, 1fr) auto;
}

@media (max-width: 760px) {
  .protocol-library-intro {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .protocol-library-scenarios,
  .protocol-library-flow {
    grid-template-columns: 1fr;
  }

  .protocol-library-scenario {
    padding: 16px;
  }

  .protocol-library-steps li {
    padding-left: 40px;
  }

  .protocol-filters__row {
    grid-template-columns: 1fr;
  }

  .protocol-filters__actions {
    flex-wrap: wrap;
  }

  .protocol-filters__actions .button {
    width: 100%;
    justify-content: center;
  }
}

/* Protocol detail */
.protocol-hero {
  padding: clamp(58px, 7vw, 92px) 0;
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 111, 63, 0.14), transparent 32%),
    var(--store-green);
  color: var(--store-white);
}

.protocol-hero .eyebrow {
  font-size: clamp(25px, 2.7vw, 30px);
}

.protocol-hero h1 {
  max-width: 840px;
  margin: 0 0 18px;
  font-size: clamp(30px, 4.5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.protocol-hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.protocol-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.protocol-meta .prt-tag {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(10px, 1vw, 12px);
}

.protocol-meta .tag-damage,
.protocol-meta .tag-scalp,
.protocol-meta .tag-loss,
.protocol-meta .tag-color,
.protocol-meta .tag-special,
.protocol-meta .tag-neutral {
  color: rgba(255, 255, 255, 0.92);
}

.protocol-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.protocol-badge:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.protocol-badge--master {
  border-color: rgba(255, 111, 63, 0.5);
  background: rgba(255, 111, 63, 0.15);
  color: var(--store-orange);
}

.protocol-section {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--store-white);
}

.protocol-section--muted {
  background: var(--store-cream);
}

.protocol-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(24px, 3vw, 36px);
}

.protocol-product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--store-border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--store-white);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.protocol-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 111, 63, 0.5);
  box-shadow: var(--store-shadow);
}

.protocol-product-card__role {
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--store-green);
  color: var(--store-white);
}

.protocol-product-card__role--optional {
  background: rgba(1, 60, 53, 0.08);
  color: var(--store-green);
}

.protocol-product-card__img {
  padding: 16px;
  background: var(--store-cream);
}

.protocol-product-card__img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.protocol-product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 18px 18px;
}

.protocol-product-card__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--store-text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.protocol-product-card__note {
  font-size: 12px;
  color: var(--store-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.protocol-product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--store-border);
}

.protocol-product-card__foot strong {
  font-size: 16px;
  font-weight: 900;
  color: var(--store-green);
}

.protocol-scheme {
  background: var(--store-cream);
  border: 1px solid var(--store-border);
  border-left: 4px solid var(--store-orange);
  border-radius: 14px;
  padding: clamp(22px, 3vw, 36px);
  font-size: 15px;
  line-height: 1.85;
  color: #333;
  white-space: pre-line;
}

.protocol-section-head {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.protocol-section-head__copy {
  min-width: 0;
}

.protocol-section-head__title {
  display: block;
}

.protocol-download-button {
  flex-shrink: 0;
  white-space: nowrap;
  border: 1px solid rgba(1, 60, 53, 0.16);
  background: var(--store-white);
  color: var(--store-green);
  box-shadow: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.protocol-download-button:hover {
  border-color: var(--store-orange);
  background: rgba(255, 111, 63, 0.06);
  color: var(--store-orange);
}

.protocol-warn-box {
  display: flex;
  gap: 14px;
  background: rgba(255, 111, 63, 0.07);
  border-left: 4px solid var(--store-orange);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
}

.protocol-warn-box p {
  margin: 0;
  font-size: 14px;
  color: #a03510;
  font-weight: 600;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .prt-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .prt-grid { grid-template-columns: 1fr; }
  .task-chips { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .task-chips::-webkit-scrollbar { display: none; }
  .protlib-scroll-track .prt-card { width: 84vw; min-width: 84vw; }
}

.content-block {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--store-border);
  border-radius: 18px;
  background: var(--store-white);
}

.content-block h2 {
  margin: 0 0 12px;
}

.content-block p {
  color: #343434;
  line-height: 1.8;
}

.product-reference-content {
  --or: var(--store-orange);
  --gr: var(--store-green);
  --tx: var(--store-text);
  --gy: var(--store-muted);
  --bg: var(--store-cream);
  --bd: var(--store-border);
}

:where(.store-product-page .prod-content svg) {
  display: inline-block;
  width: 24px;
  max-width: 24px;
  height: 24px;
  max-height: 24px;
  flex: 0 0 auto;
}

.product-reference-content .content-block {
  margin-bottom: clamp(32px, 5vw, 56px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.product-reference-content .content-block h2,
.product-reference-content .content-block p {
  margin-top: 0;
}

.product-reference-content .sec {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.product-reference-content .sec-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(14px, 2vw, 22px);
  color: var(--tx);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.2;
}

.product-reference-content .sec-title svg {
  width: 24px;
  height: 24px;
  color: var(--or);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.product-reference-content .highlight-box,
.product-reference-content .result-box,
.product-reference-content .science-note {
  margin: 18px 0;
  padding: clamp(14px, 2vw, 20px);
  border-radius: 14px;
  line-height: 1.75;
}

.product-reference-content .highlight-box {
  border-left: 4px solid var(--or);
  background: rgba(255, 111, 63, 0.08);
}

.product-reference-content .result-box {
  border: 1px solid rgba(1, 60, 53, 0.14);
  background: rgba(1, 60, 53, 0.05);
  color: var(--gr);
  font-weight: 700;
}

.product-reference-content .al-card,
.product-reference-content .aud-card,
.product-reference-content .proto-card,
.product-reference-content .c3-card {
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid var(--bd);
  border-radius: 16px;
  background: #fff;
}

.product-reference-content .al-icon,
.product-reference-content .c3-icon {
  margin-bottom: 10px;
  font-size: 24px;
}

.product-reference-content .al-name,
.product-reference-content .aud-title,
.product-reference-content .c3-title {
  margin-bottom: 8px;
  color: var(--tx);
  font-weight: 800;
  line-height: 1.3;
}

.product-reference-content .al-desc,
.product-reference-content .aud-item,
.product-reference-content .c3-text {
  color: var(--gy);
  font-size: 13px;
  line-height: 1.7;
}

.product-reference-content .aud-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 111, 63, 0.1);
  color: var(--or);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-reference-content .cmp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 13px;
}

.product-reference-content .cmp-table th,
.product-reference-content .cmp-table td {
  padding: 12px 14px;
  border: 1px solid var(--bd);
  text-align: left;
  vertical-align: top;
}

.product-reference-content .cmp-table th {
  background: rgba(1, 60, 53, 0.05);
  color: var(--gr);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-reference-content .cmp-win {
  color: var(--gr);
  font-weight: 800;
}

.product-reference-content .cmp-lose {
  color: #9a3c1d;
}

.product-reference-content .proto-grid,
.product-reference-content .cards3 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.product-reference-content .cards3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-reference-content .proto-title {
  margin-bottom: 14px;
  color: var(--tx);
  font-weight: 800;
  line-height: 1.35;
}

.product-reference-content .proto-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--bd);
}

.product-reference-content .proto-step:first-of-type {
  border-top: 0;
}

.product-reference-content .proto-step .step-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--gy);
  font-size: 13px;
  line-height: 1.65;
}

.product-reference-content .proto-step .step-text strong {
  color: var(--tx);
  font-weight: 800;
}

.product-reference-content .protocol-steps-single {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.product-reference-content .protocol-steps-single .protocol-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--bd);
  border-radius: 10px;
  background: var(--bg);
}

.product-reference-content .protocol-steps-single .step-num {
  width: 28px;
  min-width: 28px;
  height: 28px;
  font-size: 11px;
}

.product-reference-content .protocol-steps-single .step-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-reference-content .protocol-steps-single .step-text strong {
  display: block;
  color: var(--tx);
  font-weight: 800;
  line-height: 1.25;
}

.messages {
  margin: 18px 0;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(1, 60, 53, 0.08);
  color: var(--store-green);
  font-weight: 700;
}

.messages p {
  margin: 0;
}

.cart-layout,
.checkout-layout {
  max-width: 1040px;
}

.cart-lines {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.link-button {
  color: #b42318;
}

.cart-summary {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--store-border);
  border-radius: 18px;
  background: var(--store-white);
}

.cart-summary p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  color: var(--store-muted);
}

.cart-summary p > span {
  min-width: 0;
}

.cart-summary strong {
  flex: none;
  white-space: nowrap;
  color: var(--store-text);
}

.cart-summary__total {
  padding-top: 12px;
  border-top: 1px solid var(--store-border);
  font-size: 18px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(26px, 5vw, 60px);
  align-items: start;
}

.checkout-summary {
  position: sticky;
  top: 90px;
  margin-top: 0;
  padding: 24px;
  border-radius: var(--abb-radius);
  box-shadow: var(--abb-soft-shadow);
}

.checkout-summary__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--store-border);
}

.checkout-summary__head svg { flex: none; color: var(--store-orange); }

.checkout-summary__head h2 {
  margin: 0;
  font-size: 19px;
  color: var(--store-green);
}

.checkout-summary__items {
  display: grid;
  gap: 10px;
}

.checkout-summary strong { font-variant-numeric: tabular-nums; }

.checkout-summary .cart-summary__total {
  margin-top: 4px;
  padding-top: 16px;
  font-size: 16px;
  color: var(--store-green);
}

.checkout-summary .cart-summary__total span { font-weight: 700; }

.checkout-summary .cart-summary__total strong {
  font-size: 24px;
  font-weight: 900;
  color: var(--store-green);
  letter-spacing: -0.01em;
}

.order-success-box h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.checkout-summary small {
  color: var(--store-muted);
  line-height: 1.6;
}

.order-success-box {
  margin: 24px 0;
  padding: 20px;
  border: 1px solid var(--store-border);
  border-radius: 16px;
  background: var(--store-white);
}

.order-result {
  display: grid;
  justify-items: center;
}

.order-result-hero {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: 100%;
  text-align: center;
}

.order-result-hero .eyebrow {
  display: inline-flex;
  margin: 4px 0 0;
}

.order-result-hero h1 {
  max-width: 680px;
  margin: 0;
}

.order-result-hero p {
  max-width: 620px;
  margin: 0;
  text-align: center;
}

.order-result-icon {
  display: grid;
  place-items: center;
  width: clamp(92px, 12vw, 132px);
  height: clamp(92px, 12vw, 132px);
  margin-bottom: 4px;
  border-radius: 999px;
}

.order-result-icon svg {
  width: 48%;
  height: 48%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.order-result-hero--success .order-result-icon {
  background: #dff5e9;
  color: #0f7a46;
}

.order-result-hero--failed .order-result-icon {
  background: #fee2e2;
  color: #dc2626;
}

.order-result-hero--pending .order-result-icon {
  background: #eef7f4;
  color: var(--store-green);
}

.order-result .order-success-box {
  width: 100%;
}

.order-result .order-success-box h2,
.order-result .order-success-box > p {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.order-success-box__actions {
  display: flex;
  justify-content: center;
  width: 100%;
}

.order-result .order-success-actions {
  justify-self: center;
  text-align: center;
}

.order-result .order-success-actions .button,
.order-result .order-success-box__actions .button {
  width: auto;
  max-width: 100%;
}

.payment-requisites {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.55;
}

.payment-requisites__recipient {
  color: var(--store-green);
  font-size: 19px;
  font-weight: 900;
}

.payment-requisites dl {
  display: grid;
  gap: 13px;
  margin: 0;
}

.payment-requisites dl > div {
  display: grid;
  gap: 3px;
}

.payment-requisites dt {
  color: var(--store-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-requisites dd {
  margin: 0;
  color: var(--store-text);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.payment-requisites__note {
  margin-top: 16px;
  color: var(--store-muted);
  font-size: 15px;
  line-height: 1.7;
}

.store-error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 111, 63, 0.14), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(1, 60, 53, 0.08), transparent 24%),
    var(--store-cream);
}

.store-error-box {
  width: min(560px, 100%);
  text-align: center;
}

.store-error-code {
  margin: 0 0 8px;
  color: var(--store-orange);
  font-size: clamp(80px, 18vw, 140px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.store-error-box h1 {
  margin: 0 0 14px;
  color: var(--store-green);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.store-error-box p {
  margin: 0 auto 30px;
  max-width: 480px;
  color: var(--store-muted);
  font-size: 15px;
  line-height: 1.75;
}

.store-error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button--outline {
  border: 2px solid var(--store-green);
  color: var(--store-green);
  background: transparent;
}

.button--outline:hover {
  border-color: var(--store-green-soft);
  background: var(--store-green);
  color: var(--store-white);
}

/* ── 9. Auth and account ─────────────────────────────────────────────────── */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  backdrop-filter: blur(5px);
}

.auth-modal--open {
  opacity: 1;
  pointer-events: auto;
}

.auth-modal__panel {
  position: relative;
  width: min(480px, 100%);
  max-height: min(90svh, 820px);
  overflow-y: auto;
  border-radius: 22px;
  background: var(--store-white);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.26);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.22s ease;
}

.auth-modal--open .auth-modal__panel {
  transform: none;
}

.auth-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(1, 60, 53, 0.1);
  color: var(--store-green);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--store-border);
}

.auth-tab {
  min-height: 54px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--store-muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-tab--active {
  border-bottom-color: var(--store-orange);
  color: var(--store-orange);
}

.auth-pane,
.auth-profile {
  display: none;
  padding: clamp(26px, 5vw, 38px);
}

.auth-pane--active,
.auth-profile {
  display: block;
}

.auth-pane h2,
.auth-profile h2 {
  margin: 0 0 8px;
  color: var(--store-text);
  font-size: clamp(24px, 3vw, 31px);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.auth-pane p,
.auth-profile p {
  margin: 0 0 22px;
  color: var(--store-muted);
  font-size: 13px;
  line-height: 1.7;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-pane:has(.auth-form--register) {
  padding-block: clamp(22px, 4vw, 32px);
}

.auth-modal__panel:has(.auth-form--register) {
  width: min(640px, 100%);
}

.auth-form--register {
  gap: 11px;
}

.auth-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-form__row--stack {
  grid-template-columns: 1fr;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: var(--store-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--store-border);
  border-radius: 10px;
  background: var(--store-white);
  color: var(--store-text);
  font: inherit;
  font-size: 14px;
  padding: 11px 13px;
  outline: none;
}

.auth-form input:focus {
  border-color: var(--store-orange);
  box-shadow: 0 0 0 3px rgba(255, 111, 63, 0.12);
}

.auth-form--register label {
  gap: 6px;
}

.auth-form--register input {
  min-height: 41px;
  padding-block: 9px;
}

.auth-password {
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  border: 1px solid var(--store-border);
  border-radius: 10px;
  background: var(--store-white);
}

.auth-password input {
  border: 0;
  border-radius: 0;
}

.auth-password button {
  border: 0;
  border-left: 1px solid var(--store-border);
  background: var(--store-cream);
  color: var(--store-green);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  padding: 0 11px;
}

.auth-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: 12px 13px;
  border: 1px solid var(--store-border);
  border-radius: 10px;
  background: var(--store-cream);
  color: var(--store-muted) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.auth-check input {
  width: 17px;
  min-height: auto;
  height: 17px;
  margin-top: 1px;
  accent-color: var(--store-orange);
}

.auth-form .master-benefits {
  margin-top: -1px;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(255, 111, 63, 0.06);
}

.auth-form .master-benefits__note {
  margin-top: 9px;
  font-size: 11.5px;
  line-height: 1.45;
}

.auth-form .master-benefits__summary {
  margin: -1px 0;
  min-height: 28px;
  font-size: 12px;
}

.auth-form .master-benefits[open] .master-benefits__grid {
  margin-top: 9px;
}

.auth-form .master-benefits__grid {
  grid-template-columns: 1fr;
  gap: 6px;
}

.auth-form .master-benefits__item {
  padding: 8px 10px;
  border-radius: 9px;
}

.auth-form .master-benefits__item strong {
  font-size: 12px;
}

.auth-form .master-benefits__item span {
  font-size: 11px;
}

.auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  background: var(--store-orange);
  color: var(--store-white);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  transition: background 0.18s ease, transform 0.18s ease;
}

.auth-submit:hover {
  background: var(--store-orange-dark);
  transform: translateY(-1px);
}

.auth-submit--muted {
  background: var(--store-green);
}

.auth-submit--soft {
  background: var(--store-cream);
  color: var(--store-green);
}

.auth-submit--soft:hover {
  background: rgba(1, 60, 53, 0.12);
}

.auth-submit--muted:hover {
  background: var(--store-green-soft);
}

.auth-note {
  margin-top: 16px !important;
  text-align: center;
}

.auth-note button,
.auth-secondary-link {
  border: 0;
  background: transparent;
  color: var(--store-orange);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.auth-status {
  padding: 12px 14px;
  border: 1px solid var(--store-border);
  border-radius: 12px;
  background: var(--store-cream);
}

.auth-status--master {
  border-color: rgba(255, 111, 63, 0.36);
  background: rgba(255, 111, 63, 0.1);
  color: var(--store-orange-dark) !important;
  font-weight: 800;
}

.auth-profile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 14px;
}

.auth-role-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(1, 60, 53, 0.08);
  color: var(--store-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.auth-role-pill--master {
  background: rgba(255, 111, 63, 0.16);
  color: var(--store-orange-dark);
}

.auth-secondary-link--spaced {
  display: inline-block;
  margin: 2px 0 24px;
}

.auth-profile-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  margin: 0 0 18px;
  padding: 0;
}

.auth-profile-meta dt {
  color: var(--store-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-profile-meta dd {
  margin: 0;
  color: var(--store-text);
  font-size: 14px;
  line-height: 1.5;
}

.auth-profile-actions {
  display: grid;
  gap: 10px;
}

.account-page .simple-page__inner {
  max-width: 1120px;
}

.account-page__intro {
  margin-bottom: 26px;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.account-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--store-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(9, 24, 20, 0.06);
}

.account-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.account-card__head h2 {
  margin: 0;
  color: var(--store-text);
  font-size: 24px;
  line-height: 1.15;
}

.account-role-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(1, 60, 53, 0.08);
  color: var(--store-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.account-role-badge--master {
  background: rgba(255, 111, 63, 0.14);
  color: var(--store-orange-dark);
}

.account-role-badge--retail {
  background: rgba(1, 60, 53, 0.08);
}

.account-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 16px;
  margin: 0 0 8px;
}

.account-summary dt {
  color: var(--store-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-summary dd {
  margin: 0;
  color: var(--store-text);
  font-size: 14px;
  line-height: 1.6;
}

.account-form {
  margin-top: 22px;
}

.account-side-note {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--store-border);
  border-radius: 16px;
  background: var(--store-cream);
}

.account-side-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--store-green);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.account-side-note p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
}

.account-side-note--orders {
  margin-top: 0;
  margin-bottom: 22px;
}

.order-success-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 22px;
}

.account-orders {
  display: grid;
  gap: 18px;
}

.account-order-card {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--store-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(9, 24, 20, 0.05);
}

.account-order-card__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.account-order-card__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--store-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-order-card__head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.account-order-card__head h2 a {
  color: var(--store-text);
  text-decoration: none;
}

.account-order-card__head h2 a:hover {
  color: var(--store-orange);
}

.account-order-card__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: end;
}

.account-order-card__badges--stacked {
  margin-bottom: 16px;
  justify-content: start;
}

.account-order-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.account-order-badge.badge-awaiting {
  background: #fef3c7;
  color: #b45309;
}

.account-order-badge.badge-paid {
  background: #d1fae5;
  color: #047857;
}

.account-order-badge.badge-processing {
  background: #ede9fe;
  color: #6d28d9;
}

.account-order-badge.badge-shipped {
  background: #cffafe;
  color: #0f766e;
}

.account-order-badge.badge-completed {
  background: #dcfce7;
  color: #15803d;
}

.account-order-badge.badge-cancelled,
.account-order-badge.badge-draft,
.account-order-badge.badge-refunded {
  background: #f3f4f6;
  color: #4b5563;
}

.account-order-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.account-order-meta div {
  padding: 14px;
  border: 1px solid var(--store-border);
  border-radius: 14px;
  background: var(--store-cream);
}

.account-order-meta strong {
  display: block;
  margin-bottom: 6px;
  color: var(--store-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-order-meta span {
  color: var(--store-text);
  font-size: 14px;
  line-height: 1.5;
}

.account-order-meta__total {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 10px;
  align-items: center;
}

.account-order-meta__total strong {
  grid-column: 1 / -1;
}

.account-order-pay-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 0;
  border-radius: 999px;
  background: var(--store-orange);
  color: var(--store-white);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-order-pay-inline:disabled {
  opacity: 0.7;
  cursor: wait;
}

.account-order-items p,
.account-order-totals p {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--store-border);
  font-size: 14px;
}

.account-order-items p:first-child,
.account-order-totals p:first-child {
  padding-top: 0;
}

.account-order-items p:last-of-type,
.account-order-totals p:last-of-type {
  border-bottom: 0;
}

.account-order-items small {
  display: block;
  margin-top: 8px;
  color: var(--store-muted);
  font-size: 12px;
}

.account-order-card__link {
  margin-top: 18px;
}

.account-empty {
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--store-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
}

.account-empty h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.account-empty p {
  margin: 0 0 20px;
}

.account-order-lines {
  display: grid;
  gap: 14px;
}

.account-order-line {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--store-border);
}

.account-order-line:first-child {
  padding-top: 0;
}

.account-order-line:last-child {
  border-bottom: 0;
}

.account-order-line p {
  margin: 6px 0 0;
  color: var(--store-muted);
  font-size: 13px;
  line-height: 1.6;
}

.account-order-line__meta {
  text-align: right;
}

.account-order-line__meta span {
  display: block;
  margin-bottom: 5px;
  color: var(--store-muted);
  font-size: 13px;
}

.account-order-line__meta strong {
  color: var(--store-text);
  font-size: 16px;
}

.account-order-totals {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--store-border);
}

.account-order-totals__main {
  font-weight: 900;
  font-size: 18px !important;
}

.account-back-link {
  white-space: nowrap;
}

/* ── 10. Overlays ────────────────────────────────────────────────────────── */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
}

.cart-drawer--open {
  pointer-events: auto;
}

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.cart-drawer--open .cart-drawer__overlay {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(440px, 100%);
  height: 100%;
  background: var(--store-white);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.22);
  transform: translateX(104%);
  transition: transform 0.28s cubic-bezier(.34, 1, .64, 1);
}

.cart-drawer--open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 18px;
  background: var(--store-green);
  color: var(--store-white);
}

.cart-drawer__head .eyebrow {
  margin-bottom: 7px;
}

.cart-drawer__head h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.cart-drawer__close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--store-white);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.cart-drawer__items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow-y: auto;
  padding: 16px;
  background: var(--store-cream);
}

.cart-drawer__item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 92px;
  align-items: stretch;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--store-border);
  border-radius: 16px;
  background: var(--store-white);
}

.cart-drawer__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 84px;
  border-radius: 12px;
  background: var(--store-cream);
  overflow: hidden;
}

.cart-drawer__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-drawer__media span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--store-green);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cart-drawer__item h3 {
  margin: 0 0 4px;
  color: var(--store-text);
  font-size: 17px;
  line-height: 1.35;
}

.cart-drawer__item p,
.cart-drawer__item small {
  display: block;
  margin: 0;
  color: var(--store-muted);
  font-size: 14px;
  line-height: 1.45;
}

.cart-drawer__item strong {
  justify-self: end;
  color: var(--store-orange);
  font-size: 17px;
  text-align: right;
  white-space: nowrap;
}

.cart-drawer__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.drawer-stepper {
  display: flex;
  align-items: center;
  gap: 6px;
}

.drawer-stepper__form {
  display: none;
}

.drawer-stepper__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--store-border);
  border-radius: 50%;
  background: var(--store-white);
  color: var(--store-text);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
  flex-shrink: 0;
}

.drawer-stepper__btn:hover {
  border-color: var(--store-orange);
  color: var(--store-orange);
}

.drawer-stepper__val {
  min-width: 24px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}

.cart-drawer__remove {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border: 1.5px solid #b42318;
  border-radius: 999px;
  background: var(--store-white);
  color: #b42318;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.cart-drawer__remove:hover {
  background: #b42318;
  color: var(--store-white);
}

.cart-drawer__footer {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-top: 1px solid var(--store-border);
  background: var(--store-white);
}

.cart-drawer__footer p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  color: var(--store-muted);
  font-size: 13px;
}

.cart-drawer__footer strong {
  color: var(--store-text);
}

.cart-drawer__total {
  padding-top: 11px;
  border-top: 1px solid var(--store-border);
  font-size: 18px !important;
  font-weight: 900;
}

.cart-drawer__full {
  justify-self: center;
  color: var(--store-green);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.cart-drawer__full:hover {
  color: var(--store-orange);
}

.cart-drawer__empty {
  align-self: start;
  margin: 16px;
  padding: 24px;
  border: 1px solid var(--store-border);
  border-radius: 18px;
  background: var(--store-cream);
}

.cart-drawer__empty h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.cart-drawer__empty p {
  margin: 0 0 18px;
  color: var(--store-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── Cookie consent ───────────────────────────────────────────────────────── */
.cookie-settings-open {
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: calc(-100% - 24px);
  left: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  padding: clamp(16px, 2.5vw, 24px) clamp(14px, 4vw, 48px) calc(clamp(16px, 2.5vw, 24px) + env(safe-area-inset-bottom));
  border-top: 3px solid var(--store-orange);
  background: var(--store-white);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.12);
  transition: bottom 0.45s cubic-bezier(0.34, 1.1, 0.64, 1);
}

.cookie-banner--show {
  bottom: 0;
}

.cookie-banner__text {
  flex: 1;
  min-width: 220px;
}

.cookie-banner__title {
  display: block;
  margin-bottom: 6px;
  color: var(--store-green);
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 800;
  line-height: 1.35;
}

.cookie-banner__text p {
  margin: 0;
  color: var(--store-muted);
  font-size: clamp(12px, 1.2vw, 13px);
  line-height: 1.65;
}

.cookie-banner__text a {
  color: var(--store-orange);
  font-weight: 700;
  text-decoration: none;
}

.cookie-banner__text a:hover {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: clamp(9px, 1vw, 11px) clamp(14px, 1.5vw, 22px);
  border-radius: 7px;
  border: 0;
  font: inherit;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn--accept {
  background: var(--store-orange);
  color: var(--store-white);
}

.cookie-btn--accept:hover {
  background: var(--store-orange-dark);
  box-shadow: 0 6px 16px rgba(255, 111, 63, 0.3);
}

.cookie-btn--settings {
  border: 1px solid rgba(1, 60, 53, 0.25);
  background: transparent;
  color: var(--store-green);
}

.cookie-btn--settings:hover {
  border-color: var(--store-green);
  background: rgba(1, 60, 53, 0.05);
}

.cookie-btn--reject {
  border: 1px solid var(--store-border);
  background: transparent;
  color: var(--store-muted);
}

.cookie-btn--reject:hover {
  border-color: var(--store-muted);
  color: var(--store-text);
}

.cookie-settings {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cookie-settings--show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-settings__box {
  display: flex;
  flex-direction: column;
  width: min(100%, 500px);
  max-height: min(90svh, 720px);
  overflow: hidden;
  border-radius: 16px;
  background: var(--store-white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}

.cookie-settings--show .cookie-settings__box {
  transform: none;
}

.cookie-settings__head {
  position: relative;
  flex: 0 0 auto;
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 32px);
  background: var(--store-green);
}

.cookie-settings__head h2 {
  margin: 0 40px 5px 0;
  color: var(--store-white);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  line-height: 1.3;
}

.cookie-settings__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.5;
}

.cookie-settings__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--store-white);
  cursor: pointer;
  transition: background 0.18s ease;
}

.cookie-settings__close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.cookie-settings__close svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.cookie-settings__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: clamp(18px, 2.5vw, 28px) clamp(18px, 2.5vw, 32px);
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--store-border);
  border-radius: 10px;
}

.cookie-category + .cookie-category {
  margin-top: 12px;
}

.cookie-category__text {
  min-width: 0;
  flex: 1;
}

.cookie-category__title {
  display: block;
  margin-bottom: 4px;
  color: var(--store-green);
  font-size: 13px;
  font-weight: 800;
}

.cookie-category__text p {
  margin: 0;
  color: var(--store-muted);
  font-size: 11px;
  line-height: 1.6;
}

.cookie-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 24px;
  margin-top: 2px;
}

.cookie-toggle input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: var(--store-border);
  cursor: pointer;
  transition: background 0.18s ease;
}

.cookie-toggle__slider::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--store-white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.18s ease;
}

.cookie-toggle input:checked + .cookie-toggle__slider {
  background: var(--store-orange);
}

.cookie-toggle input:checked + .cookie-toggle__slider::after {
  transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle__slider {
  opacity: 0.55;
  cursor: not-allowed;
}

.cookie-toggle input:focus-visible + .cookie-toggle__slider {
  outline: 2px solid var(--store-green);
  outline-offset: 3px;
}

.cookie-settings__footer {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  padding: clamp(14px, 2vw, 20px) clamp(18px, 2.5vw, 32px) calc(clamp(14px, 2vw, 20px) + env(safe-area-inset-bottom));
  border-top: 1px solid var(--store-border);
  background: var(--store-white);
}

.cookie-settings__save,
.cookie-settings__cancel {
  min-height: 42px;
  padding: 11px 22px;
  border-radius: 7px;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.cookie-settings__save {
  border: 0;
  background: var(--store-orange);
  color: var(--store-white);
  font-weight: 800;
}

.cookie-settings__save:hover {
  background: var(--store-orange-dark);
  transform: translateY(-1px);
}

.cookie-settings__cancel {
  border: 1px solid var(--store-border);
  background: transparent;
  color: var(--store-muted);
  font-weight: 700;
}

.cookie-settings__cancel:hover {
  border-color: var(--store-muted);
  color: var(--store-text);
}

/* ── 11. Footer ──────────────────────────────────────────────────────────── */
.store-footer {
  padding: clamp(34px, 5vw, 58px) 0;
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 111, 63, 0.14), transparent 32%),
    var(--store-green);
  color: var(--store-white);
}

.store-footer__layout {
  display: grid;
  gap: clamp(16px, 2.4vw, 25px);
}

.store-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(136px, 0.78fr));
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: clamp(26px, 4vw, 38px);
}

.store-footer__brand {
  display: grid;
  gap: 18px;
}

.store-footer__brand-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.store-footer__logo {
  display: inline-flex;
}

.store-footer__logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.store-footer__about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    background-color 0.18s ease;
}

.store-footer__about-link:hover {
  color: var(--store-white);
  border-color: rgba(255, 111, 63, 0.5);
  background: rgba(255, 111, 63, 0.14);
  transform: translateY(-1px);
}

.store-footer__about-link svg,
.store-footer__contact svg,
.store-footer__social-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.store-footer__desc,
.store-footer__legal p,
.store-footer__entity,
.store-footer__copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.75;
}

.store-footer__contacts,
.store-footer__social {
  display: grid;
  gap: 8px;
}

.store-footer__contact {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.18s ease;
}

.store-footer__contact svg {
  color: var(--store-orange);
  flex: 0 0 auto;
}

.store-footer__contact span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.store-footer__contact:hover {
  color: var(--store-orange);
}

.store-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.store-footer__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--store-orange);
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.store-footer__social-icon:hover {
  border-color: rgba(255, 111, 63, 0.38);
  background: rgba(255, 111, 63, 0.12);
  transform: translateY(-1px);
}

.store-footer__column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.store-footer__title {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11.2px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-footer__links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.store-footer__links a {
  color: rgba(255, 255, 255, 0.44) !important;
  font-size: 12.65px !important;
  font-weight: 500 !important;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.18s ease;
}

.store-footer__links a:hover {
  color: var(--store-orange);
}

.store-footer__link-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.75;
}

.store-footer__bottom {
  display: grid;
  gap: 14px;
}

.store-footer__legal {
  display: grid;
  gap: 12px;
}

.store-footer__rule {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.store-footer__meta {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.store-footer__legal p,
.store-footer__entity,
.store-footer__copyright {
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .store-footer__main {
    grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(150px, 1fr));
  }

  .store-footer__column:last-child {
    grid-column: 1 / -1;
  }
}

/* ── 12. Responsive overrides ────────────────────────────────────────────── */
@media (max-width: 820px) {
  .prod-hero-grid,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .prod-img-block {
    position: static;
  }

  .prod-thumb-list {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-right: 0;
    margin-left: 0;
    padding: 6px 8px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .prod-thumb {
    flex: 0 0 72px;
    scroll-snap-align: start;
  }

  .prod-image-modal__dialog {
    width: min(100vw - 24px, 1200px);
    height: min(100svh - 24px, 100vh - 24px);
    margin: 12px auto;
    padding: 18px;
  }

  .prod-image-modal__nav {
    width: 42px;
    height: 42px;
    font-size: 36px;
  }

  .master-promo-detail__main {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .master-promo-detail__meta {
    flex-direction: column;
  }

  .master-promo-detail__meta span {
    width: 100%;
  }

  .checkout-form__grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

  .order-result {
    padding-inline: clamp(18px, 6vw, 28px);
  }

  .order-result-hero {
    gap: 10px;
  }

  .order-result-icon {
    width: 88px;
    height: 88px;
  }

  .order-result .order-success-box {
    padding: 18px;
  }

  .store-footer__main {
    grid-template-columns: 1fr;
  }

  .review-carousel {
    max-width: min(430px, 100%);
  }

  .review-card__media {
    aspect-ratio: 4 / 5;
  }

  .content-carousel__nav {
    gap: 10px;
  }

  .content-carousel__btn {
    width: 40px;
    height: 40px;
  }

  .content-carousel__dots {
    max-width: calc(100vw - 116px);
    gap: 6px;
  }

  .content-carousel__dot.active {
    width: 18px;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    max-height: calc(100svh - 16px);
    overflow-y: auto;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    min-width: 0;
    padding-inline: 10px;
    white-space: normal;
  }

}

@media (max-width: 900px) {
  .store-hero__grid,
  .split {
    grid-template-columns: 1fr;
  }

  .compare-grid,
  .home-path-grid,
  .audience-grid,
  .trust-grid,
  .author-note {
    grid-template-columns: 1fr;
  }

  .author-note a {
    justify-self: start;
  }

  .author-profile__intro,
  .author-profile__text {
    grid-template-columns: 1fr;
  }

  .author-profile__media {
    width: min(100%, 360px);
  }

  .section-head--with-media,
  .catalog-line__head,
  .catalog-product-grid,
  .catalog-product-grid--duo {
    grid-template-columns: 1fr;
  }

  .section-head--action {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head__media {
    max-width: 220px;
  }

  .catalog-line__icon {
    width: 92px;
  }

  .store-catalog-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-card--plain {
    border-right: 0;
    border-bottom: 1px solid var(--store-border);
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .product-reference-content .audience-grid,
  .product-reference-content .protocol-methods {
    grid-template-columns: 1fr;
  }

  .product-reference-content .info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-reference-content .proto-grid,
  .product-reference-content .cards3 {
    grid-template-columns: 1fr;
  }

  .order-contact-row,
  .order-section__main-row {
    flex-direction: column;
  }

  .order-stepper,
  .prod-cart-submit {
    width: 100%;
  }

  .stage-grid {
    grid-template-columns: 1fr;
  }

  .stage-card {
    border-right: 0;
    border-bottom: 1px solid var(--store-border);
  }

  .stage-card:last-child {
    border-bottom: 0;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card:nth-child(3) {
    border-top: 1px solid var(--store-border);
    border-right: 0;
  }

  .feature-card:nth-child(odd) {
    border-right: 1px solid var(--store-border);
  }

  .feature-card:nth-child(even) {
    border-right: 0;
  }

  .store-hero {
    min-height: auto;
  }

  .media-panel {
    justify-self: start;
    width: min(310px, 100%);
  }

  .brand-lockup__name {
    white-space: normal;
  }

  .brand-lockup__sub {
    text-align: left;
    text-align-last: auto;
    white-space: normal;
  }

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

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .store-header__inner {
    min-height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-block: 10px;
  }

  .store-nav {
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
  }

  .store-header__brand {
    flex: 1 1 auto;
    gap: 8px;
    min-width: 0;
  }

  .store-nav__links {
    display: none;
  }

  .store-nav__contact {
    display: none;
  }

  .store-nav__actions {
    justify-content: flex-end;
    flex: 0 0 auto;
    gap: 7px;
  }

  .store-nav__cart,
  .store-account-btn {
    min-width: 42px;
    min-height: 42px;
    padding: 0 11px;
    justify-content: center;
  }

  .store-nav__label {
    display: none;
  }

  .store-nav__count {
    position: absolute;
    top: -4px;
    right: -4px;
    margin-left: 0;
  }

  .store-nav__toggle {
    display: block;
    flex: 0 0 auto;
  }

  .store-mobile-menu {
    display: block;
  }

  .store-mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
  }

  .store-mobile-menu__title {
    color: var(--store-white);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .store-mobile-menu__close {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--store-white);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
  }

  .store-mobile-menu__links {
    display: grid;
    gap: 10px;
  }

  .store-mobile-menu__links a {
    display: block;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }

  .store-mobile-menu__contacts {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .store-mobile-menu__contacts-title {
    color: var(--store-orange);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .store-mobile-menu__contacts a {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    overflow-wrap: anywhere;
  }

  .store-mobile-menu__contacts span {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .store-cats {
    position: static;
  }

  .cat-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-chip {
    min-height: 58px;
    font-size: 10px;
  }

  .store-hero h1 {
    font-size: clamp(30px, 10vw, 44px);
  }

  .store-hero__title {
    font-size: clamp(20px, 6.8vw, 32px) !important;
  }

  .media-panel {
    margin-inline: auto;
  }

  .button-row {
    flex-direction: column;
  }

  .task-search {
    padding: 16px 18px 16px 52px;
    font-size: 14px;
  }

  .store-catalog-section__nav-wrap {
    top: 88px;
    padding-top: 12px;
  }

  .store-catalog-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .store-catalog-nav::-webkit-scrollbar {
    display: none;
  }

  .store-catalog-nav__link {
    flex: 0 0 auto;
    min-width: 154px;
    min-height: 56px;
  }

  .catalog-line {
    scroll-margin-top: 176px;
  }

  .audience-card__head,
  .audience-card__body {
    padding-inline: 24px;
  }

  .metric-strip {
    flex-direction: column;
    gap: 18px;
  }

  .metric-strip__divider {
    width: 100%;
    height: 1px;
  }

  .button {
    width: 100%;
  }

  .master-benefits__grid {
    grid-template-columns: 1fr;
  }

  .master-benefits {
    padding: 16px;
  }

  .store-error-actions {
    flex-direction: column;
  }

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

  .blog-list-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    gap: 12px;
  }

  .product-card {
    border-radius: 14px;
  }

  .product-card__body {
    padding: 16px;
  }

  .product-card h3 {
    font-size: 16px;
  }

  .product-card__name {
    margin-bottom: 6px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .product-card__meta {
    font-size: 12px;
  }

  .inline-cart-form button,
  .product-card__foot strong,
  .product-card__foot a {
    font-size: 12px;
  }

  .product-card__foot {
    align-items: stretch;
    flex-direction: column;
  }

  .master-promo-card {
    padding: 9px 10px;
  }

  .master-promo-card__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    border-top: 1px solid var(--store-border);
    border-right: 0 !important;
  }

  .feature-card:first-child {
    border-top: 0;
  }

  .notice-box {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
  }

  .info-card,
  .quote-card {
    padding: 24px;
  }

  .product-card__foot a {
    width: 100%;
  }

  .store-footer__grid {
    grid-template-columns: 1fr;
  }

  .auth-form__row {
    grid-template-columns: 1fr;
  }

  .auth-modal {
    align-items: end;
    padding: 0;
  }

  .cookie-settings {
    align-items: flex-end;
    padding: 12px;
    padding-bottom: 0;
  }

  .cookie-settings__box {
    width: 100%;
    max-height: 92svh;
    border-radius: 18px 18px 0 0;
  }

  .cookie-settings__footer {
    flex-direction: column-reverse;
  }

  .cookie-settings__save,
  .cookie-settings__cancel {
    width: 100%;
  }

  .auth-modal__panel {
    width: 100%;
    max-height: 92svh;
    border-radius: 22px 22px 0 0;
  }

  .cart-drawer__panel {
    width: min(100%, 390px);
  }

  .cart-drawer__item {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .cart-drawer__media {
    width: 66px;
  }

  .cart-drawer__item strong {
    grid-column: 2;
  }

  .order-success-actions,
  .account-order-card__head,
  .account-order-line {
    align-items: center;
    flex-direction: column;
  }

  .split,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .author-note {
    padding: 20px;
  }

  .author-profile {
    padding: 22px;
  }

  .author-profile__facts {
    grid-template-columns: 1fr;
  }

  .product-reference-content .info-grid {
    grid-template-columns: 1fr;
  }

  .account-order-card__badges {
    justify-content: start;
  }

  .account-order-meta {
    grid-template-columns: 1fr;
  }

  .account-order-line__meta {
    text-align: left;
  }
}

/* ── Product card extended fields ─────────────────────────────────────── */
.product-card__top {
  position: relative;
  background: var(--store-cream);
}

.pc-n {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 9px;
  border: 1px solid var(--store-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  font-size: clamp(10px, 0.85vw, 12px);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--store-orange);
  opacity: 1;
}

.pc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: min(58%, 190px);
  box-sizing: border-box;
  padding: 6px 12px;
  border: 0;
  border-radius: 999px;
  background: var(--store-green);
  font-size: clamp(9px, 0.72vw, 10.5px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--store-white);
  line-height: 1.3;
  box-shadow: 0 6px 16px rgba(1, 60, 53, 0.22);
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Problem / solution rows — refined accent bars, shared by home + catalog. */
.pc-row {
  padding: 10px 13px;
  border-radius: 10px;
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.6;
}

.pc-row strong {
  display: block;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.pc-pain {
  background: rgba(255, 111, 63, 0.07);
  border-left: 3px solid rgba(255, 111, 63, 0.55);
  color: var(--store-text);
}

.pc-pain strong {
  color: var(--store-orange-dark);
}

.pc-sol {
  background: rgba(1, 60, 53, 0.06);
  border-left: 3px solid rgba(1, 60, 53, 0.5);
  color: var(--store-text);
}

.pc-sol strong {
  color: var(--store-green);
}

.pc-sci {
  margin: 8px 0 0;
  font-size: 11.5px;
  font-style: italic;
  color: var(--store-muted);
  line-height: 1.55;
}

@media (max-width: 680px) {
  .pc-n,
  .product-card--catalog .pc-n {
    top: 8px;
    left: 8px;
    padding: 3px 6px;
    border-radius: 8px;
    font-size: 10px;
    line-height: 1.25;
    letter-spacing: 0.02em;
  }

  .pc-badge,
  .product-card--catalog .pc-badge {
    top: 8px;
    right: 8px;
    max-width: min(56%, 150px);
    padding: 3px 6px;
    border-radius: 8px;
    font-size: 8.5px;
    line-height: 1.25;
    letter-spacing: 0.02em;
  }
}

/* ── Protocol lock gate ──────────────────────────────────────────────────── */
.protocol-lock-gate {
  display: grid;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--store-cream);
}

.protocol-lock-gate__blur {
  grid-area: 1 / 1;
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
  opacity: 0.45;
  min-height: 280px;
  padding: 36px 24px;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-line;
}

.protocol-lock-gate__overlay {
  grid-area: 1 / 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  min-height: 280px;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(2px);
}

.protocol-lock-gate__overlay svg {
  color: var(--store-green);
  flex-shrink: 0;
}

.protocol-lock-gate__overlay strong {
  font-size: 15px;
  font-weight: 700;
  display: block;
}

.protocol-lock-gate__overlay p {
  font-size: 13px;
  color: var(--store-muted);
  margin: 0;
  max-width: 420px;
}

@media (max-width: 760px) {
  .protocol-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ── Reduced motion ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ==========================================================================
   Product reviews & ratings
   ========================================================================== */
.prod-reviews {
  padding: 36px 0 64px;
}
.reviews-head {
  margin-bottom: 24px;
}

/* Star rating display */
.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--store-orange);
  line-height: 0;
}
.star-rating .star {
  width: 18px;
  height: 18px;
}
.star-rating--sm .star { width: 15px; height: 15px; }
.star-rating--lg .star { width: 26px; height: 26px; }
.star-rating .star--full path { fill: currentColor; stroke: none; }
.star-rating .star--empty path { fill: none; stroke: currentColor; stroke-width: 1.2; opacity: .45; }
.star-rating .star--half path { fill: currentColor; }

/* Overview: score + distribution bars */
.reviews-overview {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 28px;
  background: var(--store-white);
  border: 1px solid var(--store-border);
  border-radius: 20px;
  box-shadow: var(--store-shadow);
}
.reviews-score {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-right: 1px solid var(--store-border);
  padding-right: 24px;
}
.reviews-score__value {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: var(--store-green);
}
.reviews-score__count {
  font-size: 14px;
  color: var(--store-muted);
}
.reviews-bars {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.reviews-bar {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 12px;
}
.reviews-bar__label {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  font-weight: 600;
  color: var(--store-muted);
}
.reviews-bar__label .star { width: 13px; height: 13px; color: var(--store-orange); }
.reviews-bar__label .star path { fill: currentColor; }
.reviews-bar__track {
  height: 9px;
  border-radius: 999px;
  background: var(--store-cream);
  border: 1px solid var(--store-border);
  overflow: hidden;
}
.reviews-bar__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--store-orange), var(--store-orange-dark));
  transition: width .5s ease;
}
.reviews-bar__count {
  font-size: 13px;
  color: var(--store-muted);
  text-align: right;
}

/* Submit form */
.reviews-form-wrap {
  margin-top: 28px;
}
.reviews-form,
.reviews-login {
  padding: 24px;
  background: var(--store-white);
  border: 1px solid var(--store-border);
  border-radius: 18px;
}
.reviews-form__title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  color: var(--store-green);
}
/* Interactive star input (reversed row for CSS sibling hover/checked) */
.reviews-form__stars {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 4px;
  margin-bottom: 14px;
}
.reviews-form__stars input { position: absolute; opacity: 0; pointer-events: none; }
.reviews-form__stars label {
  cursor: pointer;
  color: #d8d2c8;
  transition: color .15s ease, transform .15s ease;
}
.reviews-form__stars label svg { width: 30px; height: 30px; }
.reviews-form__stars label svg path { fill: currentColor; }
.reviews-form__stars label:hover,
.reviews-form__stars label:hover ~ label,
.reviews-form__stars input:checked ~ label {
  color: var(--store-orange);
}
.reviews-form__stars label:hover { transform: scale(1.12); }
.reviews-form__title-input,
.reviews-form__body {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1px solid var(--store-border);
  border-radius: 12px;
  font: inherit;
  background: var(--store-cream);
  color: var(--store-text);
}
.reviews-form__body { resize: vertical; min-height: 96px; }
.reviews-form__title-input:focus,
.reviews-form__body:focus {
  outline: none;
  border-color: var(--store-orange);
  background: var(--store-white);
}
.reviews-form__submit,
.reviews-login__btn {
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  background: var(--store-orange);
  color: var(--store-white);
  transition: background .15s ease;
}
.reviews-form__submit:hover,
.reviews-login__btn:hover { background: var(--store-orange-dark); }
.reviews-login p { margin: 0 0 14px; color: var(--store-muted); }

/* Review cards */
.reviews-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
/* Product review cards (scoped to .reviews-list to avoid clashing with the
   home video-review cards that share the .review-card name). */
.reviews-list .review-card {
  padding: 26px 28px;
  background: var(--store-white);
  border: 1px solid var(--store-border);
  border-radius: 16px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.reviews-list .review-card:hover {
  border-color: #d9d2c6;
  box-shadow: 0 10px 28px rgba(1, 60, 53, .07);
}
.review-card__top {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--store-border);
}
.review-card__ident {
  min-width: 0;
}
.review-card__name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.review-card__name {
  font-size: 18px;
  font-weight: 800;
  color: var(--store-green);
}
.review-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.review-card__sep { color: var(--store-border); }
.review-card__date {
  font-size: 12px;
  color: var(--store-muted);
  white-space: nowrap;
}
.review-card__content {
  color: #2b2b2b;
}
.reviews-list .review-card__title {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--store-text);
}
.reviews-list .review-card__body {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}
.review-badge svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.review-badge--master { background: rgba(255, 111, 63, .12); color: var(--store-orange-dark); }
.review-badge--staff { background: rgba(1, 60, 53, .1); color: var(--store-green); }
.review-badge--verified { background: rgba(3, 90, 80, .12); color: var(--store-green-soft); }
.reviews-empty {
  margin: 24px 0 0;
  color: var(--store-muted);
}

/* Rating row under the product title */
.prod-rating {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 12px 0 16px;
  text-decoration: none;
  color: var(--store-text);
}
.prod-rating .star-rating .star { width: 21px; height: 21px; }
.prod-rating strong { font-size: 18px; color: var(--store-green); }
.prod-rating__count {
  margin-left: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--store-muted);
  border-bottom: 1px dashed transparent;
}
.prod-rating:hover .prod-rating__count {
  color: var(--store-orange);
  border-bottom-color: currentColor;
}

@media (max-width: 720px) {
  .reviews-overview {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px;
  }
  .reviews-score {
    border-right: none;
    border-bottom: 1px solid var(--store-border);
    padding-right: 0;
    padding-bottom: 18px;
  }
  .reviews-list .review-card { padding: 22px 20px; }
  .reviews-list .review-card__title { font-size: 18px; }
}

.product-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 2px 0 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--store-muted);
}
.product-card__rating:hover { color: var(--store-orange); }

/* ==========================================================================
   Promo code (cart & checkout)
   ========================================================================== */
.cart-summary__promo span { color: var(--store-green-soft); }
.cart-summary__promo strong { color: var(--store-green-soft); }
.promo-box { margin: 12px 0 14px; }
.promo-form {
  display: flex;
  gap: 8px;
}
.promo-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--store-border);
  border-radius: 10px;
  font: inherit;
  text-transform: uppercase;
  background: var(--store-white);
}
.promo-input:focus { outline: none; border-color: var(--store-orange); }
.promo-apply-btn {
  flex: 0 0 auto;
  padding: 10px 18px;
  border: 1px solid var(--store-green);
  border-radius: 10px;
  background: var(--store-white);
  color: var(--store-green);
  font-weight: 700;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.promo-apply-btn:hover { background: var(--store-green); color: #fff; }
.promo-error {
  margin: 8px 0 0;
  font-size: 13px;
  color: #dc2626;
}
.promo-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border: 1px dashed var(--store-green-soft);
  border-radius: 10px;
  background: rgba(3, 90, 80, .06);
}
.promo-applied__info { display: flex; flex-direction: column; gap: 2px; }
.promo-applied__code { font-weight: 800; color: var(--store-green); letter-spacing: .04em; }
.promo-applied__label { font-size: 13px; color: var(--store-green-soft); }
.promo-remove {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--store-cream);
  color: var(--store-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.promo-remove:hover { background: #f0d9d2; color: var(--store-orange-dark); }

/* My promo codes (account) */
.account-promo-list { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 8px; }
.account-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px dashed var(--store-green-soft);
  border-radius: 10px;
  background: rgba(3, 90, 80, .05);
}
.account-promo__code { font-weight: 800; letter-spacing: .04em; color: var(--store-green); }
.account-promo__label { font-size: 13px; color: var(--store-green-soft); text-align: right; }

/* ==========================================================================
   Welcome / first-order discount modal
   ========================================================================== */
.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 9200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.welcome-modal--open { opacity: 1; pointer-events: auto; }
.welcome-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(1, 28, 25, .58);
  backdrop-filter: blur(5px);
}
.welcome-modal__panel {
  position: relative;
  width: min(440px, 100%);
  max-height: min(92svh, 760px);
  overflow: hidden;
  border-radius: 24px;
  background: var(--store-white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
  transform: translateY(16px) scale(.97);
  transition: transform .25s ease;
}
.welcome-modal--open .welcome-modal__panel { transform: none; }
.welcome-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .85);
  color: var(--store-green);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.welcome-modal__hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 34px 24px 30px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--store-orange), var(--store-orange-dark));
  overflow: hidden;
}
/* soft decorative glow so the hero feels less flat */
.welcome-modal__hero::before,
.welcome-modal__hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  pointer-events: none;
}
.welcome-modal__hero::before { width: 150px; height: 150px; top: -60px; right: -40px; }
.welcome-modal__hero::after { width: 110px; height: 110px; bottom: -55px; left: -35px; }
.welcome-modal__pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}
.welcome-modal__value {
  position: relative;
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .18);
}
.welcome-modal__body { padding: 24px 26px 26px; text-align: center; }
.welcome-modal__title { margin: 0 0 8px; font-size: 23px; line-height: 1.25; color: var(--store-green); }
.welcome-modal__text {
  margin: 0 auto 18px;
  max-width: 34ch;
  color: var(--store-muted);
  line-height: 1.55;
  font-size: 15px;
}
.welcome-modal__auto {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  padding: 13px 16px;
  text-align: left;
  border-radius: 14px;
  background: rgba(1, 60, 53, .055);
  color: var(--store-green);
  font-size: 13.5px;
  line-height: 1.4;
}
.welcome-modal__auto svg { flex: none; color: var(--store-orange); }
.welcome-modal__auto strong { font-weight: 800; }
.welcome-modal__cta {
  display: inline-block;
  width: 100%;
  padding: 15px 22px;
  border-radius: 999px;
  background: var(--store-orange);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(255, 111, 63, .32);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.welcome-modal__cta:hover {
  background: var(--store-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255, 111, 63, .38);
}
.welcome-modal__condition {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--store-muted);
}
.welcome-modal__condition svg { flex: none; opacity: .7; }

@media (max-width: 420px) {
  .welcome-modal__hero { padding: 28px 22px 26px; }
  .welcome-modal__value { font-size: 50px; }
  .welcome-modal__title { font-size: 21px; }
}
