.static-page {
  min-height: 100vh;
}

.static-page main {
  padding-top: 100px;
  background: var(--body-bg);
}

.page-breadcrumbs {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 clamp(24px, 6vw, 96px);
  color: var(--muted);
  background: color-mix(in srgb, var(--panel-bg-strong) 84%, transparent);
  border-bottom: 1px solid rgba(var(--teal-rgb), 0.13);
  font-size: 14px;
  font-weight: 700;
}

.page-breadcrumbs a {
  color: var(--ink);
  text-decoration: none;
}

.page-breadcrumbs a:hover {
  color: var(--teal);
}

.page-hero {
  min-height: 220px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(42px, 4.8vw, 76px) clamp(36px, 6vw, 96px) clamp(28px, 3.6vw, 52px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(var(--teal-rgb), 0.18), transparent 34%),
    radial-gradient(circle at 18% 64%, rgba(255, 145, 104, 0.14), transparent 28%);
}

.page-hero h1 {
  width: min(1060px, 100%);
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.page-section {
  padding: clamp(34px, 4.1vw, 66px) clamp(42px, 6vw, 96px);
}

.product-detail {
  width: min(1520px, calc(100vw - clamp(56px, 8vw, 144px)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(440px, 1.05fr);
  align-items: start;
  gap: clamp(36px, 4vw, 68px);
}

.product-breadcrumbs {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin: -10px 0 -4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.product-breadcrumbs a {
  color: var(--ink);
  text-decoration: none;
}

.product-breadcrumbs a:hover {
  color: var(--teal);
}

.product-stage {
  position: relative;
  min-height: clamp(520px, 44vw, 620px);
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  grid-template-areas: "thumbs main";
  gap: 16px;
  padding: clamp(14px, 1.7vw, 22px);
  overflow: hidden;
  border-radius: 8px 52px 8px 52px;
  background: var(--visual-bg);
  box-shadow: var(--shadow-strong);
}

.product-gallery-main {
  position: relative;
  grid-area: main;
  min-height: 0;
  display: grid;
}

.product-zoom-trigger {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(var(--teal-rgb), 0.16);
  border-radius: 8px 38px 8px 38px;
  color: inherit;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.52), transparent 34%),
    color-mix(in srgb, var(--media-bg) 72%, transparent);
  cursor: pointer;
}

.product-orbit {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.42), transparent 32%),
    radial-gradient(circle at center, rgba(var(--teal-rgb), 0.24), transparent 70%);
  filter: blur(18px);
}

.product-hero-bottle {
  position: relative;
  z-index: 2;
  width: min(500px, 76%);
  max-height: min(540px, 86%);
  object-fit: contain;
  filter:
    drop-shadow(34px 48px 32px rgba(0, 0, 0, 0.34))
    drop-shadow(0 30px 22px rgba(var(--teal-rgb), 0.24));
}

.zoom-hint {
  display: none;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%) scale(0.94);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.gallery-arrow:hover {
  background: rgba(var(--teal-rgb), 0.95);
}

.product-gallery-main:hover .gallery-arrow,
.gallery-arrow:focus-visible {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.gallery-arrow-prev {
  left: 14px;
}

.gallery-arrow-next {
  right: 14px;
}

.product-thumbs {
  grid-area: thumbs;
  display: grid;
  grid-auto-flow: row;
  grid-auto-rows: 82px;
  gap: 10px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 2px 2px 4px;
  scrollbar-width: thin;
}

.product-thumb {
  height: 82px;
  display: grid;
  place-items: center;
  padding: 6px;
  border: 1px solid rgba(var(--teal-rgb), 0.18);
  border-radius: 8px;
  background: color-mix(in srgb, var(--panel-bg) 86%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.product-thumb.is-active {
  border-color: var(--teal);
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--teal) 28%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.18));
}

.product-gallery-image {
  transition: opacity 160ms ease;
}

.product-sticky-cta {
  display: none;
}

.product-summary h2,
.split-feature h2 {
  margin: 0 0 22px;
  font-size: clamp(32px, 3.1vw, 50px);
  line-height: 1;
}

.product-summary p,
.split-feature p,
.text-page p,
.article-body p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

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

.price-row > span {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--muted);
  font-weight: 800;
}

.price-row strong {
  color: #174638;
  font-size: 34px;
  text-shadow: 0 10px 26px rgba(var(--teal-rgb), 0.14);
}

html[data-theme="dark"] .price-row strong {
  color: var(--butter);
  text-shadow: 0 14px 34px rgba(255, 223, 159, 0.16);
}

.stars {
  display: inline-flex;
  gap: 7px;
  color: var(--gold);
  font-weight: 800;
}

.stars.muted {
  color: var(--muted);
}

.benefit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
}

.benefit-pills span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--teal);
  background: var(--media-bg);
  border: 1px solid rgba(var(--teal-rgb), 0.18);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.product-badges span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 8px;
  color: #9a6428;
  background: rgba(255, 213, 158, 0.28);
  border: 1px solid rgba(154, 100, 40, 0.12);
  font-size: 11px;
  font-weight: 800;
}

html[data-theme="dark"] .product-badges span {
  color: #ffd79d;
  background: rgba(255, 199, 128, 0.15);
  border-color: rgba(255, 215, 157, 0.22);
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 22px;
}

.bundle-card {
  position: relative;
  min-height: 218px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 20px 16px 18px;
  border: 1px solid rgba(var(--teal-rgb), 0.2);
  border-radius: 8px;
  color: var(--ink);
  background: var(--panel-bg);
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.bundle-card.is-selected {
  background: color-mix(in srgb, var(--panel-bg) 70%, #ecffe3 30%);
  border-color: var(--teal);
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--teal) 62%, transparent),
    0 18px 42px rgba(var(--teal-rgb), 0.16);
}

.bundle-card.is-selected::after {
  content: "Selected";
  position: absolute;
  right: 12px;
  top: 12px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--button-ink);
  background: var(--button-bg);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(var(--teal-rgb), 0.18);
}

.bundle-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--teal) 72%, var(--gold));
}

.bundle-card:not(.is-selected):hover {
  background: color-mix(in srgb, var(--panel-bg) 88%, var(--mint) 12%);
}

html[data-theme="dark"] .bundle-card.is-selected {
  color: #fff8e9;
  background:
    radial-gradient(circle at 50% 14%, rgba(112, 209, 182, 0.24), transparent 44%),
    color-mix(in srgb, var(--panel-bg) 72%, #244f44 28%);
  border-color: #9ff0d6;
  box-shadow:
    0 0 0 2px rgba(159, 240, 214, 0.42),
    0 22px 58px rgba(0, 0, 0, 0.36);
}

.bundle-card img {
  height: 72px;
  max-width: 120px;
  object-fit: contain;
}

.bundle-card strong {
  font-size: 18px;
  line-height: 1.1;
}

.bundle-card span {
  color: var(--teal);
  font-size: 12px;
}

.bundle-card em {
  color: #f01822;
  font-style: normal;
  font-size: 13px;
}

.bundle-card b {
  font-size: 20px;
}

.bundle-card del {
  color: var(--muted);
  font-size: 12px;
}

.bundle-save,
.bundle-ribbon {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 6px;
  border: 1px solid rgba(var(--teal-rgb), 0.25);
  background: color-mix(in srgb, var(--panel-bg-strong) 84%, #ecffe3);
  font-weight: 800;
}

.bundle-ribbon {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 28px;
  color: #fff;
  background: #285b16;
  border-color: #285b16;
  text-transform: uppercase;
}

.bundle-card .bundle-ribbon {
  color: #fff;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: clamp(18px, 5vw, 64px);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.product-lightbox[hidden] {
  display: none;
}

.product-lightbox img {
  max-width: min(920px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  background: var(--panel-bg-strong);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.product-lightbox-close {
  position: fixed;
  right: clamp(18px, 4vw, 44px);
  top: clamp(16px, 4vw, 38px);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.62);
  font-size: 24px;
  cursor: pointer;
}

.product-accordions {
  display: grid;
  gap: 2px;
  margin-top: 22px;
}

.product-accordions details {
  border-top: 1px solid rgba(var(--teal-rgb), 0.18);
  color: var(--muted);
}

.product-accordions summary {
  padding: 16px 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.purchase-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button.ghost {
  color: var(--ink);
  background: var(--panel-bg);
  border: 1px solid rgba(var(--teal-rgb), 0.18);
  box-shadow: none;
}

.integration-note {
  max-width: 560px;
  margin-top: 16px;
  font-size: 13px !important;
}

.product-support-section {
  width: min(1520px, calc(100vw - clamp(56px, 8vw, 144px)));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(440px, 0.96fr) minmax(460px, 1.04fr);
  align-items: center;
  gap: clamp(34px, 4.6vw, 78px);
  border-radius: 8px 64px 8px 64px;
  background:
    radial-gradient(circle at 18% 18%, rgba(var(--teal-rgb), 0.18), transparent 30%),
    linear-gradient(120deg, color-mix(in srgb, var(--panel-bg) 86%, transparent), color-mix(in srgb, var(--media-bg) 90%, transparent));
  box-shadow: var(--card-shadow);
}

.support-copy h2 {
  width: min(760px, 100%);
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(32px, 3.4vw, 58px);
  line-height: 0.98;
}

.support-copy ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.45;
}

.product-support-section img {
  width: 100%;
  max-height: 610px;
  object-fit: contain;
  border-radius: 8px 44px 8px 44px;
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.25));
}

.product-nature-panel {
  display: none;
}

.product-quote-band {
  padding: clamp(28px, 3vw, 46px) clamp(42px, 7vw, 120px);
  text-align: center;
  color: var(--ink);
  background: color-mix(in srgb, var(--cream) 76%, var(--panel-bg));
  border-block: 1px solid rgba(var(--teal-rgb), 0.12);
}

html[data-theme="dark"] .product-quote-band {
  background: color-mix(in srgb, var(--forest) 80%, #1a2a23);
}

.product-quote-band p {
  width: min(760px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-family: Lora, serif;
  font-size: clamp(18px, 1.5vw, 25px);
  line-height: 1.42;
}

.product-quote-band strong {
  color: var(--ink);
  font-weight: 600;
}

.product-benefit-marquee {
  display: none;
  overflow: hidden;
  color: #fff;
  background: var(--teal);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.product-benefit-marquee div {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(34px, 5vw, 88px);
  padding: 14px 0;
  animation: marqueeScroll 26s linear infinite;
}

.product-benefit-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 900;
}

.product-benefit-marquee img {
  width: 22px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.24));
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.split-feature {
  width: min(1380px, calc(100vw - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 5vw, 80px);
}

.split-feature img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 36px 34px rgba(0, 0, 0, 0.28));
}

.ingredient-panel {
  width: min(1180px, calc(100vw - 96px));
  margin: 0 auto;
  padding-top: 0;
}

.ingredient-panel img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

.catalog-grid {
  width: min(1520px, calc(100vw - clamp(56px, 8vw, 144px)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.catalog-section:not(.related-products-section) {
  width: min(1520px, calc(100vw - clamp(56px, 8vw, 144px)));
  margin: 0 auto;
  padding-inline: 0;
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
}

.catalog-section:not(.related-products-section) .section-heading {
  position: relative;
  grid-column: 1 / -1;
  width: 100%;
  justify-items: start;
  padding-right: 140px;
  text-align: left;
}

.catalog-section:not(.related-products-section) .catalog-toolbar {
  position: sticky;
  top: 122px;
  width: 100%;
  margin: 0;
  grid-column: 1;
}

.catalog-section:not(.related-products-section) .catalog-grid {
  width: 100%;
  grid-column: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-section:not(.related-products-section) .catalog-empty-message {
  grid-column: 2;
  width: 100%;
  margin-top: 0;
}

.catalog-toolbar {
  width: min(1520px, calc(100vw - clamp(56px, 8vw, 144px)));
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  align-items: end;
  padding: 20px;
  border: 1px solid rgba(var(--teal-rgb), 0.14);
  border-radius: 8px;
  background: var(--panel-bg);
  box-shadow: var(--card-shadow);
}

.catalog-toolbar::before {
  content: "Filters";
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.catalog-toolbar label {
  display: grid;
  gap: 7px;
}

.catalog-toolbar span,
.section-heading > span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-section:not(.related-products-section) .section-heading > span {
  position: absolute;
  right: 0;
  bottom: 8px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(var(--teal-rgb), 0.18);
  border-radius: 999px;
  color: var(--ink);
  background: var(--panel-bg);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.catalog-toolbar input,
.catalog-toolbar select {
  min-height: 46px;
  width: 100%;
  padding: 0 12px;
  border: 1px solid rgba(var(--teal-rgb), 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: var(--panel-bg-strong);
  font: inherit;
}

.catalog-toolbar button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(var(--teal-rgb), 0.18);
  border-radius: 8px;
  color: var(--teal);
  background: var(--media-bg);
  font-weight: 900;
  cursor: pointer;
}

.text-page .catalog-grid {
  width: 100%;
  margin-top: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-faq {
  width: min(1120px, calc(100vw - clamp(56px, 8vw, 144px)));
  margin: 0 auto;
}

.product-faq h2 {
  margin: 0 0 26px;
  text-align: center;
  color: var(--ink);
  font-family: Lora, serif;
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 500;
}

.product-reviews {
  width: min(1180px, calc(100vw - clamp(56px, 8vw, 144px)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(260px, 0.55fr);
  grid-template-areas:
    "summary toolbar"
    "list list";
  gap: clamp(28px, 3.4vw, 52px) clamp(24px, 3vw, 44px);
  align-items: start;
  padding-block: clamp(46px, 5vw, 82px);
  border-top: 1px solid rgba(var(--teal-rgb), 0.16);
  background: transparent;
}

.product-review-summary {
  grid-area: summary;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.product-review-summary .eyebrow {
  display: none;
}

.product-reviews:has(.review-empty) {
  grid-template-columns: 1fr;
  grid-template-areas:
    "summary"
    "list";
  justify-items: center;
}

.product-review-summary h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 2.1vw, 36px);
  font-weight: 700;
}

.review-score {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--muted);
}

.review-score strong {
  color: var(--ink);
  font-size: 28px;
}

.review-bars {
  width: min(320px, 100%);
  display: grid;
  grid-template-columns: auto auto minmax(140px, 1fr) auto;
  gap: 8px 10px;
  align-items: center;
  color: var(--muted);
}

.review-bars b {
  color: var(--teal);
}

.review-bars i {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(var(--teal-rgb), 0.16);
}

.review-bars em {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.review-toolbar {
  grid-area: toolbar;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  align-items: center;
  align-self: end;
  padding-bottom: 22px;
}

.review-toolbar button,
.review-toolbar select {
  min-height: 38px;
  border: 1px solid rgba(var(--teal-rgb), 0.2);
  border-radius: 8px;
  color: var(--ink);
  background: var(--panel-bg);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.review-toolbar button {
  padding: 0 16px;
}

.review-toolbar select {
  padding: 0 34px 0 12px;
}

.product-review-list {
  grid-area: list;
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 30px;
}

.product-review-card {
  display: grid;
  gap: 16px;
  padding: 0 0 30px;
  border: 0;
  border-bottom: 1px solid rgba(var(--teal-rgb), 0.16);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.product-review-card p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.68;
}

.product-review-card > img {
  width: 132px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

.review-author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.review-author span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(var(--teal-rgb), 0.12);
  font-weight: 900;
}

.review-author small {
  color: var(--muted);
}

.review-empty {
  grid-area: list;
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(var(--teal-rgb), 0.14);
  border-radius: 8px;
  color: var(--muted);
  background: color-mix(in srgb, var(--panel-bg) 70%, transparent);
  text-align: center;
}

.review-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(12px);
}

.review-preview-modal[hidden] {
  display: none;
}

.review-preview-dialog {
  position: relative;
  width: min(560px, 100%);
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(var(--teal-rgb), 0.24);
  border-radius: 8px;
  color: var(--ink);
  background: var(--panel-bg-strong);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

.review-preview-dialog h2,
.review-preview-dialog p {
  margin: 0;
}

.review-preview-dialog p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.review-preview-dialog form {
  display: grid;
  gap: 12px;
}

.review-preview-dialog label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-preview-dialog input,
.review-preview-dialog select,
.review-preview-dialog textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(var(--teal-rgb), 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: var(--panel-bg);
  font: inherit;
}

.review-preview-dialog textarea {
  min-height: 118px;
  padding-block: 12px;
  resize: vertical;
}

.review-preview-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(var(--teal-rgb), 0.12);
  cursor: pointer;
}

.related-products-section .section-heading {
  justify-items: center;
  text-align: center;
}

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

.catalog-card {
  position: relative;
  isolation: isolate;
  min-height: 450px;
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto auto auto;
  gap: 14px;
  padding: 18px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--formula-card-bg);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.catalog-card[hidden] {
  display: none;
}

.catalog-card .product-media img {
  height: min(96%, clamp(235px, 20vw, 330px));
  transform: translateY(-6px) scale(1.04);
}

.catalog-card:hover .product-media img {
  transform: translateY(-12px) scale(1.08);
}

.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.catalog-card h3 {
  margin: 0;
  color: var(--teal);
  font-size: 22px;
}

.catalog-card a {
  color: inherit;
  text-decoration: none;
}

.catalog-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.catalog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.catalog-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.catalog-meta strong {
  color: var(--ink);
  font-size: 18px;
}

.catalog-actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
}

.catalog-actions button,
.catalog-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-actions button {
  flex: 1;
  color: var(--button-ink);
  border: 0;
  background: var(--button-bg);
  box-shadow: var(--button-shadow, 0 14px 30px var(--button-glow));
  cursor: pointer;
}

.catalog-actions a {
  padding: 0 12px;
  color: var(--teal);
  border: 1px solid rgba(var(--teal-rgb), 0.18);
  background: var(--media-bg);
}

.catalog-card.has-card-tools .catalog-actions {
  display: none;
}

.product-card-tools {
  position: absolute;
  z-index: 6;
  top: clamp(18px, 1.6vw, 24px);
  right: clamp(18px, 1.6vw, 24px);
  display: grid;
  justify-items: end;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.catalog-card:hover .product-card-tools,
.catalog-card:focus-within .product-card-tools {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.card-icon-button,
.catalog-wishlist-button,
.product-wishlist-button,
.quick-view-wishlist {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--teal-rgb), 0.12);
  color: #10251f;
  background: rgba(255, 249, 239, 0.96);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.card-icon-button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
}

.card-icon-button svg,
.catalog-wishlist-button svg,
.product-wishlist-button svg,
.quick-view-wishlist svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-add-icon svg {
  width: 14.5px;
  height: 16.2px;
  fill: currentColor;
  stroke: none;
}

.card-add-icon {
  color: #fff4dc;
  background: rgba(8, 22, 18, 0.94);
  border-color: rgba(255, 244, 220, 0.14);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
}

html:not([data-theme="dark"]) .card-add-icon {
  color: #fff9ef;
  background: #111713;
}

.card-icon-button span,
.catalog-wishlist-button span {
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  width: max-content;
  max-width: 150px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 6px;
  color: #fff;
  background: rgba(12, 16, 14, 0.9);
  font-size: 11px;
  font-weight: 900;
  transform: translate(5px, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.card-icon-button:hover span,
.card-icon-button:focus-visible span,
.catalog-wishlist-button:hover span,
.catalog-wishlist-button:focus-visible span {
  opacity: 1;
  transform: translate(0, -50%);
}

.card-icon-button:hover,
.card-icon-button:focus-visible,
.catalog-wishlist-button:hover,
.catalog-wishlist-button:focus-visible {
  color: var(--button-ink);
  background: var(--button-bg);
  border-color: rgba(var(--teal-rgb), 0.2);
}

.card-icon-button.is-saved,
.catalog-wishlist-button.is-saved,
.product-wishlist-button.is-saved,
.quick-view-wishlist.is-saved {
  color: #fff4dc;
  background: color-mix(in srgb, var(--coral) 80%, var(--teal));
  border-color: transparent;
}

.card-icon-button.is-saved svg,
.catalog-wishlist-button.is-saved svg,
.product-wishlist-button.is-saved svg,
.quick-view-wishlist.is-saved svg {
  fill: currentColor;
}

.catalog-wishlist-button {
  position: absolute;
  z-index: 6;
  right: 18px;
  bottom: 92px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, color 180ms ease, background 180ms ease;
}

.catalog-card:hover .catalog-wishlist-button,
.catalog-card:focus-within .catalog-wishlist-button {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.product-wishlist-button {
  width: max-content;
  min-height: 34px;
  gap: 8px;
  margin: -4px 0 16px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-empty-message {
  display: none;
  width: min(1520px, calc(100vw - clamp(56px, 8vw, 144px)));
  margin: 28px auto 0;
  padding: 22px;
  border-radius: 8px;
  color: var(--muted);
  background: var(--panel-bg);
  text-align: center;
}

.catalog-grid.is-empty + .catalog-empty-message {
  display: block;
}

.quick-view-modal {
  position: fixed;
  inset: 0;
  z-index: 145;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
}

.quick-view-modal[hidden] {
  display: none;
}

.quick-view-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 8, 0.64);
  backdrop-filter: blur(10px);
}

.quick-view-dialog {
  position: relative;
  width: min(860px, calc(100vw - 44px));
  max-height: min(680px, calc(100vh - 44px));
  overflow: auto;
  border: 1px solid rgba(var(--teal-rgb), 0.2);
  border-radius: 8px;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 20%, rgba(var(--teal-rgb), 0.16), transparent 32%),
    var(--panel-bg-strong);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.38);
}

.quick-view-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: color-mix(in srgb, var(--panel-bg-strong) 80%, transparent);
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
}

.quick-view-dialog [data-quick-view-content] {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(26px, 4vw, 44px);
  align-items: center;
  padding: clamp(30px, 4vw, 48px);
}

.quick-view-media {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--media-bg);
  box-shadow: inset 0 0 0 1px rgba(var(--teal-rgb), 0.1);
}

.quick-view-media img {
  width: auto;
  height: min(390px, 62vh);
  max-width: 86%;
  object-fit: contain;
  filter: drop-shadow(0 28px 24px rgba(0, 0, 0, 0.24));
}

.quick-view-copy {
  display: grid;
  gap: 14px;
  align-content: center;
}

.quick-view-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
}

.quick-view-price {
  color: var(--teal);
  font-size: 24px;
  font-weight: 900;
}

html[data-theme="dark"] .quick-view-price {
  color: var(--butter);
}

.quick-view-rating {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.quick-view-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.quick-view-details {
  width: max-content;
  color: var(--teal);
  font-weight: 900;
}

.quick-view-stock {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-weight: 900;
}

.quick-view-stock span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(var(--teal-rgb), 0.13);
}

.quick-view-actions {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}

.quick-view-qty {
  min-height: 44px;
  display: inline-grid;
  grid-template-columns: 42px 40px 42px;
  align-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel-bg) 78%, var(--media-bg));
}

.quick-view-qty button {
  min-height: 44px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.quick-view-qty strong {
  text-align: center;
}

.quick-view-wishlist {
  width: max-content;
  min-height: 34px;
  gap: 8px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-list {
  width: min(1520px, calc(100vw - clamp(56px, 8vw, 144px)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.static-page .section-heading {
  max-width: min(1120px, 100%);
  margin: 0 auto clamp(24px, 3vw, 38px);
}

.static-page .section-heading h2 {
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.08;
}

.text-page {
  width: min(980px, calc(100vw - 96px));
  margin: 0 auto;
}

body.wishlist-page .text-page {
  width: min(1180px, calc(100vw - 64px));
  text-align: center;
}

body.wishlist-page .text-page > p {
  max-width: 720px;
  margin: 0 auto clamp(24px, 4vw, 48px);
  color: var(--muted);
}

body.wishlist-page .text-page .catalog-section {
  width: 100%;
  display: block;
  padding-inline: 0;
}

body.wishlist-page .catalog-toolbar {
  display: none;
}

body.wishlist-page .text-page .catalog-grid {
  width: 100%;
  margin-top: clamp(22px, 3vw, 34px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.wishlist-page .catalog-empty-message {
  width: 100%;
}

.preview-form {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.preview-form.compact {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.preview-form input,
.preview-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(var(--teal-rgb), 0.18);
  color: var(--ink);
  background: var(--panel-bg-strong);
  font: inherit;
}

.preview-form textarea {
  min-height: 160px;
  padding-top: 16px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.faq-list details {
  padding: 22px;
  border-radius: 8px;
  background: var(--panel-bg);
  box-shadow: var(--card-shadow);
}

.faq-list summary {
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.blog-index-hero,
.article-hero {
  width: min(1240px, calc(100vw - 96px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
}

.blog-index-copy,
.article-hero-copy {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.blog-index-copy h1,
.article-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(50px, 6vw, 96px);
  line-height: 0.94;
  letter-spacing: 0;
}

.article-hero-copy h1 {
  max-width: 620px;
  font-size: clamp(42px, 4.9vw, 72px);
  line-height: 0.98;
}

.blog-index-copy p,
.article-hero-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.article-hero-copy span {
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.blog-featured-card {
  min-height: 520px;
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  color: var(--ink);
  background: var(--panel-bg);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.blog-featured-card img,
.article-hero > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.article-hero > img {
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.blog-featured-card span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--page-bg) 78%, transparent);
  backdrop-filter: blur(14px);
}

.blog-featured-card small,
.article-card small {
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-featured-card strong {
  font-size: 22px;
  line-height: 1.16;
}

.blog-roll {
  display: grid;
  gap: 28px;
}

.article-grid {
  width: min(1240px, calc(100vw - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

.article-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 230px 1fr;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  color: var(--ink);
  background:
    radial-gradient(circle at 75% 12%, rgba(255, 174, 121, 0.13), transparent 32%),
    var(--panel-bg);
  box-shadow: var(--card-shadow);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--coral) 52%, var(--panel-border));
  box-shadow: var(--shadow-soft);
}

.article-card-media {
  display: block;
  overflow: hidden;
  background: color-mix(in srgb, var(--panel-bg) 82%, var(--sage));
}

.article-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms ease;
}

.article-card:hover .article-card-media img {
  transform: scale(1.045);
}

.article-card-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
}

.article-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.08;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.article-card b {
  color: var(--butter);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-body {
  width: min(920px, calc(100vw - 96px));
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.article-lede {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.18;
}

.article-copy-block {
  display: grid;
  gap: 10px;
}

.article-body h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.15;
}

.article-body p {
  margin: 0;
}

.article-rich-content {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.article-rich-content > * {
  margin: 0;
}

.article-rich-content h2,
.article-rich-content h3,
.article-rich-content h4,
.article-rich-content h5 {
  color: var(--ink);
  line-height: 1.14;
}

.article-rich-content h2,
.article-rich-content h3,
.article-rich-content h4 {
  margin-top: 14px;
  font-size: clamp(25px, 2.4vw, 36px);
}

.article-rich-content h5 {
  margin-top: 8px;
  color: var(--coral);
  font-size: 16px;
  text-transform: uppercase;
}

.article-rich-content a {
  color: var(--butter);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-rich-content ul,
.article-rich-content ol {
  display: grid;
  gap: 9px;
  padding-left: 24px;
}

.article-rich-content li::marker {
  color: var(--coral);
}

.article-rich-content figure {
  overflow: hidden;
  margin: 18px 0;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: var(--panel-bg);
  box-shadow: var(--shadow-soft);
}

.article-rich-content img {
  width: 100%;
  max-height: 560px;
  display: block;
  object-fit: cover;
}

.article-rich-content table {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: var(--panel-bg);
  box-shadow: var(--card-shadow);
}

.article-rich-content th,
.article-rich-content td {
  padding: 13px 14px;
  border: 1px solid var(--panel-border);
  vertical-align: top;
}

.article-rich-content thead td,
.article-rich-content th {
  color: var(--ink);
  background: color-mix(in srgb, var(--panel-bg) 72%, var(--coral));
  font-weight: 900;
}

.article-rich-content td p {
  margin: 0;
  font-size: 15px;
  line-height: 1.48;
}

.article-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 8px 0;
}

.article-image-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: var(--panel-bg);
  box-shadow: var(--card-shadow);
}

.article-image-grid img {
  width: 100%;
  height: 310px;
  display: block;
  object-fit: cover;
}

.article-callout {
  padding: 24px;
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  color: var(--ink);
  background: color-mix(in srgb, var(--panel-bg) 82%, var(--coral));
  box-shadow: var(--card-shadow);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.article-related {
  display: grid;
  gap: 28px;
}

.page-reviews {
  width: 100%;
  margin-top: 32px;
}

.static-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 8px;
  color: var(--button-ink);
  background: var(--button-bg);
  box-shadow: var(--shadow-strong);
  font-weight: 800;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.static-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cart-shell {
  position: relative;
  z-index: 100;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 14, 0.54);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.cart-drawer {
  position: fixed;
  top: 12px;
  right: 12px;
  bottom: 12px;
  width: min(560px, calc(100vw - 24px));
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 8px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(var(--teal-rgb), 0.12), transparent 34%),
    var(--panel-bg-strong);
  border: 1px solid rgba(var(--teal-rgb), 0.18);
  box-shadow: var(--shadow-strong);
  transform: translateX(calc(100% + 24px));
  transition: transform 240ms cubic-bezier(0.18, 0.82, 0.22, 1);
}

.cart-open .cart-backdrop {
  opacity: 1;
  visibility: visible;
}

.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
}

.cart-drawer h2,
.cart-empty h2 {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.cart-drawer header button {
  width: 42px;
  height: 42px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.cart-drawer-content {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: auto;
}

.cart-mini-summary,
.cart-page-layout {
  min-height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.cart-page-layout {
  width: min(1120px, calc(100vw - 96px));
  min-height: auto;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  grid-template-rows: auto;
  gap: 28px;
}

.cart-lines {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
}

.cart-page-layout .cart-lines,
.cart-page-layout .cart-total-card {
  border-radius: 8px;
  background: var(--panel-bg);
  box-shadow: var(--card-shadow);
}

.cart-line {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.cart-line-media {
  display: grid;
  place-items: center;
  min-height: 138px;
  border-radius: 2px;
  border: 1px solid rgba(var(--teal-rgb), 0.12);
  background: var(--media-bg);
}

.cart-line-media img {
  width: auto;
  height: 116px;
  object-fit: contain;
  filter: drop-shadow(0 16px 16px rgba(0, 0, 0, 0.2));
}

.cart-line-body {
  display: grid;
  gap: 8px;
}

.cart-line-title {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
  text-decoration: none;
}

.cart-bundle-note {
  width: max-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 6px;
  color: #b44335;
  background: #ffe8e2;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-line-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cart-line-controls button,
.coupon-pill {
  min-width: 38px;
  min-height: 38px;
  border: 1px solid rgba(var(--teal-rgb), 0.12);
  border-radius: 999px;
  background: var(--panel-bg-strong);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.cart-line-controls strong {
  min-width: 28px;
  text-align: center;
}

.cart-remove {
  margin-left: 4px;
  text-decoration: underline;
}

.cart-total-card {
  display: grid;
  gap: 18px;
  align-content: end;
  padding: 22px;
  color: var(--ink);
  background: color-mix(in srgb, var(--panel-bg) 88%, transparent);
  box-shadow: 0 -18px 38px rgba(0, 0, 0, 0.08);
}

.coupon-pill {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
}

.total-row,
.checkout-totals div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.total-row.total,
.checkout-grand {
  font-size: 22px;
}

.checkout-button {
  width: 100%;
  color: var(--button-ink);
  background: var(--button-bg);
  box-shadow: 0 16px 34px var(--button-glow);
}

.view-cart-link {
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.cart-page-layout .cart-line-title,
.cart-page-layout .cart-line-body > span,
.cart-page-layout .cart-line-controls strong,
.cart-page-layout .total-row,
.cart-page-layout .cart-total-card {
  color: var(--ink);
}

.cart-page-layout .cart-line-media {
  border: 1px solid rgba(var(--teal-rgb), 0.12);
  background: var(--media-bg);
}

.cart-page-layout .cart-line-controls button,
.cart-page-layout .coupon-pill {
  color: var(--ink);
  background: var(--panel-bg-strong);
  border: 1px solid rgba(var(--teal-rgb), 0.12);
}

.cart-page-layout .cart-remove {
  color: var(--teal);
  background: transparent;
}

.cart-page-layout .cart-total-card {
  background: var(--panel-bg);
  box-shadow: var(--card-shadow);
}

.cart-page-layout .checkout-button {
  color: var(--button-ink);
  background: var(--button-bg);
}

.cart-page-layout .view-cart-link {
  color: var(--muted);
}

.cart-empty {
  width: min(720px, calc(100vw - 96px));
  margin: 0 auto;
  padding: 48px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--panel-bg);
  box-shadow: var(--card-shadow);
  text-align: center;
}

.cart-page .cart-empty {
  width: min(760px, calc(100vw - 44px));
  min-height: clamp(320px, 42vh, 520px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  margin-bottom: clamp(28px, 4vw, 58px);
  padding: clamp(34px, 5vw, 60px);
}

.cart-page .cart-empty p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.cart-mini-summary .cart-empty {
  width: auto;
  min-height: calc(100% - 44px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  margin: 22px;
  padding: 32px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 20%, rgba(var(--teal-rgb), 0.14), transparent 36%),
    var(--panel-bg-strong);
  box-shadow: none;
}

.cart-mini-summary .cart-empty p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.cart-mini-summary .cart-empty .button {
  width: min(260px, 100%);
}

.checkout-layout {
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(420px, 0.85fr);
  color: #111;
  background: #fff;
}

.checkout-form-panel {
  padding: clamp(48px, 5vw, 82px) clamp(44px, 6vw, 92px);
}

.checkout-summary-panel {
  padding: clamp(48px, 5vw, 82px) clamp(36px, 5vw, 76px);
  background: #f3f3f3;
  border-left: 1px solid #ddd;
}

.checkout-form-panel form,
.checkout-success {
  width: min(560px, 100%);
  margin-left: auto;
}

.checkout-form-panel h2 {
  margin: 30px 0 12px;
  font-size: 22px;
}

.checkout-form-panel label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.checkout-form-panel label span {
  color: #555;
  font-size: 12px;
}

.checkout-form-panel input,
.checkout-form-panel select {
  min-height: 52px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  background: #fff;
  font: inherit;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.check-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
}

.check-row input {
  width: 18px;
  min-height: 18px;
}

.checkout-choice {
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 14px;
  border: 1px solid #cfd8ff;
  border-radius: 8px;
  background: #f4f6ff;
}

.checkout-line {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.checkout-line strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.checkout-line small {
  display: block;
  margin-top: 4px;
  color: #666;
}

.checkout-thumb {
  position: relative;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
}

.checkout-thumb img {
  height: 54px;
  object-fit: contain;
}

.checkout-thumb span {
  position: absolute;
  right: -8px;
  top: -8px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #111;
  font-size: 12px;
  font-weight: 900;
}

.discount-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin: 18px 0 34px;
}

.discount-row input {
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  color: #111;
  background: #fff;
  font: inherit;
}

.discount-row button {
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  color: #555;
  background: #e8e8e8;
  font-weight: 800;
}

.checkout-totals {
  display: grid;
  gap: 12px;
}

.checkout-grand {
  align-items: baseline;
  margin-top: 12px;
}

.checkout-grand small {
  color: #777;
  font-size: 12px;
}

.place-order-button {
  width: 100%;
  margin-top: 22px;
}

.place-order-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.checkout-success {
  margin-top: 32px;
  padding: 28px;
  border-radius: 8px;
  background: #f5fff8;
  border: 1px solid #b8e3c2;
}

@media (max-width: 980px) {
  .static-page main {
    padding-top: 74px;
  }

  .product-detail,
  .split-feature,
  .blog-index-hero,
  .article-hero,
  .catalog-grid,
  .collection-list,
  .text-page,
  .article-grid,
  .article-body {
    width: calc(100vw - 44px);
    grid-template-columns: 1fr;
  }

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

  .catalog-section:not(.related-products-section) {
    width: calc(100vw - 44px);
    display: block;
  }

  .catalog-section:not(.related-products-section) .catalog-toolbar {
    position: static;
    width: 100%;
    margin: 0 0 22px;
  }

  .catalog-section:not(.related-products-section) .catalog-grid,
  .catalog-section:not(.related-products-section) .catalog-empty-message {
    width: 100%;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .blog-featured-card,
  .blog-featured-card img,
  .article-hero > img {
    min-height: 360px;
  }

  .product-stage {
    min-height: 520px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "thumbs";
  }

  .product-hero-bottle {
    width: min(360px, 76%);
    max-height: 360px;
  }

  .product-thumbs {
    grid-auto-flow: column;
    grid-auto-columns: 72px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .product-thumb {
    height: 72px;
  }

  .product-support-section,
  .product-reviews {
    width: calc(100vw - 44px);
    grid-template-columns: 1fr;
    grid-template-areas:
      "summary"
      "toolbar"
      "list";
  }

  .product-review-summary,
  .product-review-list {
    grid-column: 1;
    grid-row: auto;
  }

  .product-review-summary {
    position: static;
  }

  .review-toolbar {
    grid-column: 1;
    justify-content: center;
  }

  .product-review-card {
    padding-inline: 0;
  }

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

  .product-card-tools {
    top: 18px;
    right: 18px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .catalog-wishlist-button {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .quick-view-dialog [data-quick-view-content] {
    grid-template-columns: 1fr;
  }

  .quick-view-media {
    min-height: 300px;
  }

  .quick-view-media img {
    height: min(300px, 45vh);
  }

  .quick-view-actions {
    grid-template-columns: 1fr;
  }

  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .bundle-card {
    min-height: 190px;
  }

  .article-rich-content {
    gap: 15px;
    font-size: 15.5px;
    line-height: 1.65;
  }

  .article-rich-content h2,
  .article-rich-content h3,
  .article-rich-content h4 {
    font-size: clamp(23px, 7vw, 30px);
  }

  .article-rich-content figure {
    margin: 10px 0;
  }

  .article-rich-content img {
    max-height: 420px;
  }

  .article-rich-content table {
    display: block;
    overflow-x: auto;
    border-collapse: separate;
    border-spacing: 0;
  }

  .article-rich-content th,
  .article-rich-content td {
    min-width: 190px;
  }
}

@media (max-width: 1180px) {
  body.static-page {
    min-width: 0;
  }

  body.static-page .site-header {
    box-sizing: border-box;
  }

  .static-page main {
    padding-top: 72px;
    overflow-x: clip;
  }

  .page-section {
    padding: clamp(30px, 5vw, 56px) clamp(24px, 4vw, 44px);
  }

  .page-breadcrumbs,
  .product-breadcrumbs {
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .page-breadcrumbs::-webkit-scrollbar,
  .product-breadcrumbs::-webkit-scrollbar {
    display: none;
  }

  .page-breadcrumbs {
    min-height: 48px;
    padding-inline: clamp(18px, 4vw, 36px);
    font-size: 12px;
  }

  .page-hero {
    min-height: 174px;
    padding: clamp(30px, 6vw, 52px) clamp(24px, 5vw, 46px);
  }

  .page-hero h1 {
    max-width: 13ch;
    font-size: clamp(36px, 7vw, 56px);
    line-height: 0.98;
    letter-spacing: 0;
  }

  .static-page .section-heading {
    width: min(100%, 760px);
    margin: 0 auto 24px;
    justify-items: center;
    text-align: center;
  }

  .static-page .section-heading h2 {
    font-size: clamp(30px, 6vw, 46px);
    line-height: 1.04;
  }

  .product-detail,
  .product-support-section,
  .product-faq,
  .product-reviews,
  .ingredient-panel,
  .split-feature,
  .blog-index-hero,
  .article-hero,
  .article-body,
  .text-page,
  .catalog-section:not(.related-products-section),
  .catalog-grid,
  .collection-list,
  .article-grid {
    width: min(calc(100% - clamp(32px, 5vw, 64px)), 940px);
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: clamp(26px, 4vw, 46px);
  }

  .product-stage {
    min-height: clamp(520px, 62vw, 640px);
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    grid-template-areas:
      "main"
      "thumbs";
    gap: 12px;
    border-radius: 8px 40px 8px 40px;
  }

  .product-thumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    overflow: visible;
    padding: 4px 0 0;
  }

  .product-thumb {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    border-color: rgba(var(--teal-rgb), 0.36);
    background: color-mix(in srgb, var(--muted) 58%, transparent);
    box-shadow: none;
  }

  .product-thumb.is-active {
    width: 12px;
    height: 12px;
    background: var(--teal);
    border-color: var(--teal);
    box-shadow: 0 0 0 5px rgba(var(--teal-rgb), 0.12);
  }

  .product-thumb img {
    display: none;
  }

  .product-gallery-main {
    min-height: 460px;
  }

  .product-zoom-trigger {
    border-radius: 8px 32px 8px 32px;
  }

  .product-hero-bottle {
    width: min(500px, 82%);
    max-height: min(560px, 88%);
  }

  .gallery-arrow {
    opacity: 1;
    transform: translateY(-50%) scale(0.96);
  }

  .product-summary {
    padding: clamp(18px, 4vw, 28px);
    border: 1px solid rgba(var(--teal-rgb), 0.16);
    border-radius: 8px;
    background:
      radial-gradient(circle at 15% 12%, rgba(var(--teal-rgb), 0.12), transparent 30%),
      var(--panel-bg);
    box-shadow: var(--card-shadow);
  }

  .product-summary h2,
  .split-feature h2 {
    font-size: clamp(32px, 6vw, 48px);
  }

  .price-row {
    flex-wrap: wrap;
  }

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

  .bundle-card {
    min-height: 210px;
  }

  .product-support-section {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }

  .product-support-section img,
  .ingredient-panel img,
  .split-feature img,
  .article-rich-content img {
    max-height: 520px;
    object-fit: contain;
  }

  .product-nature-panel {
    overflow: hidden;
  }

  .product-benefit-marquee {
    font-size: 12px;
  }

  .product-faq h2 {
    font-size: clamp(28px, 5.4vw, 38px);
    line-height: 1.12;
  }

  .product-reviews {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "summary"
      "toolbar"
      "list";
    gap: 20px;
  }

  .product-review-summary {
    justify-items: start;
    padding: 22px;
    border: 1px solid rgba(var(--teal-rgb), 0.16);
    border-radius: 8px;
    background: var(--panel-bg);
    text-align: left;
  }

  .product-review-summary h2 {
    font-size: clamp(28px, 5vw, 36px);
  }

  .review-bars {
    width: min(420px, 100%);
  }

  .review-toolbar {
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .product-review-list {
    gap: 0;
  }

  .product-review-card {
    padding: 22px 0;
  }

  .related-grid,
  .catalog-section:not(.related-products-section) .catalog-grid,
  .text-page .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-section:not(.related-products-section) {
    display: grid;
    grid-template-columns: minmax(190px, 238px) minmax(0, 1fr);
    gap: 22px;
  }

  .catalog-section:not(.related-products-section) .section-heading {
    padding-right: 0;
    justify-items: center;
    text-align: center;
  }

  .catalog-section:not(.related-products-section) .section-heading > span {
    position: static;
    margin-top: 8px;
  }

  .catalog-section:not(.related-products-section) .catalog-toolbar {
    top: 92px;
  }

  .catalog-card {
    min-height: clamp(360px, 42vw, 430px);
    grid-template-rows: minmax(230px, 1fr) auto auto auto;
  }

  .catalog-card .product-media img {
    height: min(94%, clamp(190px, 30vw, 275px));
  }

  .product-card-tools,
  .catalog-wishlist-button {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .blog-index-hero,
  .article-hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .blog-index-copy,
  .article-hero-copy {
    padding: clamp(22px, 5vw, 34px);
  }

  .blog-index-copy h1,
  .article-hero-copy h1 {
    font-size: clamp(34px, 7vw, 54px);
  }

  .blog-featured-card,
  .blog-featured-card img,
  .article-hero > img {
    min-height: 320px;
  }

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

  .article-body {
    padding-inline: clamp(24px, 5vw, 44px);
  }

  .article-rich-content {
    font-size: 16px;
  }

  .cart-page-layout,
  .checkout-layout {
    width: min(calc(100% - clamp(32px, 5vw, 64px)), 860px);
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cart-page-layout .cart-total-card,
  .checkout-summary-panel {
    position: static;
  }

  .checkout-form-panel,
  .checkout-summary-panel,
  .cart-page-layout .cart-lines,
  .cart-page-layout .cart-total-card {
    border-radius: 8px;
  }

  .checkout-form-panel,
  .checkout-summary-panel {
    color: var(--ink);
    background:
      radial-gradient(circle at 12% 10%, rgba(var(--teal-rgb), 0.12), transparent 28%),
      var(--panel-bg);
    border: 1px solid rgba(var(--teal-rgb), 0.16);
    box-shadow: var(--card-shadow);
  }

  .checkout-layout {
    min-height: auto;
    background: transparent;
  }

  .checkout-form-panel form,
  .checkout-success {
    margin-inline: auto;
  }

  .checkout-form-panel label span {
    color: var(--muted);
  }

  .checkout-form-panel input,
  .checkout-form-panel select,
  .discount-row input {
    color: var(--ink);
    background: var(--panel-bg-strong);
    border-color: rgba(var(--teal-rgb), 0.22);
  }

  .checkout-choice {
    color: var(--ink);
    background: color-mix(in srgb, var(--media-bg) 84%, transparent);
    border-color: rgba(var(--teal-rgb), 0.24);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  body.wishlist-page .catalog-toolbar {
    display: none;
  }

  body.wishlist-page .text-page .catalog-section {
    padding-top: 0;
  }

  body.wishlist-page .text-page .catalog-grid {
    margin-top: 24px;
  }

  body.product-detail-page {
    padding-bottom: 86px;
  }

  body.product-detail-page .mobile-bottom-nav {
    display: none;
  }

  .product-sticky-cta {
    position: fixed;
    left: clamp(14px, 3vw, 28px);
    right: clamp(14px, 3vw, 28px);
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 82;
    display: flex;
    justify-content: center;
    pointer-events: none;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .cart-open .product-sticky-cta,
  .product-sticky-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 18px));
  }

  .product-sticky-button {
    width: min(560px, 100%);
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    color: #fff9ef;
    background: #050706;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
    pointer-events: auto;
  }
}

@media (max-width: 820px) {
  body.static-page {
    padding-bottom: 58px;
  }

  body.static-page .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    height: 52px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: color-mix(in srgb, var(--page-bg) 88%, var(--panel-bg));
    border-top: 1px solid var(--panel-border);
    box-shadow: 0 -18px 34px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(16px);
  }

  body.static-page .mobile-bottom-nav a {
    position: relative;
    display: grid;
    place-items: center;
    color: var(--ink);
    text-decoration: none;
  }

  body.static-page .mobile-bottom-nav a + a {
    border-left: 1px solid var(--panel-border);
  }

  body.static-page .mobile-bottom-nav svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.95;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  body.static-page .mobile-bottom-nav .cart-icon svg {
    width: 15px;
    height: 18px;
    fill: currentColor;
    stroke: none;
  }

  body.static-page .mobile-bottom-nav .cart-count {
    right: calc(50% - 20px);
    top: 6px;
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--page-bg) 88%, var(--panel-bg));
  }

  html[data-theme="dark"] body.static-page .mobile-bottom-nav {
    background: rgba(9, 27, 22, 0.94);
    border-top-color: rgba(var(--teal-rgb), 0.18);
  }

  body.static-page.product-detail-page {
    padding-bottom: 86px;
  }

  body.static-page.product-detail-page .mobile-bottom-nav {
    display: none;
  }
}

@media (max-width: 700px) {
  .static-page main {
    padding-top: 64px;
  }

  .page-section {
    padding: 30px 18px;
  }

  .page-breadcrumbs {
    min-height: 42px;
    padding-inline: 18px;
    gap: 9px;
    font-size: 11px;
  }

  .page-hero {
    min-height: 142px;
    padding: 28px 18px 24px;
  }

  .page-hero h1 {
    max-width: 12ch;
    font-size: clamp(31px, 10vw, 42px);
  }

  .product-detail,
  .product-support-section,
  .product-faq,
  .product-reviews,
  .ingredient-panel,
  .split-feature,
  .blog-index-hero,
  .article-hero,
  .article-body,
  .text-page,
  .catalog-section:not(.related-products-section),
  .catalog-grid,
  .collection-list,
  .article-grid {
    width: calc(100vw - 32px);
  }

  .product-detail {
    gap: 18px;
    padding-top: 22px;
  }

  .product-breadcrumbs {
    margin: 0;
    gap: 9px;
    font-size: 11px;
  }

  .product-stage {
    min-height: clamp(420px, 116vw, 540px);
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px 8px 12px;
    border-radius: 8px 28px 8px 28px;
  }

  .product-thumbs {
    gap: 12px;
    padding: 2px 0 0;
  }

  .product-thumb {
    width: 9px;
    height: 9px;
  }

  .product-thumb.is-active {
    width: 11px;
    height: 11px;
  }

  .product-gallery-main {
    min-height: clamp(380px, 104vw, 498px);
  }

  .product-zoom-trigger {
    border-radius: 8px 24px 8px 24px;
  }

  .product-orbit {
    width: 76%;
  }

  .product-hero-bottle {
    width: min(360px, 88%);
    max-height: 88%;
    filter:
      drop-shadow(18px 30px 24px rgba(0, 0, 0, 0.34))
      drop-shadow(0 20px 18px rgba(var(--teal-rgb), 0.24));
  }

  .gallery-arrow {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .gallery-arrow-prev {
    left: 8px;
  }

  .gallery-arrow-next {
    right: 8px;
  }

  .product-summary {
    padding: 17px;
  }

  .product-badges {
    gap: 7px;
  }

  .product-badges span {
    min-height: 28px;
    padding-inline: 9px;
    font-size: 10px;
  }

  .product-wishlist-button {
    width: 100%;
    justify-content: center;
    margin: 0 0 14px;
  }

  .product-summary h2,
  .split-feature h2 {
    margin-bottom: 14px;
    font-size: clamp(29px, 9.4vw, 38px);
  }

  .product-summary p,
  .split-feature p,
  .text-page p,
  .article-body p {
    font-size: 14.5px;
    line-height: 1.62;
  }

  .price-row {
    gap: 9px;
    margin: 18px 0;
  }

  .price-row > span {
    gap: 8px;
  }

  .price-row strong {
    font-size: 22px;
  }

  .benefit-pills {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .benefit-pills span {
    min-height: 34px;
    font-size: 10px;
  }

  .bundle-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .bundle-card {
    min-height: 174px;
    padding: 14px 8px 12px;
  }

  .bundle-card img {
    height: 42px;
  }

  .bundle-card strong {
    font-size: 15px;
  }

  .bundle-card b {
    font-size: 16px;
  }

  .bundle-card span,
  .bundle-card em,
  .bundle-card del {
    font-size: 10px;
  }

  .purchase-panel {
    gap: 9px;
  }

  .purchase-panel .button {
    width: 100%;
    min-height: 42px;
    font-size: 11px;
  }

  .product-support-section,
  .split-feature {
    padding: 18px;
  }

  .support-copy h2 {
    font-size: clamp(27px, 8vw, 34px);
  }

  .support-copy ul {
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.55;
  }

  .product-support-section img,
  .ingredient-panel img,
  .split-feature img {
    max-height: 360px;
    border-radius: 8px;
  }

  .product-quote-band {
    padding: 24px 18px;
  }

  .product-quote-band p {
    font-size: 16px;
  }

  .product-benefit-marquee span {
    min-width: 210px;
  }

  .product-faq h2 {
    font-size: 24px;
  }

  .faq-list summary,
  .product-accordions summary {
    min-height: 46px;
    font-size: 13px;
  }

  .product-reviews {
    padding-block: 30px;
  }

  .product-review-summary {
    padding: 18px;
  }

  .review-score strong {
    font-size: 25px;
  }

  .review-bars {
    grid-template-columns: auto auto minmax(90px, 1fr) auto;
    gap: 7px;
    font-size: 12px;
  }

  .review-toolbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .review-toolbar button,
  .review-toolbar select {
    width: 100%;
    min-height: 40px;
  }

  .product-review-card {
    padding: 18px 0;
  }

  .product-review-card p {
    font-size: 14px;
  }

  .product-review-card > img {
    width: min(150px, 52vw);
    height: auto;
    max-height: 190px;
  }

  .related-products-section .section-heading,
  .catalog-section:not(.related-products-section) .section-heading {
    margin-bottom: 18px;
  }

  .related-grid,
  .catalog-section:not(.related-products-section),
  .catalog-section:not(.related-products-section) .catalog-grid,
  .text-page .catalog-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-section:not(.related-products-section) {
    display: grid;
    gap: 16px;
  }

  .catalog-section:not(.related-products-section) .section-heading,
  .catalog-section:not(.related-products-section) .catalog-toolbar,
  .catalog-section:not(.related-products-section) .catalog-grid,
  .catalog-section:not(.related-products-section) .catalog-empty-message {
    grid-column: 1 / -1;
  }

  .catalog-section:not(.related-products-section) .catalog-toolbar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
  }

  .catalog-toolbar::before {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 20px;
  }

  .catalog-toolbar label {
    gap: 5px;
  }

  .catalog-toolbar input,
  .catalog-toolbar select,
  .catalog-toolbar button {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .catalog-toolbar label:first-of-type {
    grid-column: 1 / -1;
  }

  .catalog-card {
    min-height: 292px;
    grid-template-rows: 174px auto auto;
    gap: 8px;
    padding: 10px;
  }

  .catalog-card .product-media {
    min-height: 0;
    height: 174px;
    border-radius: 8px;
  }

  .catalog-card .product-media img {
    height: min(94%, 166px);
    transform: translateY(-3px) scale(1.03);
  }

  .catalog-card:hover .product-media img {
    transform: translateY(-5px) scale(1.05);
  }

  .catalog-card h3 {
    font-size: 17px;
    line-height: 1.08;
  }

  .catalog-card p {
    min-height: 34px;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.35;
  }

  .catalog-meta {
    display: grid;
    gap: 4px;
    justify-items: start;
    font-size: 11px;
  }

  .catalog-meta > span {
    gap: 6px;
  }

  .catalog-meta strong {
    font-size: 15px;
  }

  .product-card-tools {
    top: 14px;
    right: 14px;
    gap: 7px;
  }

  .card-icon-button {
    width: 32px;
    height: 32px;
  }

  .card-icon-button svg,
  .catalog-wishlist-button svg,
  .product-wishlist-button svg,
  .quick-view-wishlist svg {
    width: 16px;
    height: 16px;
  }

  .card-add-icon svg {
    width: 12.8px;
    height: 14.4px;
  }

  .catalog-wishlist-button {
    right: 14px;
    bottom: 86px;
    width: 34px;
    height: 34px;
  }

  .card-icon-button span,
  .catalog-wishlist-button span {
    display: none;
  }

  .quick-view-dialog {
    width: calc(100vw - 28px);
    max-height: calc(100dvh - 92px);
  }

  .quick-view-dialog [data-quick-view-content] {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .quick-view-media {
    min-height: 260px;
  }

  .quick-view-copy h2 {
    font-size: 25px;
  }

  .quick-view-actions {
    grid-template-columns: 1fr;
  }

  .collection-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .blog-index-hero,
  .article-hero {
    gap: 16px;
  }

  .blog-index-copy,
  .article-hero-copy {
    padding: 20px;
  }

  .blog-index-copy h1,
  .article-hero-copy h1 {
    font-size: clamp(30px, 9.5vw, 40px);
  }

  .blog-index-copy p,
  .article-hero-copy p {
    font-size: 14px;
  }

  .blog-featured-card,
  .blog-featured-card img,
  .article-hero > img {
    min-height: 250px;
  }

  .article-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .article-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    min-height: 134px;
    padding: 10px;
  }

  .article-card-media {
    min-height: 100%;
  }

  .article-card h3 {
    font-size: 18px;
  }

  .article-card p {
    display: none;
  }

  .article-body {
    padding: 30px 18px;
  }

  .article-lede {
    padding: 18px;
    font-size: 17px;
  }

  .article-rich-content {
    gap: 13px;
    font-size: 15px;
    line-height: 1.64;
  }

  .article-rich-content h2,
  .article-rich-content h3,
  .article-rich-content h4 {
    font-size: clamp(22px, 7vw, 28px);
  }

  .article-rich-content figure {
    margin: 8px 0;
  }

  .article-rich-content img {
    max-height: 320px;
    border-radius: 8px;
  }

  .article-image-grid {
    grid-template-columns: 1fr;
  }

  .text-page {
    padding: 26px 18px 36px;
  }

  .preview-form,
  .preview-form.compact {
    grid-template-columns: 1fr;
  }

  .cart-page-layout,
  .checkout-layout {
    width: calc(100vw - 32px);
    gap: 16px;
  }

  .cart-page-layout .cart-line,
  .cart-drawer .cart-line {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
  }

  .cart-page-layout .cart-line-media,
  .cart-drawer .cart-line-media {
    width: 82px;
    height: 100px;
  }

  .cart-line-title {
    font-size: 14px;
    line-height: 1.3;
  }

  .cart-line-controls {
    flex-wrap: wrap;
    gap: 8px;
  }

  .cart-total-card {
    padding: 18px;
  }

  .cart-drawer {
    inset: 8px 8px 8px auto;
    width: min(390px, calc(100vw - 16px));
  }

  .checkout-form-panel,
  .checkout-summary-panel {
    padding: 18px;
  }

  .discount-row {
    grid-template-columns: 1fr;
  }

  .checkout-line {
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .checkout-thumb {
    width: 54px;
    height: 64px;
  }

  body.wishlist-page .text-page > p {
    width: 100%;
    margin-inline: 0;
    text-align: center;
  }

  body.wishlist-page .text-page .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.wishlist-page .text-page .catalog-section .catalog-toolbar {
    display: none;
  }
}

@media (max-width: 390px) {
  .catalog-card {
    min-height: 274px;
    grid-template-rows: 158px auto auto;
    padding: 9px;
  }

  .catalog-card .product-media {
    height: 158px;
  }

  .catalog-card .product-media img {
    height: min(94%, 150px);
  }

  .catalog-card h3 {
    font-size: 15px;
  }

  .catalog-card p {
    font-size: 11px;
  }

  .catalog-wishlist-button {
    bottom: 80px;
  }

  .product-stage {
    grid-template-columns: 1fr;
    min-height: 398px;
  }

  .product-thumbs {
    gap: 10px;
  }

  .product-thumb {
    width: 8px;
    height: 8px;
  }

  .product-thumb.is-active {
    width: 10px;
    height: 10px;
  }

  .product-gallery-main {
    min-height: 354px;
  }

  .bundle-grid,
  .benefit-pills,
  .review-toolbar {
    grid-template-columns: 1fr;
  }
}
