*, *::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);
}

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 {
  position: relative;
}

.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: 12px;
}

.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 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;
}

/* ── 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;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

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

.product-card > img,
.product-card__top img {
  width: 100%;
  aspect-ratio: 1.2;
  padding: 24px;
  background: var(--store-cream);
  object-fit: contain;
}

.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.product-card__name {
  margin: 0 0 8px;
  color: var(--store-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card h3,
.blog-card h3 {
  margin: 0;
  color: var(--store-text);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.28;
  letter-spacing: -0.025em;
}

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

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

.product-card__foot strong {
  font-size: 18px;
  font-weight: 900;
}

.product-card__foot a,
.blog-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 7px;
  background: var(--store-green);
  color: var(--store-white);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

.product-card__foot a:hover,
.blog-card a:hover {
  background: var(--store-green-soft);
  transform: translateY(-1px);
}

/* ── 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;
}

.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__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__item > .prt-card,
.content-carousel__item > .blog-card {
  flex: 1;
}

.content-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  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;
}

.content-carousel__dot {
  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 {
  width: auto;
  min-width: 0;
}

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

.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-shrink: 0;
  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 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));
}

.product-card--catalog {
  min-height: 100%;
  border-radius: 14px;
  box-shadow: none;
}

.product-card--catalog:hover {
  transform: translateY(-4px);
  border-color: var(--store-orange);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.08);
}

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

.product-card--catalog .product-card__top img,
.product-card--catalog.product-card > img {
  aspect-ratio: 1;
  padding: clamp(20px, 2.5vw, 32px) clamp(16px, 2vw, 24px);
}

.product-card--catalog .product-card__top {
  min-height: clamp(130px, 12vw, 150px);
  border-bottom: 1px solid var(--store-border);
}

.product-card--catalog .product-card__name {
  margin-bottom: 7px;
  color: var(--store-orange);
  font-size: clamp(15px, 1.55vw, 18px);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.25;
}

.product-card--catalog h3 {
  margin-bottom: clamp(10px, 1.3vw, 18px);
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.product-card--catalog .pc-n {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--store-orange);
  opacity: 1;
}

.product-card--catalog .pc-badge {
  top: 10px;
  right: 10px;
  max-width: 110px;
  padding: 4px 9px;
  border-radius: 20px;
  background: var(--store-green);
  color: var(--store-white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
}

.product-card--catalog .pc-row {
  margin: 0 0 clamp(6px, 0.8vw, 9px);
  padding: clamp(8px, 1vw, 12px) clamp(10px, 1.2vw, 15px);
  font-size: 14px;
  line-height: 1.65;
}

.product-card--catalog .pc-row strong {
  margin-bottom: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.product-card--catalog .pc-pain {
  background: #fff5f0;
  border-left: 3px solid #ffb080;
  color: #7a3a20;
}

.product-card--catalog .pc-pain strong {
  color: #c04a15;
}

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

.product-card--catalog .pc-sol strong {
  color: #1a7a40;
}

.product-card--catalog .pc-sci {
  flex: 1;
  margin: clamp(6px, 0.8vw, 8px) 0 clamp(10px, 1.5vw, 18px);
  color: var(--store-muted);
  font-size: 12px;
  line-height: 1.6;
  font-style: italic;
}

.product-card--catalog .product-card__meta {
  margin: 0;
  color: var(--store-muted);
  font-size: 11px;
  font-weight: 400;
}

.product-card--catalog .product-card__foot {
  gap: 12px;
  padding-top: clamp(10px, 1.3vw, 18px);
}

.product-card--catalog .product-card__foot strong {
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 800;
  line-height: 1;
}

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

.trust-card {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--store-border);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 111, 63, 0.08), transparent 34%),
    var(--store-white);
}

.trust-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 20px;
  background: rgba(255, 111, 63, 0.1);
  color: var(--store-orange);
}

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

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

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

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

/* 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;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--store-border);
  background: var(--store-white);
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.blog-list-grid .blog-card {
  width: auto;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--store-shadow);
}

.blog-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.6;
  background: var(--store-cream);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}
.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: 12px;
  left: 12px;
  background: var(--store-orange);
  color: var(--store-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 1;
}
.blog-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 20px 20px;
}
.blog-card-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--store-muted);
  margin-bottom: 8px;
}
.blog-card-title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--store-text);
  margin-bottom: 10px;
}
.blog-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--store-muted);
  flex: 1;
  margin-bottom: 14px;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--store-orange);
  margin-top: auto;
}

.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(4) {
  padding: 0 0 64px;
}

.store-about .store-section:nth-of-type(5) {
  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;
}

.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-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--store-border);
  border-radius: 16px;
}

.compare-card {
  padding: clamp(24px, 3.5vw, 52px) clamp(20px, 3vw, 48px);
}

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

.compare-card--brand {
  background: var(--store-green);
}

.compare-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 15px;
  border-radius: 30px;
  margin-bottom: clamp(14px, 1.8vw, 26px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.compare-card__tag--plain {
  background: rgba(0, 0, 0, 0.05);
  color: var(--store-muted);
}

.compare-card__tag--brand {
  background: rgba(255, 111, 63, 0.15);
  color: var(--store-orange);
}

.compare-card h3 {
  margin: 0 0 12px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
}

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

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

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

.compare-card--plain p {
  color: var(--store-muted);
}

.compare-card--brand p {
  color: rgba(255, 255, 255, 0.68);
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--store-border);
  border-radius: 16px;
}

.stage-card {
  padding: clamp(18px, 2.5vw, 36px) clamp(14px, 2vw, 26px);
  border-right: 1px solid var(--store-border);
  transition: background 0.2s ease;
}

.stage-card:last-child {
  border-right: 0;
}

.stage-card:hover {
  background: var(--store-cream);
}

.stage-card__num {
  display: block;
  margin-bottom: clamp(10px, 1.3vw, 18px);
  color: rgba(1, 60, 53, 0.35);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.stage-card__title {
  margin-bottom: clamp(6px, 0.8vw, 10px);
  color: var(--store-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.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);
  border-radius: 16px;
  background: var(--store-white);
}

.audience-card__head {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 48px) clamp(22px, 3vw, 44px) clamp(20px, 2.5vw, 34px);
  background: var(--store-green);
  color: var(--store-white);
}

.audience-card__chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 111, 63, 0.15);
  color: var(--store-orange);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: clamp(12px, 1.5vw, 20px);
}

.audience-card__head h3 {
  min-height: 60px;
  margin: 0 0 clamp(8px, 1vw, 12px);
  color: var(--store-white);
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.35;
}

.audience-card__head p {
  min-height: 48px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.7;
}

.audience-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 3vw, 38px) clamp(22px, 3vw, 44px) clamp(24px, 3vw, 42px);
  background: var(--store-cream);
}

.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 {
  border-color: rgba(1, 60, 53, 0.18);
  color: var(--store-green);
}

.button--ghost-dark:hover {
  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;
}

.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-form__section {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--store-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.checkout-form__section h2 {
  margin: 0;
  color: var(--store-green);
  font-size: clamp(20px, 2vw, 25px);
}

.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-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;
  min-height: 220px;
  place-items: center;
  background: linear-gradient(135deg, var(--store-cream), #ffffff);
  color: rgba(1, 60, 53, 0.22);
  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;
}

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

.inline-cart-form button,
.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:hover {
  border-color: var(--store-orange);
  color: var(--store-orange);
}

.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;
}

.prod-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  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-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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-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;
}

.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;
}

/* ── 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;
}

.prt-card {
  background: var(--store-white);
  border: 1px solid var(--store-border);
  border-radius: 14px;
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s;
  text-align: left;
  text-decoration: none;
  color: inherit;
}

.prt-card:hover {
  border-color: var(--store-orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.prt-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.prt-num {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: rgba(1, 60, 53, 0.2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 42px;
}

.prt-card-title {
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 800;
  color: var(--store-green);
  letter-spacing: -0.2px;
  line-height: 1.3;
  margin-bottom: 4px;
}

.prt-card-task {
  font-size: clamp(11px, 1.1vw, 12px);
  color: var(--store-muted);
  line-height: 1.55;
}

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

.prt-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
}

.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-divider {
  border: none;
  border-top: 1px solid var(--store-border);
  margin: 0;
}

.prt-products-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--store-muted);
  margin-bottom: 4px;
}

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

.prt-prod {
  display: inline-block;
  background: rgba(255, 111, 63, 0.10);
  color: var(--store-green);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 6px;
  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: 6px;
  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-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-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 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-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-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;
}

.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 strong {
  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;
}

.checkout-summary h2,
.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);
}

.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-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.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-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-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;
  gap: 12px;
  flex-wrap: wrap;
  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-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;
}

/* ── 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__contact--email 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: 10px;
}

.store-footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s ease;
}

.store-footer__contact svg {
  color: var(--store-orange);
}

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

.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;
  }

  .checkout-form__grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

  .store-footer__main {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 900px) {
  .store-hero__grid,
  .split {
    grid-template-columns: 1fr;
  }

  .compare-grid,
  .audience-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .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;
  }

  .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: 0 0 auto;
    gap: 10px;
  }

  .store-nav__links {
    display: none;
  }

  .store-nav__actions {
    flex: 0 0 auto;
    gap: 10px;
  }

  .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-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;
  }

  .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%;
  }

  .store-error-actions {
    flex-direction: column;
  }

  .product-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .product-card__foot {
    align-items: stretch;
    flex-direction: column;
  }

  .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;
  }

  .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 {
    flex-direction: column;
  }

  .split,
  .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: 14px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--store-muted);
  opacity: 0.7;
}

.pc-badge {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--store-orange);
  max-width: 90px;
  line-height: 1.3;
}

.pc-row {
  padding: 9px 12px;
  border-radius: 8px;
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.6;
}

.pc-row strong {
  display: block;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.pc-pain {
  background: rgba(255, 111, 63, 0.07);
  color: var(--store-text);
}

.pc-pain strong {
  color: var(--store-orange);
}

.pc-sol {
  background: rgba(1, 60, 53, 0.07);
  color: var(--store-text);
}

.pc-sol strong {
  color: var(--store-green);
}

.pc-sci {
  margin: 10px 0 0;
  font-size: 11px;
  font-style: italic;
  color: var(--store-muted);
  line-height: 1.55;
}

/* ── 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;
  }
}
