:root {
  --ink: #171717;
  --muted: #686c73;
  --line: #e6e9ed;
  --soft: #f4f7f8;
  --blue: #4ba3e2;
  --blue-dark: #1c6fa9;
  --green: #27a36a;
  --yellow: #f2c94c;
  --white: #fff;
  --shadow: 0 18px 48px rgb(24 35 46 / 12%);
  --navy: #102942;
  --gold: #caa14a;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.store-topbar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 8px 14px;
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 25;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(12px);
}

.store-nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.store-logo img {
  width: 112px;
}

.store-nav nav,
.store-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.store-nav nav a,
.store-actions a {
  color: #29313a;
  font-size: 14px;
  font-weight: 800;
}

.store-actions {
  justify-content: flex-end;
}

.pdp {
  padding: 34px 0 54px;
  background: linear-gradient(180deg, #f7fbfd 0%, #ffffff 74%);
}

.pdp-grid {
  display: grid;
  grid-template-columns: minmax(420px, .94fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.pdp-gallery,
.pdp-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pdp-gallery {
  padding: 14px;
}

.pdp-main-button {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #eef6fb;
  cursor: zoom-in;
}

.pdp-main-image {
  width: 100%;
  aspect-ratio: 1086 / 1448;
  border-radius: 8px;
  object-fit: contain;
  background: #eef6fb;
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.pdp-thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--soft);
  cursor: pointer;
}

.pdp-thumbs button:hover,
.pdp-thumbs button.active {
  border-color: var(--blue-dark);
}

.pdp-thumbs img {
  width: 100%;
  aspect-ratio: 1086 / 1448;
  border-radius: 6px;
  object-fit: contain;
  background: var(--soft);
}

.pdp-panel {
  padding: 30px;
  box-shadow: 0 22px 60px rgb(16 41 66 / 10%);
}

.rating-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 14px;
}

.rating-line strong {
  color: var(--navy);
}

.pdp-panel h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(34px, 4.4vw, 56px);
}

.pdp-subtitle {
  margin: 18px 0 0;
  color: #3f4750;
  font-size: 18px;
  line-height: 1.55;
}

.quick-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.quick-benefits div {
  padding: 14px;
  border: 1px solid #d8e8f1;
  border-radius: 8px;
  background: #f6fbfe;
}

.quick-benefits strong,
.quick-benefits span {
  display: block;
}

.quick-benefits strong {
  color: var(--navy);
  font-size: 17px;
}

.quick-benefits span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.volume-picker {
  display: grid;
  gap: 12px;
}

.volume-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.volume-card.primary {
  border-color: #7fbbe3;
  background: #f1f9fe;
}

.volume-card span,
.volume-card strong,
.volume-card small {
  display: block;
}

.volume-card span {
  color: var(--muted);
  font-weight: 800;
}

.volume-card strong {
  margin-top: 3px;
  font-size: 30px;
}

.volume-card small {
  margin-top: 2px;
  color: var(--muted);
}

.stock-alert {
  display: block;
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid #f1d79b;
  border-radius: 8px;
  color: #5c420c;
  background: #fff7df;
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.volume-badge {
  position: absolute;
  top: -11px;
  left: 16px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
}

.pdp-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 8px;
  color: #32404d;
  background: #fff8e3;
  line-height: 1.45;
}

.pdp-note strong,
.pdp-note span {
  display: block;
}

.pdp-note span {
  margin-top: 5px;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-section h2,
.compare-section h2,
.sku-section h2,
.usage-section h2,
.faq-section h2 {
  max-width: 760px;
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.proof-cards article,
.faq-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.proof-cards img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--soft);
}

.proof-cards h3,
.proof-cards p {
  margin-left: 20px;
  margin-right: 20px;
}

.proof-cards h3 {
  margin-top: 18px;
  font-size: 22px;
}

.proof-cards p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.6;
}

.compare-section {
  background: #f5f7f8;
}

.mission-section {
  background: #102942;
  color: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 32px;
  align-items: center;
}

.mission-section .section-kicker,
.mission-section h2 {
  color: var(--white);
}

.mission-section .section-copy {
  color: #dce8f0;
}

.mission-card {
  padding: 28px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 8px;
  background: rgb(255 255 255 / 8%);
}

.mission-card strong,
.mission-card span {
  display: block;
}

.mission-card strong {
  font-size: 26px;
  line-height: 1.18;
}

.mission-card span {
  margin-top: 14px;
  color: #dce8f0;
  line-height: 1.6;
}

.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  align-items: center;
  gap: 36px;
}

.compare-grid img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.compare-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.compare-list span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.sku-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.sku-card {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.sku-card.preferred {
  border-color: #8ec7ea;
  box-shadow: 0 18px 46px rgb(75 163 226 / 14%);
}

.sku-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
  padding: 28px;
  background: #f7fafc;
}

.sku-card > div {
  padding: 28px;
}

.sku-card h3 {
  font-size: 28px;
}

.sku-card p {
  color: var(--muted);
  line-height: 1.58;
}

.sku-card dl {
  margin: 20px 0;
}

.sku-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.sku-card dt {
  color: var(--muted);
}

.sku-card dd {
  margin: 0;
  font-weight: 900;
}

.usage-section {
  background: var(--navy);
  color: var(--white);
}

.usage-section .section-kicker,
.usage-section h2 {
  color: var(--white);
}

.usage-grid {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 32px;
  align-items: start;
}

.usage-steps {
  display: grid;
  gap: 12px;
}

.usage-steps div {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 8px;
  background: rgb(255 255 255 / 8%);
}

.usage-steps strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
}

.usage-steps span {
  font-size: 18px;
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.faq-grid article {
  padding: 22px;
}

.faq-grid h3 {
  font-size: 21px;
}

.faq-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.reviews-section {
  background: #f7fafc;
}

.reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.rating-summary {
  min-width: 230px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.rating-summary strong {
  display: block;
  color: var(--gold);
  font-size: 20px;
}

.rating-summary span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.reviews-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.reviews-grid strong {
  color: var(--gold);
  letter-spacing: 1px;
}

.reviews-grid p {
  min-height: 116px;
  margin: 12px 0 16px;
  color: #2f3842;
  line-height: 1.58;
}

.reviews-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgb(8 18 28 / 86%);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(1120px, 100%);
  max-height: calc(100vh - 72px);
  border-radius: 8px;
  object-fit: contain;
  background: var(--white);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: rgb(255 255 255 / 18%);
  font-size: 30px;
  cursor: pointer;
}

/* Premium rebuild */
.luxe-page {
  background: #f3f5f7;
  color: #111827;
}

.luxe-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  color: #f7f2df;
  background: #0f263d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.luxe-top span {
  padding: 10px 14px;
  text-align: center;
  background: #102942;
}

.luxe-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgb(17 24 39 / 8%);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(16px);
}

.luxe-logo img {
  width: 118px;
}

.luxe-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.luxe-nav a {
  color: #17212b;
  font-size: 14px;
  font-weight: 900;
}

.luxe-cart {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #d8e0e6;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.luxe-cart span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 8px;
  border-radius: 999px;
  color: #102942;
  background: #e8c35c;
  font-size: 12px;
}

.luxe-shell {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.luxe-hero {
  padding: 28px 0 22px;
  background:
    radial-gradient(circle at 18% 8%, rgb(89 168 219 / 18%), transparent 34%),
    linear-gradient(180deg, #f7fbfd 0%, #eef3f6 100%);
}

.luxe-product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .88fr);
  gap: 18px;
  align-items: start;
}

.luxe-gallery {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-self: start;
  height: max-content;
  gap: 12px;
  padding: 12px;
  border: 1px solid #dfe7ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgb(16 41 66 / 12%);
}

.luxe-gallery-rail {
  display: grid;
  align-content: start;
  gap: 10px;
}

.luxe-gallery-rail button {
  width: 66px;
  height: 66px;
  padding: 3px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.luxe-gallery-rail button.active,
.luxe-gallery-rail button:hover {
  border-color: #1c6fa9;
}

.luxe-gallery-rail img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: contain;
}

.luxe-main-shot {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1086 / 1448;
  height: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #fff;
  cursor: zoom-in;
  overflow: hidden;
}

.luxe-main-shot img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.luxe-buybox {
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: 13px;
  padding: 24px;
  border: 1px solid #dfe7ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 64px rgb(16 41 66 / 10%);
}

.luxe-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #caa14a;
  font-size: 14px;
}

.luxe-rating b {
  color: #102942;
}

.luxe-buybox h1 {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.02;
}

.luxe-buybox p {
  margin: 0;
  color: #45515d;
  font-size: 16px;
  line-height: 1.44;
}

.luxe-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.luxe-values span {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid #dfe7ec;
  border-radius: 8px;
  background: #f7fafc;
  color: #102942;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.luxe-offers {
  display: grid;
  gap: 10px;
}

.luxe-offers article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid #dfe7ec;
  border-radius: 8px;
  background: #fff;
}

.luxe-offers article.featured {
  border-color: #8dc9ef;
  background: #f2f9fd;
}

.luxe-offers mark {
  position: absolute;
  top: -11px;
  left: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: #1c6fa9;
  font-size: 12px;
  font-weight: 900;
}

.luxe-offers small,
.luxe-offers strong,
.luxe-offers em {
  display: block;
}

.luxe-offers small {
  color: #6b7280;
  font-size: 14px;
  font-weight: 900;
}

.luxe-offers strong {
  margin-top: 3px;
  font-size: 28px;
}

.luxe-offers em {
  margin-top: 2px;
  color: #6b7280;
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.luxe-urgency {
  margin-top: auto;
  padding: 14px 15px;
  border: 1px solid #ecd58f;
  border-radius: 8px;
  color: #5a410d;
  background: #fff7db;
}

.luxe-urgency b,
.luxe-urgency span {
  display: block;
}

.luxe-urgency span {
  margin-top: 4px;
  line-height: 1.45;
}

.luxe-proofline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 14px;
  border-radius: 8px;
  background: #dfe7ec;
  border: 1px solid #dfe7ec;
}

.luxe-proofline div {
  padding: 18px;
  background: #fff;
}

.luxe-proofline b,
.luxe-proofline span {
  display: block;
}

.luxe-proofline b {
  color: #102942;
  font-size: 14px;
}

.luxe-proofline span {
  margin-top: 6px;
  color: #596675;
  line-height: 1.42;
}

.luxe-section {
  padding: 54px 0;
  background: #fff;
}

.luxe-kicker {
  display: block;
  margin-bottom: 10px;
  color: #1c6fa9;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.luxe-section h2 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.04;
}

.luxe-section p {
  color: #4b5563;
  line-height: 1.68;
}

.luxe-split,
.luxe-compare-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .8fr);
  gap: 28px;
  align-items: stretch;
}

.luxe-care {
  color: #fff;
  background: #102942;
}

.luxe-care h2,
.luxe-care p,
.luxe-care .luxe-kicker {
  color: #fff;
}

.luxe-care-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 8px;
  background: rgb(255 255 255 / 8%);
}

.luxe-care-card b {
  font-size: 28px;
  line-height: 1.16;
}

.luxe-care-card span {
  margin-top: 14px;
  color: #dce8f0;
  line-height: 1.6;
}

.luxe-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.luxe-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.luxe-benefits article {
  overflow: hidden;
  border: 1px solid #dfe7ec;
  border-radius: 8px;
  background: #fff;
}

.luxe-benefits img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.luxe-benefits div {
  padding: 20px;
}

.luxe-benefits h3 {
  font-size: 24px;
}

.luxe-compare {
  background: #f4f7f9;
}

.luxe-compare-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.luxe-compare-table div {
  min-height: 144px;
  padding: 18px;
  border: 1px solid #dfe7ec;
  border-radius: 8px;
  background: #fff;
}

.luxe-compare-table b,
.luxe-compare-table span {
  display: block;
}

.luxe-compare-table b {
  color: #102942;
  font-size: 18px;
}

.luxe-compare-table span {
  margin-top: 8px;
  color: #596675;
  line-height: 1.5;
}

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

.luxe-audience article,
.luxe-official-card,
.luxe-wholesale-form {
  border: 1px solid #dfe7ec;
  border-radius: 8px;
  background: #fff;
}

.luxe-audience article {
  padding: 24px;
}

.luxe-audience b,
.luxe-official-card b,
.luxe-official-card span {
  display: block;
}

.luxe-audience b {
  color: #102942;
  font-size: 24px;
  line-height: 1.16;
}

.luxe-official {
  background: #f4f7f9;
}

.luxe-official-grid,
.luxe-wholesale-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: 28px;
  align-items: stretch;
}

.luxe-official-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 28px;
  box-shadow: 0 18px 54px rgb(16 41 66 / 9%);
}

.luxe-official-card b {
  color: #102942;
  font-size: 26px;
  line-height: 1.12;
}

.luxe-official-card span {
  color: #596675;
  line-height: 1.55;
}

.luxe-official-card .button {
  width: fit-content;
}

.luxe-articles-preview {
  background: #fff;
}

.luxe-text-link {
  color: #1c6fa9;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}

.luxe-article-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid #dfe7ec;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(16 41 66 / 5%), transparent 42%),
    #f8fbfd;
}

.luxe-article-card span,
.luxe-article-card h3,
.luxe-article-card p {
  display: block;
}

.luxe-article-card span {
  color: #1c6fa9;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.luxe-article-card h3 {
  max-width: 820px;
  margin: 10px 0 0;
  color: #102942;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.luxe-article-card p {
  max-width: 850px;
  margin: 14px 0 0;
}

.luxe-wholesale {
  color: #fff;
  background: #102942;
}

.luxe-wholesale h2,
.luxe-wholesale p,
.luxe-wholesale .luxe-kicker {
  color: #fff;
}

.luxe-wholesale-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  color: #102942;
}

.luxe-wholesale-form label {
  display: grid;
  gap: 7px;
  color: #102942;
  font-size: 13px;
  font-weight: 900;
}

.luxe-wholesale-form input,
.luxe-wholesale-form textarea {
  width: 100%;
  border: 1px solid #d8e2e8;
  border-radius: 8px;
  padding: 12px 13px;
  color: #102942;
  background: #f7fafc;
  font: inherit;
}

.luxe-wholesale-form textarea {
  resize: vertical;
}

.luxe-reviews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.luxe-reviews article {
  padding: 20px;
  border: 1px solid #dfe7ec;
  border-radius: 8px;
  background: #fff;
}

.luxe-reviews b {
  color: #caa14a;
}

.luxe-reviews p {
  min-height: 86px;
  margin: 12px 0 16px;
}

.luxe-reviews span {
  color: #6b7280;
  font-size: 14px;
  font-weight: 900;
}

.luxe-footer {
  padding: 26px 0;
  color: #dce8f0;
  background: #102942;
}

.luxe-footer .luxe-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.luxe-footer b {
  color: #fff;
}

.luxe-footer a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 8px;
  color: #102942;
  background: #fff;
  font-weight: 900;
}

.luxe-header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.article-page {
  background: #fff;
}

.article-hero {
  padding: 48px 0;
  background:
    radial-gradient(circle at 18% 12%, rgb(75 163 226 / 16%), transparent 32%),
    linear-gradient(180deg, #f8fbfd 0%, #eef3f6 100%);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 36px;
  align-items: center;
}

.article-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #102942;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.01;
}

.article-hero p {
  max-width: 760px;
  color: #475569;
  font-size: 19px;
  line-height: 1.62;
}

.article-hero img {
  width: 100%;
  border: 1px solid #dfe7ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgb(16 41 66 / 12%);
}

.article-breadcrumb {
  display: inline-flex;
  margin-bottom: 18px;
  color: #1c6fa9;
  font-size: 14px;
  font-weight: 950;
}

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 820px);
  gap: 56px;
  align-items: start;
  padding-top: 54px;
  padding-bottom: 64px;
}

.article-toc {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid #dfe7ec;
  border-radius: 8px;
  background: #f8fbfd;
}

.article-toc b {
  color: #102942;
}

.article-toc a {
  color: #596675;
  font-size: 14px;
  font-weight: 850;
}

.article-content {
  display: grid;
  gap: 34px;
}

.article-content section {
  scroll-margin-top: 110px;
}

.article-content h2 {
  margin: 0 0 14px;
  color: #102942;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.article-content p {
  margin: 0 0 14px;
  color: #374151;
  font-size: 18px;
  line-height: 1.78;
}

.article-callout {
  padding: 28px;
  border: 1px solid #d8e8f1;
  border-radius: 8px;
  background: #f2f9fd;
}

.article-callout .button {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .luxe-header {
    grid-template-columns: auto 1fr;
  }
  .luxe-nav {
    display: none;
  }
  .luxe-cart {
    justify-self: end;
  }
  .luxe-product-card,
  .luxe-split,
  .luxe-compare-grid,
  .luxe-official-grid,
  .luxe-wholesale-grid,
  .article-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-toc {
    position: static;
  }
  .luxe-gallery {
    min-height: auto;
  }
  .luxe-main-shot {
    min-height: 0;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .luxe-proofline,
  .luxe-benefits,
  .luxe-audience,
  .luxe-reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .luxe-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .luxe-top span:nth-child(2) {
    display: none;
  }
  .luxe-header {
    min-height: 64px;
    padding: 0 12px;
  }
  .luxe-logo img {
    width: 92px;
  }
  .luxe-shell {
    width: min(100% - 22px, 1240px);
  }
  .luxe-hero {
    padding-top: 14px;
  }
  .luxe-buybox {
    order: 1;
    padding: 22px;
  }
  .luxe-gallery {
    order: 2;
    grid-template-columns: 1fr;
    padding: 10px;
  }
  .luxe-gallery-rail {
    order: 2;
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .luxe-main-shot {
    order: 1;
  }
  .luxe-buybox h1 {
    font-size: 35px;
  }
  .luxe-buybox p {
    font-size: 16px;
  }
  .luxe-values,
  .luxe-offers article,
  .luxe-article-card,
  .luxe-proofline,
  .luxe-benefits,
  .luxe-compare-table,
  .luxe-audience,
  .luxe-reviews {
    grid-template-columns: 1fr;
  }
  .luxe-section {
    padding: 40px 0;
  }
  .article-hero {
    padding: 36px 0;
  }
  .article-layout {
    gap: 32px;
    padding-top: 36px;
    padding-bottom: 44px;
  }
  .article-content p {
    font-size: 17px;
  }
  .luxe-footer .luxe-shell {
    display: grid;
  }
}

.promo {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 16px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.nav-links, .nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-actions { justify-content: flex-end; }
.nav a { color: #25282d; font-size: 15px; font-weight: 650; }
.nav a:hover { color: var(--blue-dark); }

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 118px;
  height: auto;
}

.icon-btn, .button, .ghost-btn {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  position: relative;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  font-size: 12px;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 34px 0 54px;
  background: linear-gradient(180deg, #f5fbff 0%, #ffffff 100%);
}

.sales-hero {
  padding: 42px 0 58px;
  background: linear-gradient(180deg, #f3faff 0%, #ffffff 100%);
}

.sales-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .86fr);
  gap: 44px;
  align-items: center;
}

.sales-copy h1 {
  max-width: 720px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.proof-strip div {
  min-height: 98px;
  padding: 16px;
  border: 1px solid #d7eaf5;
  border-radius: 8px;
  background: rgb(255 255 255 / 82%);
}

.proof-strip strong {
  display: block;
  font-size: 24px;
}

.proof-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.market-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.market-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  background: #f4f7f8;
}

.market-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.market-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: #f4f7f8;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  gap: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  background: #e8f5fd;
  border: 1px solid #cfeaf9;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(36px, 5.6vw, 64px);
  max-width: 780px;
}

.lead {
  max-width: 640px;
  margin: 20px 0 0;
  color: #3f464d;
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button, .ghost-btn {
  min-height: 48px;
  border-radius: 8px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button {
  color: var(--white);
  background: var(--blue-dark);
}

.button:hover { background: #155c8e; }

.ghost-btn {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-media {
  min-height: 390px;
  position: relative;
  display: grid;
  place-items: center;
}

.product-stack {
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: end;
  gap: 0;
}

.pack {
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pack.small { transform: translateX(28px) scale(.92); z-index: 1; }
.pack.big { z-index: 2; }

.pack img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.trust-item, .card, .info-box, .cart-panel, .article-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.trust-item {
  padding: 16px;
  font-weight: 800;
}

.trust-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.section {
  padding: 62px 0;
}

.section.alt { background: var(--soft); }

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

.section h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.section-copy {
  max-width: 650px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

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

.card {
  overflow: hidden;
  display: grid;
  grid-template-columns: .82fr 1fr;
  min-height: 390px;
}

.card-media {
  padding: 26px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f7fafb, #eef5f7);
}

.card-media img {
  max-height: 300px;
  object-fit: contain;
}

.card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  color: #12643f;
  background: #e9f8f0;
  font-size: 13px;
  font-weight: 800;
}

.card h3 { font-size: 24px; line-height: 1.15; }
.card p { color: var(--muted); line-height: 1.55; margin: 0; }

.price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price strong { font-size: 30px; }
.price s { color: var(--muted); }

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.value-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.value-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--soft);
}

.value-card div {
  padding: 20px;
}

.value-card h3 {
  font-size: 22px;
  line-height: 1.18;
}

.value-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.buy-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .86fr 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.featured-buy {
  border-color: #9bd1f1;
  box-shadow: 0 16px 40px rgb(75 163 226 / 18%);
}

.best-label {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  border-radius: 999px;
  padding: 8px 12px;
  color: #114d78;
  background: #e3f5ff;
  font-size: 13px;
  font-weight: 900;
}

.buy-image {
  display: grid;
  place-items: center;
  padding: 22px;
  background: linear-gradient(180deg, #f9fbfc, #edf4f7);
}

.buy-image img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}

.buy-body {
  padding: 28px;
}

.buy-body h3 {
  margin-top: 14px;
  font-size: 28px;
}

.buy-body p,
.buy-body li {
  color: var(--muted);
  line-height: 1.58;
}

.buy-body ul {
  margin: 14px 0;
  padding-left: 20px;
}

.split-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  gap: 34px;
  align-items: center;
}

.split-proof img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.check-list span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.steps div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps strong {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-dark);
}

.steps h3 {
  font-size: 21px;
}

.steps p {
  color: var(--muted);
  line-height: 1.6;
}

.closing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background: #172632;
}

.closing-cta h2 {
  max-width: 780px;
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 46px);
}

.closing-cta p {
  color: #d9e7ef;
  line-height: 1.6;
}

.cta-actions {
  display: grid;
  gap: 10px;
  min-width: 190px;
}

.info-box {
  padding: 22px;
}

.info-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.info-box p, .article-card p, .content p, .content li {
  color: var(--muted);
  line-height: 1.65;
}

.seo-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.seo-links a {
  min-height: 90px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.seo-links span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background: #1f7fbf;
}

.newsletter h2 { font-size: clamp(28px, 4vw, 44px); }
.newsletter p { color: rgb(255 255 255 / 82%); line-height: 1.55; }

.footer {
  padding: 38px 0;
  color: #d9e7ef;
  background: #172632;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 24px;
}

.footer a, .footer p {
  display: block;
  margin: 8px 0;
  color: #d9e7ef;
}

.footer h3 {
  color: var(--white);
  font-size: 16px;
}

.page-hero {
  padding: 50px 0 36px;
  background: var(--soft);
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(34px, 5vw, 58px);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.product-gallery {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #f8fafb;
}

.product-gallery img {
  max-height: 560px;
  margin: 0 auto;
  object-fit: contain;
}

.specs {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.specs th, .specs td {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.specs th {
  width: 42%;
  color: var(--muted);
  font-weight: 600;
}

.cart-panel {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: min(420px, calc(100% - 36px));
  max-height: min(620px, calc(100vh - 36px));
  padding: 20px;
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
  overflow: auto;
}

.cart-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line small { color: var(--muted); }

.cart-total {
  display: flex;
  justify-content: space-between;
  margin: 18px 0;
  font-size: 20px;
  font-weight: 900;
}

.cart-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgb(16 41 66 / 58%);
}

.checkout-modal.open {
  display: flex;
}

.checkout-dialog {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 34px 90px rgb(0 0 0 / 24%);
}

.checkout-dialog h2 {
  margin: 8px 0 10px;
  color: #102942;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.06;
}

.checkout-dialog p {
  color: #4b5563;
  line-height: 1.55;
}

.checkout-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  color: #102942;
  font-size: 13px;
  font-weight: 900;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid #d8e2e8;
  border-radius: 8px;
  padding: 12px 13px;
  color: #102942;
  background: #f7fafc;
  font: inherit;
}

.checkout-form textarea {
  resize: vertical;
}

.checkout-consent {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  color: #4b5563 !important;
  font-size: 12px !important;
  line-height: 1.4;
}

.checkout-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.checkout-summary {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid #dfe7ec;
  border-radius: 8px;
  background: #dfe7ec;
}

.checkout-summary div,
.checkout-summary strong {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: #fff;
}

.checkout-summary span {
  color: #4b5563;
}

.checkout-summary b,
.checkout-summary strong {
  color: #102942;
}

.checkout-success {
  padding: 12px 0 4px;
}

.content {
  max-width: 880px;
}

.content h2 {
  margin-top: 34px;
  font-size: 32px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.article-card {
  padding: 22px;
}

.article-card h3 {
  font-size: 21px;
  line-height: 1.2;
}

.article-card p { margin-bottom: 0; }

@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .logo { justify-content: start; }

  .store-nav,
  .pdp-grid,
  .hero-grid, .sales-hero-grid, .product-detail, .newsletter, .footer-grid, .split-proof, .closing-cta,
  .compare-grid,
  .mission-grid,
  .usage-grid {
    grid-template-columns: 1fr;
  }

  .hero-media { min-height: auto; }
  .store-nav nav,
  .trust-row, .proof-strip, .grid-3, .value-grid, .steps, .seo-links, .article-grid, .products, .buy-grid, .check-list,
  .proof-cards,
  .reviews-head,
  .sku-grid,
  .faq-grid,
  .reviews-grid,
  .quick-benefits,
  .compare-list {
    grid-template-columns: 1fr;
  }

  .store-nav nav {
    display: none;
  }

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

  .store-actions {
    justify-content: flex-end;
  }

  .card, .buy-card, .sku-card {
    grid-template-columns: 1fr;
  }

  .best-label {
    left: 14px;
    right: auto;
  }
}

@media (max-width: 560px) {
  .store-topbar {
    gap: 10px;
    font-size: 11px;
    line-height: 1.2;
  }

  .store-topbar span:nth-child(2) {
    display: none;
  }

  .store-nav {
    width: min(100% - 22px, 1180px);
    min-height: 64px;
  }

  .store-logo img {
    width: 90px;
  }

  .store-actions a {
    display: none;
  }

  .pdp {
    padding: 18px 0 36px;
  }

  .pdp-panel {
    order: 1;
  }

  .pdp-gallery {
    order: 2;
  }

  .pdp-gallery {
    padding: 10px;
  }

  .pdp-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }

  .pdp-panel {
    padding: 22px;
  }

  .pdp-panel h1 {
    font-size: 34px;
  }

  .pdp-subtitle {
    font-size: 17px;
  }

  .volume-card {
    grid-template-columns: 1fr;
  }

  .sku-card img {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .sku-card > div,
  .faq-grid article {
    padding: 22px;
  }

  .promo {
    font-size: 12px;
    line-height: 1.25;
    padding: 7px 10px;
  }
  .container, .nav { width: min(100% - 22px, 1180px); }
  .nav {
    grid-template-columns: 1fr auto;
    min-height: 66px;
  }
  .nav-actions a {
    display: none;
  }
  .logo img { width: 96px; }
  .hero { padding-top: 22px; }
  .sales-hero { padding: 28px 0 42px; }
  .product-stack { grid-template-columns: 1fr; gap: 14px; }
  .pack.small { transform: none; }
  .section { padding: 44px 0; }
  .section-head { display: block; }
  .newsletter { padding: 24px; }
  .market-card { padding: 10px; }
  .buy-body, .value-card div, .steps div, .closing-cta { padding: 22px; }
  .closing-cta { display: block; }
  .cta-actions { margin-top: 18px; }
  .card-actions { display: grid; }
  .button, .ghost-btn { width: 100%; }
}
