/*
Theme Name: COREAX v30
Theme URI: https://coreaxgear.com
Author: COREAX
Description: Industrial WooCommerce theme for COREAX RV and overland hardware.
Version: 0.31.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
Text Domain: coreax
*/

:root {
  --cx-ink: #121417;
  --cx-carbon: #1d2228;
  --cx-graphite: #343a40;
  --cx-steel: #8c959f;
  --cx-line: #d9dde1;
  --cx-paper: #f6f4ef;
  --cx-white: #ffffff;
  --cx-signal: #cf4f2a;
  --cx-amber: #c58a42;
  --cx-radius: 6px;
  --cx-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cx-ink);
  background: var(--cx-paper);
  font-family: Outfit, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.single-product {
  padding-bottom: 88px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.cx-shell {
  max-width: var(--cx-max);
  margin: 0 auto;
  padding: 0 24px;
}

.cx-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 20, 23, 0.92);
  color: var(--cx-white);
  backdrop-filter: blur(14px);
}

.cx-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.cx-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.cx-brand img {
  width: 156px;
  height: auto;
}

.cx-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cx-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.cx-nav a:hover,
.cx-nav a:focus {
  color: var(--cx-white);
}

.cx-nav .cx-nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 10px 14px;
  border-radius: var(--cx-radius);
  color: var(--cx-white);
}

.cx-main {
  min-height: 70vh;
}

.cx-commerce-hero {
  background: #eeeae1;
}

.cx-hero-track {
  position: relative;
  overflow: hidden;
}

.cx-hero-slide {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.cx-hero-slide-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cx-hero-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cx-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(246, 244, 239, .98) 0%, rgba(246, 244, 239, .88) 28%, rgba(246, 244, 239, .26) 56%, rgba(246, 244, 239, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .36) 0%, rgba(255, 255, 255, 0) 45%);
}

.cx-promo-panel {
  max-width: 560px;
  padding: 76px 0 86px;
}

.cx-promo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  margin: 0 0 18px;
  border-left: 5px solid var(--cx-signal);
  padding-left: 12px;
  color: #4b535b;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cx-promo-panel h1 {
  margin: 0;
  max-width: 600px;
  color: var(--cx-ink);
  font-size: clamp(48px, 6.8vw, 86px);
  line-height: .96;
  font-weight: 880;
  letter-spacing: 0;
}

.cx-promo-panel p {
  max-width: 500px;
  margin: 22px 0 0;
  color: #384049;
  font-size: 19px;
}

.cx-promo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cx-promo-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(18, 20, 23, .16);
  border-radius: var(--cx-radius);
  padding: 7px 10px;
  background: rgba(255, 255, 255, .68);
  color: #2e353d;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cx-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.cx-promo-actions .cx-button.secondary {
  border-color: rgba(18, 20, 23, .24);
  background: rgba(255, 255, 255, .7);
  color: var(--cx-ink);
}

.cx-promo-actions .cx-button.secondary:hover {
  background: var(--cx-white);
  color: var(--cx-ink);
}

.cx-hero-dots {
  position: absolute;
  left: max(24px, calc((100vw - var(--cx-max)) / 2 + 24px));
  bottom: 30px;
  display: flex;
  gap: 8px;
}

.cx-hero-dots span {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(18, 20, 23, .28);
}

.cx-hero-dots span:first-child {
  background: var(--cx-signal);
}

.cx-commerce-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--cx-line);
  border-bottom: 1px solid var(--cx-line);
  background: var(--cx-white);
}

.cx-strip-item {
  padding: 22px 24px;
  border-right: 1px solid var(--cx-line);
}

.cx-strip-item:last-child {
  border-right: 0;
}

.cx-strip-item strong {
  display: block;
  color: var(--cx-ink);
  font-size: 15px;
}

.cx-strip-item span {
  display: block;
  margin-top: 4px;
  color: #69717a;
  font-size: 14px;
}

.cx-category-rail {
  padding: 28px 0 0;
  background: var(--cx-paper);
}

.cx-category-rail .cx-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cx-category-tile {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 112px;
  border: 1px solid var(--cx-line);
  border-radius: var(--cx-radius);
  padding: 14px;
  background: var(--cx-white);
}

.cx-category-tile img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border-radius: var(--cx-radius);
  background: #f4f1e8;
}

.cx-category-tile strong {
  display: block;
  color: var(--cx-ink);
  font-size: 18px;
  line-height: 1.12;
}

.cx-category-tile span {
  display: block;
  margin-top: 4px;
  color: #69717a;
  font-size: 13px;
}

.cx-page {
  padding: 72px 0;
}

.cx-hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  color: var(--cx-white);
  background:
    radial-gradient(circle at 78% 30%, rgba(207, 79, 42, .18), transparent 34%),
    radial-gradient(circle at 86% 78%, rgba(197, 138, 66, .16), transparent 28%),
    linear-gradient(135deg, #121417 0%, #242a31 52%, #111315 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.cx-hero .cx-shell {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 630px) minmax(360px, 1fr);
  align-items: center;
  gap: 56px;
  padding-top: 60px;
  padding-bottom: 80px;
}

.cx-kicker {
  margin: 0 0 18px;
  color: #f0b36d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cx-hero h1,
.cx-section h2,
.cx-page h1 {
  margin: 0;
  line-height: .98;
  letter-spacing: 0;
}

.cx-hero h1 {
  max-width: 720px;
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 850;
}

.cx-hero p {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.cx-hero-visual {
  position: relative;
}

.cx-hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% -10% -8% 18%;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  transform: skewX(-8deg);
}

.cx-hero-visual img {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .38);
  object-fit: cover;
}

.cx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.cx-button,
.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--cx-radius);
  padding: 12px 18px;
  background: var(--cx-signal);
  color: var(--cx-white);
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.cx-button:hover,
.button:hover,
.wp-element-button:hover,
.woocommerce a.button:hover {
  transform: translateY(-1px);
  background: #b94121;
  color: var(--cx-white);
}

.cx-button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.cx-button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.cx-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.cx-proof {
  padding: 28px 24px;
  background: rgba(18, 20, 23, 0.9);
}

.cx-proof strong {
  display: block;
  font-size: 15px;
  color: var(--cx-white);
}

.cx-proof span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.cx-section {
  padding: 92px 0;
}

.cx-section.light {
  background: var(--cx-white);
}

.cx-section.dark {
  background: var(--cx-carbon);
  color: var(--cx-white);
}

.home .cx-section.dark {
  padding: 82px 0;
}

.home .cx-section.light,
.home .cx-band {
  padding: 78px 0;
}

.cx-section h2,
.cx-page h1 {
  max-width: 780px;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 830;
}

.cx-section .cx-lead,
.cx-page .cx-lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: #59616a;
  font-size: 19px;
}

.cx-section.dark .cx-lead {
  color: rgba(255, 255, 255, 0.7);
}

.cx-section.dark .cx-feature strong {
  color: var(--cx-white);
}

.cx-section.dark .cx-feature span {
  color: rgba(255, 255, 255, 0.68);
}

.cx-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.cx-card {
  border: 1px solid var(--cx-line);
  border-radius: var(--cx-radius);
  background: var(--cx-white);
  overflow: hidden;
}

.cx-card.dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.cx-card-media {
  aspect-ratio: 4 / 3;
  background: #e9ecef;
}

.cx-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cx-card-body {
  padding: 24px;
}

.cx-card h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.14;
}

.cx-card p {
  margin: 12px 0 0;
  color: #5c646d;
}

.cx-card.dark p {
  color: rgba(255, 255, 255, 0.7);
}

.cx-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.cx-feature-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.cx-feature {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cx-feature-mark {
  grid-column: 1;
  grid-row: 1;
  width: 34px;
  height: 34px;
  border-radius: var(--cx-radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, var(--cx-signal), var(--cx-amber));
}

.cx-feature > p:empty {
  display: none;
}

.cx-feature > div {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.cx-feature strong {
  display: block;
  line-height: 1.2;
}

.cx-feature span {
  display: block;
  margin-top: 5px;
  color: #59616a;
}

.cx-band {
  border-top: 1px solid rgba(18, 20, 23, 0.1);
  border-bottom: 1px solid rgba(18, 20, 23, 0.1);
  background: #e7e2d8;
}

.cx-policy {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.cx-policy-block {
  border: 1px solid var(--cx-line);
  border-radius: var(--cx-radius);
  background: var(--cx-white);
  padding: 26px;
}

.cx-policy-block h2,
.cx-policy-block h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.18;
}

.cx-policy-block p,
.cx-policy-block li {
  color: #59616a;
}

.cx-policy-block ul,
.cx-policy-block ol {
  margin: 12px 0 0;
  padding-left: 20px;
}

.cx-note {
  border-left: 4px solid var(--cx-signal);
  margin-top: 28px;
  padding: 16px 18px;
  background: #fff7f1;
  color: #4f5660;
}

.cx-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.cx-footer {
  background: var(--cx-ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 54px 0 32px;
}

.cx-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 32px;
}

.cx-footer img {
  width: 150px;
  margin-bottom: 18px;
}

.cx-footer h3 {
  margin: 0 0 14px;
  color: var(--cx-white);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cx-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.72);
}

.cx-footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border: 1px solid var(--cx-line);
  border-radius: var(--cx-radius);
  background: var(--cx-white);
  overflow: hidden;
  padding-bottom: 18px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0 16px;
  color: var(--cx-ink);
  font-size: 18px;
}

.woocommerce ul.products li.product .price {
  padding: 0 16px;
  color: var(--cx-signal);
  font-weight: 800;
}

.woocommerce ul.products li.product .button {
  margin-left: 16px;
}

.woocommerce div.product {
  max-width: var(--cx-max);
  margin: 0 auto;
  padding: 70px 24px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: 58px;
  align-items: start;
}

.woocommerce div.product > * {
  min-width: 0;
}

.woocommerce div.product .woocommerce-product-gallery {
  display: none !important;
}

.woocommerce div.product .summary {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

.woocommerce div.product .product_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--cx-line);
  color: #59616a;
  font-size: 14px;
}

.woocommerce div.product .product_title {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.woocommerce div.product p.price {
  color: var(--cx-signal);
  font-weight: 850;
}

.woocommerce div.product form.cart {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--cx-line);
  border-radius: var(--cx-radius);
  background: var(--cx-white);
}

.woocommerce div.product form.cart .variations {
  width: 100%;
}

.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
  display: block;
  padding: 0 0 10px;
  text-align: left;
}

.woocommerce div.product form.cart select,
.woocommerce div.product form.cart input.qty {
  min-height: 42px;
  border: 1px solid var(--cx-line);
  border-radius: var(--cx-radius);
  padding: 8px 10px;
  background: #fafafa;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
  background: var(--cx-signal) !important;
  color: var(--cx-white) !important;
}

.cx-product-visual {
  position: relative;
  min-width: 0;
  min-height: 520px;
  border: 1px solid var(--cx-line);
  border-radius: var(--cx-radius);
  background:
    linear-gradient(135deg, #ffffff 0%, #f3f3ef 100%);
  overflow: hidden;
}

.cx-product-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  padding: 34px;
}

.cx-product-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  border-radius: var(--cx-radius);
  padding: 10px 12px;
  background: var(--cx-ink);
  color: var(--cx-white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cx-product-hero .summary > .price,
.cx-product-hero .summary > .woocommerce-product-details__short-description,
.cx-product-hero .summary > form.cart,
.cx-product-hero .summary > .product_meta {
  max-width: 560px;
}

.cx-product-hero .summary .woocommerce-product-details__short-description ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.cx-product-hero .summary .woocommerce-product-details__short-description li {
  position: relative;
  padding-left: 24px;
  color: #3d454d;
}

.cx-product-hero .summary .woocommerce-product-details__short-description li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cx-signal);
}

.cx-aplus {
  grid-column: 1 / -1;
  margin-top: 64px;
  background: var(--cx-white);
  border-top: 1px solid var(--cx-line);
}

.cx-aplus-section {
  max-width: var(--cx-max);
  margin: 0 auto;
  padding: 88px 24px;
}

.cx-aplus-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.cx-aplus-hero h2,
.cx-aplus-section h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.02;
}

.cx-aplus-hero p,
.cx-aplus-section p {
  color: #59616a;
}

.cx-aplus-image {
  border: 1px solid var(--cx-line);
  border-radius: var(--cx-radius);
  background: #f6f4ef;
  overflow: hidden;
}

.cx-aplus-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 28px;
}

.cx-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  background: var(--cx-line);
  border: 1px solid var(--cx-line);
}

.cx-spec {
  background: var(--cx-white);
  padding: 22px;
}

.cx-spec span {
  display: block;
  color: #69717a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cx-spec strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.16;
}

.cx-aplus-dark {
  background: var(--cx-carbon);
  color: var(--cx-white);
}

.cx-aplus-dark p,
.cx-aplus-dark .cx-feature span {
  color: rgba(255, 255, 255, .68);
}

.cx-aplus-dark .cx-feature strong {
  color: var(--cx-white);
}

.cx-aplus-cta {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--cx-radius);
  background: rgba(255, 255, 255, .06);
}

.related.products {
  display: none;
}

@media (max-width: 900px) {
  .cx-nav {
    gap: 14px;
    font-size: 12px;
  }

  .cx-hero,
  .cx-hero .cx-shell {
    min-height: 680px;
  }

  .cx-hero-slide {
    min-height: 560px;
  }

  .cx-hero-slide::after {
    background:
      linear-gradient(90deg, rgba(246, 244, 239, .97) 0%, rgba(246, 244, 239, .82) 54%, rgba(246, 244, 239, .1) 100%);
  }

  .cx-promo-panel {
    max-width: 520px;
    padding: 66px 0 82px;
  }

  .cx-hero .cx-shell,
  .woocommerce div.product,
  .cx-aplus-hero,
  .cx-split,
  .cx-footer-grid {
    grid-template-columns: 1fr;
  }

  .cx-hero-visual {
    display: none;
  }

  .cx-grid-3,
  .cx-mini-grid,
  .cx-spec-grid,
  .cx-proof-row,
  .cx-commerce-strip,
  .cx-category-rail .cx-shell {
    grid-template-columns: 1fr;
  }

  .cx-strip-item {
    border-right: 0;
    border-bottom: 1px solid var(--cx-line);
  }

  .cx-category-rail {
    padding-top: 18px;
  }

  .woocommerce div.product {
    padding-top: 46px;
  }

  .cx-product-visual,
  .cx-product-visual img {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .cx-shell {
    padding: 0 18px;
  }

  .cx-header-inner {
    min-height: 68px;
    gap: 12px;
    justify-content: flex-start;
  }

  .cx-brand img {
    width: 116px;
  }

  .cx-nav {
    display: none;
  }

  .cx-nav a:not(.cx-nav-cta) {
    display: none;
  }

  .cx-hero,
  .cx-hero .cx-shell {
    min-height: 620px;
  }

  .cx-hero-slide {
    min-height: 580px;
    align-items: flex-end;
  }

  .cx-hero-slide-media img {
    object-position: 58% center;
  }

  .cx-hero-slide::after {
    background:
      linear-gradient(180deg, rgba(246, 244, 239, .35) 0%, rgba(246, 244, 239, .9) 46%, rgba(246, 244, 239, 1) 100%);
  }

  .cx-promo-panel {
    max-width: 100%;
    padding: 230px 0 72px;
  }

  .cx-promo-eyebrow {
    font-size: 11px;
  }

  .cx-promo-panel h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .cx-promo-panel p {
    font-size: 16px;
  }

  .cx-hero-dots {
    left: 18px;
    bottom: 22px;
  }

  .cx-commerce-strip {
    display: none;
  }

  .cx-category-tile {
    grid-template-columns: 72px 1fr;
    min-height: 92px;
  }

  .cx-category-tile img {
    width: 72px;
    height: 72px;
  }

  .woocommerce div.product {
    display: block;
    width: calc(100vw - 36px);
    max-width: none;
    margin-left: 0;
    margin-right: auto;
    padding: 38px 0 0;
    gap: 34px;
    overflow: hidden;
  }

  .woocommerce div.product .summary,
  .cx-product-hero .summary > .price,
  .cx-product-hero .summary > .woocommerce-product-details__short-description,
  .cx-product-hero .summary > form.cart {
    max-width: 100%;
    min-width: 0;
  }

  .woocommerce div.product .product_title {
    font-size: clamp(28px, 7.7vw, 32px);
    line-height: 1.08;
    word-break: break-word;
  }

  .woocommerce div.product .summary {
    margin-top: 34px !important;
  }

  .woocommerce div.product form.cart {
    padding: 18px;
  }

  .woocommerce div.product form.cart select {
    width: 100%;
  }

  .woocommerce div.product form.cart .variations_button {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .cx-product-visual,
  .cx-product-visual img {
    min-height: 280px;
  }

  .cx-product-visual img {
    width: 100%;
    max-width: 100%;
    padding: 14px;
  }

  .cx-product-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: max-content;
    max-width: calc(100% - 32px);
    white-space: normal;
  }

  .cx-aplus-section {
    width: calc(100vw - 36px);
    max-width: none;
    margin-left: 0;
    margin-right: auto;
    padding: 54px 0;
  }

  .cx-aplus-hero h2,
  .cx-aplus-section h2 {
    font-size: clamp(28px, 8.6vw, 38px);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .cx-product-hero .summary .woocommerce-product-details__short-description li,
  .cx-aplus-section p,
  .cx-feature span,
  .cx-spec strong {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .cx-aplus-image img {
    padding: 18px;
  }

  .cx-hero h1 {
    font-size: 48px;
  }

  .cx-hero p,
  .cx-section .cx-lead,
  .cx-page .cx-lead {
    font-size: 17px;
  }

  .cx-section {
    padding: 68px 0;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product,
  .woocommerce ul.products[class*="columns-"] li.product,
  .woocommerce-page ul.products[class*="columns-"] li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .woocommerce-result-count,
  .woocommerce-ordering {
    display: none !important;
  }
}

/* v15 concept-aligned ecommerce homepage refinement */
.cx-site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 16, 18, 0.98);
}

.cx-header-inner {
  min-height: 70px;
}

.cx-brand img {
  width: 168px;
}

.cx-nav {
  gap: 26px;
}

.cx-nav a[aria-current="page"],
.cx-nav a:first-child {
  color: var(--cx-signal);
}

.cx-nav-shop::after,
.cx-nav-applications::after {
  content: "⌄";
  margin-left: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, .62);
}

.cx-header-tools {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--cx-white);
}

.cx-header-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--cx-white);
}

.cx-header-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.cx-cart-count {
  position: absolute;
  top: -4px;
  right: -7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: var(--cx-signal);
  color: var(--cx-white);
  font-size: 9px;
  font-weight: 850;
}

.cx-hero-slide {
  min-height: 500px;
}

.cx-hero-slide-media img {
  object-position: center center;
}

.cx-hero-slide::after {
  background:
    linear-gradient(90deg, rgba(246, 244, 239, .98) 0%, rgba(246, 244, 239, .86) 32%, rgba(246, 244, 239, .28) 50%, rgba(246, 244, 239, 0) 78%),
    linear-gradient(180deg, rgba(255, 255, 255, .36) 0%, rgba(255, 255, 255, 0) 45%);
}

.cx-hero-slide > .cx-shell {
  width: 100%;
  max-width: none;
  padding-left: clamp(32px, 5.6vw, 82px);
  padding-right: clamp(24px, 5vw, 72px);
}

.cx-promo-panel {
  max-width: 470px;
  padding: 64px 0 72px;
}

.cx-promo-eyebrow {
  margin-bottom: 14px;
}

.cx-promo-panel h1 {
  max-width: 520px;
  font-size: clamp(46px, 5.4vw, 72px);
  line-height: .94;
}

.cx-promo-panel p {
  max-width: 410px;
  margin-top: 18px;
}

.cx-promo-meta {
  display: none;
}

.cx-hero-dots {
  left: clamp(32px, 5.6vw, 82px);
  bottom: 22px;
}

.cx-commerce-strip {
  background: rgba(255, 255, 255, .96);
}

.cx-strip-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px 34px;
}

.cx-strip-item::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--cx-signal);
  border-radius: var(--cx-radius);
  color: var(--cx-signal);
  font-size: 22px;
  font-weight: 850;
}

.cx-strip-item.shipping::before {
  content: ">";
}

.cx-strip-item.load::before {
  content: "OK";
  font-size: 13px;
}

.cx-strip-item.support::before {
  content: "30";
  font-size: 13px;
}

.cx-category-rail {
  padding: 22px 0 30px;
  background: #fbfaf7;
}

.cx-category-rail .cx-shell {
  gap: 16px;
}

.cx-category-tile {
  grid-template-columns: 1fr 190px;
  gap: 18px;
  min-height: 162px;
  padding: 22px;
}

.cx-category-tile img {
  width: 100%;
  height: 126px;
}

.cx-category-tile strong {
  font-size: 22px;
}

.cx-shop-now {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-top: 16px !important;
  color: var(--cx-signal) !important;
  font-size: 13px !important;
  font-weight: 850;
}

.cx-product-showcase {
  padding: 56px 0 78px;
  background: #fbfaf7;
}

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

.cx-showcase-head h2 {
  margin: 0;
  max-width: 620px;
  color: var(--cx-ink);
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1;
}

.cx-showcase-head p {
  max-width: 620px;
  margin: 10px 0 0;
  color: #59616a;
}

.cx-view-all {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(18, 20, 23, .32);
  border-radius: var(--cx-radius);
  padding: 10px 18px;
  font-weight: 850;
}

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

.cx-product-grid > p {
  display: contents;
  margin: 0;
}

.cx-product-grid > br,
.cx-product-grid > p:empty {
  display: none;
}

.cx-product-card {
  position: relative;
  display: block;
  height: 100%;
  border: 1px solid var(--cx-line);
  border-radius: var(--cx-radius);
  padding: 14px;
  background: var(--cx-white);
  overflow: hidden;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.cx-product-card:hover {
  border-color: rgba(207, 79, 42, .35);
  box-shadow: 0 18px 42px rgba(18, 20, 23, .12);
  transform: translateY(-2px);
}

.cx-product-card .cx-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  aspect-ratio: auto;
  border-radius: var(--cx-radius);
  background: #f6f4ef;
  overflow: hidden;
}

.cx-product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: var(--cx-radius);
  background: #f6f4ef;
}

.cx-product-card .cx-card-media img {
  height: 100%;
  border-radius: 0;
  background: transparent;
}

.cx-product-card h3,
.cx-product-card .cx-card-title {
  display: block;
  margin: 16px 0 4px;
  color: var(--cx-ink);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.2;
}

.cx-product-card p,
.cx-product-card .cx-card-copy {
  display: block;
  margin: 0;
  color: #69717a;
  font-size: 13px;
  line-height: 1.35;
}

.cx-product-card .price {
  display: block;
  margin-top: 10px;
  color: var(--cx-signal);
  font-weight: 850;
}

.cx-stars {
  display: block;
  margin-top: 7px;
  color: #f5a400;
  font-size: 12px;
  letter-spacing: .04em;
}

.cx-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  border-radius: var(--cx-radius);
  padding: 5px 8px;
  background: var(--cx-signal);
  color: var(--cx-white);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .cx-header-tools {
    display: none;
  }

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

  .cx-category-tile {
    grid-template-columns: 1fr 140px;
  }
}

@media (max-width: 640px) {
  .cx-brand img {
    width: 116px;
  }

  .cx-hero-slide > .cx-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cx-promo-panel {
    padding-top: 230px;
  }

  .cx-promo-panel h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .cx-category-tile {
    grid-template-columns: 1fr 92px;
    min-height: 126px;
  }

  .cx-category-tile img {
    width: 92px;
    height: 92px;
  }

  .cx-category-tile strong {
    font-size: 18px;
  }

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

  .cx-showcase-head {
    display: grid;
  }

  .cx-view-all {
    width: max-content;
  }
}

/* v16 COREAX black/silver palette pass */
:root {
  --cx-signal: #b14630;
  --cx-metal: #c4c8cb;
}

.cx-button,
.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.cx-promo-actions .cx-button {
  background: var(--cx-ink);
  color: var(--cx-white);
}

.cx-button:hover,
.button:hover,
.wp-element-button:hover,
.woocommerce a.button:hover,
.cx-promo-actions .cx-button:hover {
  background: #101214;
}

.cx-promo-actions .cx-button.secondary {
  border-color: rgba(18, 20, 23, .34);
  background: rgba(255, 255, 255, .76);
  color: var(--cx-ink);
}

.cx-promo-eyebrow {
  border-left-color: var(--cx-signal);
  color: #25292d;
}

.cx-hero-dots span:first-child {
  background: var(--cx-ink);
}

.cx-hero-dots span:nth-child(2) {
  background: var(--cx-metal);
}

.cx-hero-dots span:nth-child(3) {
  background: var(--cx-signal);
  width: 18px;
}

.cx-strip-item::before {
  border-color: var(--cx-ink);
  color: var(--cx-ink);
  background: linear-gradient(180deg, #fff, #eef0f1);
}

.cx-shop-now,
.cx-product-card .price {
  color: var(--cx-ink) !important;
}

.cx-stars {
  color: #69717a;
}

.cx-card-badge {
  background: var(--cx-ink);
  color: var(--cx-white);
}

.cx-feature-mark {
  background: linear-gradient(135deg, #f8f9f9, #9aa1a7);
  border-color: rgba(255,255,255,.24);
}

.woocommerce div.product form.cart .single_add_to_cart_button {
  background: var(--cx-ink) !important;
}

@media (max-width: 640px) {
  .cx-promo-actions .cx-button {
    background: var(--cx-ink);
  }
}

/* v17 trust-strip layout fix */
.cx-commerce-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cx-strip-item {
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  min-height: 92px;
}

.cx-strip-item::before {
  grid-column: 1;
  grid-row: 1 / 3;
}

.cx-strip-item strong,
.cx-strip-item span {
  grid-column: 2;
  min-width: 0;
}

.cx-strip-item strong {
  grid-row: 1;
  align-self: end;
  line-height: 1.1;
}

.cx-strip-item span {
  grid-row: 2;
  align-self: start;
  margin-top: 5px;
  line-height: 1.35;
}

/* v21 Amazon-inspired product detail page */
.single-product .cx-page {
  padding-top: 34px;
  background: #fff;
}

.single-product .cx-page > .cx-shell {
  max-width: 1440px;
  padding: 0 26px;
}

.single-product .woocommerce-breadcrumb {
  margin: 0 0 20px;
  color: #69717a;
  font-size: 13px;
}

.woocommerce div.product {
  max-width: 1388px;
  padding: 0;
  grid-template-columns: 74px minmax(430px, .96fr) minmax(340px, .72fr) minmax(282px, .55fr);
  gap: 22px;
}

.woocommerce div.product .summary {
  padding: 14px 0 0;
}

.summary .cx-summary-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.summary .cx-summary-badges span {
  border: 1px solid var(--cx-line);
  border-radius: 999px;
  padding: 5px 9px;
  background: #fff;
  color: #343a40;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.summary .cx-summary-badges span:first-child {
  border-color: rgba(177, 70, 48, .32);
  background: #fff6f2;
  color: var(--cx-signal);
}

.woocommerce div.product .product_title {
  max-width: 100%;
  margin-bottom: 12px;
  font-size: clamp(28px, 2.55vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  max-width: 100%;
  padding-top: 14px;
  border-top: 1px solid var(--cx-line);
}

.woocommerce div.product .woocommerce-product-details__short-description ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce div.product .woocommerce-product-details__short-description li {
  position: relative;
  padding-left: 34px;
  color: #30363b;
  font-size: 15px;
  line-height: 1.45;
}

.woocommerce div.product .woocommerce-product-details__short-description li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 1px solid var(--cx-line);
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #f8f9f9, #aeb5ba) border-box;
}

.cx-pdp-thumbs {
  position: static;
  display: grid;
  gap: 10px;
  max-height: 592px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
  scrollbar-width: thin;
}

.cx-pdp-thumb {
  position: relative;
  width: 74px;
  height: 74px;
  padding: 5px;
  border: 1px solid var(--cx-line);
  border-radius: 6px;
  background: #f7f7f5;
  cursor: pointer;
}

.cx-pdp-thumb.is-active {
  border-color: var(--cx-signal);
  box-shadow: 0 0 0 1px var(--cx-signal);
}

.cx-pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cx-thumb-play {
  position: absolute;
  inset: auto 5px 5px;
  border-radius: 4px;
  padding: 3px 4px;
  background: rgba(18, 20, 23, .88);
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cx-product-visual {
  min-height: 592px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(240,242,242,.8)),
    radial-gradient(circle at 50% 20%, rgba(196, 200, 203, .34), transparent 38%);
}

.cx-product-visual img {
  min-height: 592px;
  padding: 42px;
  transition: opacity .18s ease, transform .18s ease;
}

.cx-product-visual video {
  width: 100%;
  height: 100%;
  min-height: 592px;
  padding: 26px;
  object-fit: contain;
  background: #0f1215;
}

.cx-product-visual.is-video {
  background: #0f1215;
}

.cx-product-visual.is-video .cx-media-expand,
.cx-product-visual.is-video .cx-image-chip,
.cx-product-visual.is-video .cx-product-badge {
  display: none;
}

.cx-product-visual:hover img {
  transform: scale(1.018);
}

.cx-image-chip {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  border-radius: 6px;
  padding: 8px 10px;
  background: rgba(255,255,255,.88);
  color: #4b535b;
  font-size: 12px;
  font-weight: 750;
}

.cx-product-badge {
  background: rgba(18, 20, 23, .92);
}

.cx-media-expand {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  min-height: 34px;
  border: 1px solid rgba(18, 20, 23, .18);
  border-radius: 6px;
  padding: 7px 11px;
  background: rgba(255,255,255,.92);
  color: var(--cx-ink);
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.cx-media-expand:hover,
.cx-media-expand:focus-visible {
  border-color: var(--cx-signal);
  color: var(--cx-signal);
}

.cx-buy-panel {
  position: static;
  align-self: start;
  border: 1px solid var(--cx-line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(18, 20, 23, .08);
}

.cx-buy-kicker {
  margin: 0 0 6px;
  color: #69717a;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cx-buy-panel .price {
  margin: 0;
  color: var(--cx-ink) !important;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.1;
  font-weight: 900;
}

.cx-buy-note {
  margin: 14px 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cx-line);
  color: #555e66;
  font-size: 14px;
  line-height: 1.45;
}

.woocommerce div.product .cx-buy-panel form.cart {
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.woocommerce div.product .cx-buy-panel form.cart .variations label,
.woocommerce div.product .cx-buy-panel .quantity + button,
.woocommerce div.product .cx-buy-panel form.cart .single_add_to_cart_button {
  font-weight: 850;
}

.woocommerce div.product .cx-buy-panel form.cart select,
.woocommerce div.product .cx-buy-panel form.cart input.qty {
  width: 100%;
  min-height: 44px;
  background: #fff;
}

.woocommerce div.product .cx-buy-panel form.cart .variations_button {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.woocommerce div.product .cx-buy-panel form.cart .quantity {
  width: 100%;
}

.woocommerce div.product .cx-buy-panel form.cart .single_add_to_cart_button {
  width: 100%;
  min-height: 48px;
  border-radius: 6px;
  background: var(--cx-signal) !important;
}

.woocommerce div.product .cx-buy-panel .woocommerce-variation.single_variation {
  margin: 14px 0 10px;
}

.woocommerce div.product .cx-buy-panel .woocommerce-variation-description {
  display: none !important;
}

.woocommerce div.product .cx-buy-panel .woocommerce-variation-price .price {
  display: inline-flex;
  margin: 0 0 8px;
  color: var(--cx-ink) !important;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}

.woocommerce div.product .cx-buy-panel .reset_variations {
  display: inline-flex !important;
  margin-top: 8px;
  color: #69717a;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cx-buy-support {
  display: grid;
  gap: 11px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--cx-line);
  color: #343a40;
  font-size: 13px;
}

.cx-buy-support span {
  position: relative;
  padding-left: 22px;
}

.cx-buy-support span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cx-signal);
}

.cx-aplus {
  margin-top: 46px;
}

.cx-pdp-guides {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 22px;
  margin-top: 20px;
}

.cx-fit-card,
.cx-compare-card {
  border: 1px solid var(--cx-line);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
}

.cx-fit-card h2,
.cx-compare-card h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.cx-fit-card ol {
  counter-reset: fit;
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.cx-fit-card li {
  counter-increment: fit;
  position: relative;
  min-height: 44px;
  padding: 10px 12px 10px 54px;
  border: 1px solid var(--cx-line);
  border-radius: 6px;
  color: #30363b;
}

.cx-fit-card li::before {
  content: counter(fit);
  position: absolute;
  left: 12px;
  top: 9px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cx-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.cx-compare-card table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  font-size: 15px;
}

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

.cx-compare-card th {
  width: 34%;
  color: #69717a;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cx-size-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, .34fr) minmax(0, .66fr);
  gap: 24px;
  margin-top: 22px;
  border: 1px solid var(--cx-line);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 36px);
  background: #fff;
}

.cx-size-head h2 {
  max-width: 520px;
  margin: 0 0 14px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}

.cx-size-head p:last-child {
  max-width: 520px;
  margin: 0;
  color: #59616a;
  line-height: 1.55;
}

.cx-size-expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 22px;
  border: 1px solid var(--cx-ink);
  border-radius: 6px;
  padding: 9px 14px;
  background: var(--cx-ink);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.cx-size-chart {
  display: grid;
  place-items: center;
  min-height: 420px;
  border: 1px solid var(--cx-line);
  border-radius: 8px;
  padding: clamp(12px, 2vw, 22px);
  background: #fbfaf7;
  cursor: zoom-in;
}

.cx-size-chart img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
}

.cx-media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(11, 13, 15, .86);
}

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

.cx-lightbox-open {
  overflow: hidden;
}

.cx-lightbox-stage {
  display: grid;
  place-items: center;
  width: min(1180px, 96vw);
  height: min(820px, 86vh);
  border-radius: 8px;
  background: #fff;
  overflow: auto;
}

.cx-lightbox-stage img,
.cx-lightbox-stage video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cx-lightbox-stage img {
  padding: clamp(12px, 2vw, 24px);
}

.cx-lightbox-stage video {
  background: #0f1215;
}

.cx-lightbox-close {
  position: fixed;
  right: clamp(18px, 3vw, 36px);
  top: clamp(18px, 3vw, 32px);
  z-index: 10001;
  min-height: 40px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 6px;
  padding: 8px 13px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
}

.cx-sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 65;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(150px, 220px) 96px 180px;
  gap: 14px;
  align-items: center;
  padding: 12px max(24px, calc((100vw - 1388px) / 2 + 24px));
  border-top: 1px solid var(--cx-line);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 -16px 44px rgba(18, 20, 23, .12);
  backdrop-filter: blur(14px);
  transform: translateY(calc(100% + 12px));
  transition: transform .22s ease;
  pointer-events: none;
}

.cx-sticky-buy.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.cx-sticky-product {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.cx-sticky-product img {
  width: 56px;
  height: 56px;
  border: 1px solid var(--cx-line);
  border-radius: 6px;
  object-fit: contain;
  background: #f7f7f5;
}

.cx-sticky-product strong {
  display: block;
  overflow: hidden;
  color: var(--cx-ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cx-sticky-product [data-coreax-sticky-price],
.cx-sticky-product [data-coreax-sticky-price] .price {
  display: block;
  color: var(--cx-ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.cx-sticky-product [data-coreax-sticky-price] span {
  display: inline;
}

.cx-sticky-product [data-coreax-sticky-price] bdi {
  white-space: nowrap;
}

.cx-sticky-field {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.cx-sticky-field span {
  color: #69717a;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.cx-sticky-field select,
.cx-sticky-field input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--cx-line);
  border-radius: 6px;
  padding: 8px 10px;
  background: #fff;
  color: var(--cx-ink);
  font: inherit;
}

.cx-sticky-add {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  background: var(--cx-ink);
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.cx-sticky-add.is-ready {
  background: var(--cx-signal);
}

@media (max-width: 1180px) {
  .woocommerce div.product {
    grid-template-columns: 72px minmax(0, 1.05fr) minmax(330px, .95fr);
  }

  .woocommerce div.product .summary {
    grid-column: 3;
  }

  .cx-buy-panel {
    grid-column: 2 / 4;
  }
}

@media (max-width: 900px) {
  .single-product .cx-page > .cx-shell {
    padding: 0 22px;
  }

  .woocommerce div.product {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
  }

  .woocommerce div.product .summary,
  .cx-buy-panel,
  .cx-aplus {
    grid-column: 1 / -1;
  }

  .cx-product-visual,
  .cx-product-visual img,
  .cx-product-visual video {
    min-height: 430px;
  }

  .cx-pdp-guides,
  .cx-size-panel,
  .cx-aplus-hero {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .cx-size-notes {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  .single-product .cx-page > .cx-shell {
    padding: 0 18px;
  }

  .woocommerce div.product {
    display: grid;
    width: 100%;
    max-width: 100%;
    margin: 0;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .cx-pdp-thumbs {
    position: static;
    display: flex;
    order: 2;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .cx-pdp-thumb {
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
  }

  .cx-product-visual {
    order: 1;
  }

  .woocommerce div.product .summary {
    order: 3;
    margin-top: 12px !important;
  }

  .cx-buy-panel {
    order: 4;
    padding: 18px;
  }

  .cx-aplus {
    order: 5;
  }

  .cx-pdp-guides {
    order: 5;
  }

  .cx-size-panel {
    order: 6;
    padding: 20px;
  }

  .cx-aplus {
    order: 7;
  }

  .cx-product-visual,
  .cx-product-visual img,
  .cx-product-visual video {
    min-height: 340px;
  }

  .cx-image-chip {
    display: none;
  }

  .woocommerce div.product .product_title {
    font-size: clamp(26px, 7.6vw, 34px);
  }

  .cx-fit-card,
  .cx-compare-card,
  .cx-size-panel {
    padding: 20px;
  }

  .cx-media-expand {
    right: 12px;
    top: 12px;
  }

  .cx-lightbox-stage {
    width: 96vw;
    height: 78vh;
  }
}

@media (max-width: 760px) {
  .cx-sticky-buy {
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: 10px;
    padding: 10px 14px;
  }

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

  .cx-sticky-field {
    grid-template-columns: 1fr;
  }

  .cx-sticky-qty {
    display: none;
  }

  .cx-sticky-add {
    min-height: 42px;
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .cx-commerce-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cx-commerce-strip {
    display: grid;
  }

  .cx-strip-item {
    padding: 18px;
    min-height: 82px;
  }
}

/* v18 category rail fidelity fix */
.cx-category-rail .cx-shell {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
}

.cx-category-tile {
  flex: 1 1 0;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 42%);
  overflow: hidden;
}

.cx-category-tile > span {
  min-width: 0;
}

.cx-category-tile img {
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 190px;
  height: 124px;
  background: transparent;
}

.cx-category-tile strong,
.cx-category-tile span {
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .cx-category-rail .cx-shell {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cx-category-tile {
    grid-template-columns: minmax(0, 1fr) 92px;
  }
}

/* v30.1 richer product detail content */
.cx-scenario-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.cx-scenario-strip span {
  border: 1px solid rgba(18, 20, 23, .14);
  border-radius: 999px;
  padding: 7px 10px;
  background: #f8f7f3;
  color: #343a40;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.cx-aplus-media-grid,
.cx-proof-section {
  max-width: 1388px;
  margin: 0 auto;
  padding: 0 24px 42px;
}

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

.cx-aplus-media-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, .92fr);
  min-height: 360px;
  border: 1px solid var(--cx-line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.cx-aplus-media-card:first-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
}

.cx-aplus-media {
  display: grid;
  place-items: center;
  min-width: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(244,245,242,.9)),
    radial-gradient(circle at 50% 30%, rgba(140,149,159,.18), transparent 46%);
}

.cx-aplus-media img {
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: contain;
}

.cx-aplus-media-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 42px);
}

.cx-aplus-media-copy h3 {
  margin: 0;
  color: var(--cx-ink);
  font-size: clamp(25px, 2.25vw, 38px);
  line-height: 1.05;
  letter-spacing: 0;
}

.cx-aplus-media-copy p:last-child {
  margin-bottom: 0;
  color: #4d555d;
}

.cx-proof-section {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  gap: 22px;
  padding-top: 58px;
}

.cx-qa-panel,
.cx-review-panel {
  border: 1px solid var(--cx-line);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 36px);
  background: #fff;
}

.cx-qa-panel h2,
.cx-review-panel h2 {
  max-width: 680px;
  margin: 0 0 24px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.04;
  letter-spacing: 0;
}

.cx-qa-item {
  border-top: 1px solid var(--cx-line);
  padding: 18px 0;
}

.cx-qa-item:last-child {
  border-bottom: 1px solid var(--cx-line);
}

.cx-qa-item summary {
  cursor: pointer;
  color: var(--cx-ink);
  font-weight: 850;
  line-height: 1.28;
}

.cx-qa-item p {
  margin: 12px 0 0;
  color: #555e66;
}

.cx-review {
  margin: 0;
  padding: 22px 0;
  border-top: 1px solid var(--cx-line);
}

.cx-review:last-child {
  border-bottom: 1px solid var(--cx-line);
}

.cx-review blockquote {
  margin: 0;
  color: #30363b;
  font-size: 16px;
  line-height: 1.55;
}

.cx-review figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 14px;
  color: #69717a;
  font-size: 13px;
}

.cx-review figcaption strong {
  color: var(--cx-ink);
}

.cx-review figcaption span {
  color: #69717a;
}

.cx-customer-reviews {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, .36fr) minmax(0, .64fr);
  gap: 24px;
  margin-top: 46px;
  border: 1px solid var(--cx-line);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 38px);
  background: #fff;
}

.cx-reviews-head h2 {
  max-width: 520px;
  margin: 0 0 12px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.02;
  letter-spacing: 0;
}

.cx-reviews-head p:last-child {
  margin: 0;
  color: #59616a;
}

.cx-reviews-body #reviews {
  margin: 0;
}

.cx-reviews-body #comments h2,
.cx-reviews-body #review_form_wrapper .comment-reply-title {
  display: block;
  margin: 0 0 16px;
  color: var(--cx-ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
}

.cx-reviews-body .commentlist {
  margin: 0 0 24px !important;
  padding: 0 !important;
  list-style: none !important;
}

.cx-reviews-body .comment_container,
.cx-reviews-body .comment-text,
.cx-reviews-body #review_form {
  border: 1px solid var(--cx-line);
  border-radius: 8px;
  padding: 18px;
  background: #fbfaf7;
}

.cx-reviews-body .comment-form {
  display: grid;
  gap: 14px;
}

.cx-reviews-body .comment-form input,
.cx-reviews-body .comment-form textarea {
  width: 100%;
  border: 1px solid var(--cx-line);
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
}

.cx-reviews-body .form-submit .submit,
.cx-reviews-body #submit {
  border: 0;
  border-radius: 6px;
  padding: 12px 18px;
  background: var(--cx-signal);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

/* v30.5 conversion-led product storytelling */
.cx-pdp-guides {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 18px;
}

.cx-fit-card,
.cx-compare-card,
.cx-size-panel,
.cx-customer-reviews {
  box-shadow: none;
}

.cx-fit-card,
.cx-compare-card {
  position: relative;
  overflow: hidden;
}

.cx-fit-card::before,
.cx-compare-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--cx-signal);
}

.cx-aplus {
  border-top: 0;
  background: #fbfaf7;
}

.cx-aplus > .cx-aplus-section.cx-aplus-hero {
  max-width: 1388px;
  padding-top: 84px;
  padding-bottom: 74px;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .78fr);
}

.cx-aplus > .cx-aplus-section.cx-aplus-hero h2 {
  max-width: 820px;
  font-size: clamp(34px, 4.4vw, 58px);
}

.cx-aplus > .cx-aplus-section.cx-aplus-hero p {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.58;
}

.cx-aplus-image {
  background: #f3f1ec;
}

.cx-aplus-media-grid {
  gap: 16px;
}

.cx-aplus-media-card {
  border-radius: 6px;
  box-shadow: none;
  transition: transform .24s cubic-bezier(.16, 1, .3, 1), border-color .24s cubic-bezier(.16, 1, .3, 1);
}

.cx-aplus-media-card:hover {
  border-color: rgba(207, 79, 42, .36);
  transform: translateY(-2px);
}

.cx-aplus-media-copy h3 {
  max-width: 520px;
}

.cx-aplus-dark {
  margin-top: 22px;
  background: #1d2228;
}

.cx-aplus-dark .cx-aplus-section {
  max-width: 1388px;
}

.cx-proof-section {
  padding-top: 42px;
}

.cx-qa-panel,
.cx-review-panel {
  box-shadow: none;
}

.cx-aplus .cx-aplus-section:last-child {
  padding-top: 62px;
}

@media (max-width: 1180px) {
  .cx-aplus-media-grid {
    grid-template-columns: 1fr;
  }

  .cx-aplus-media-card,
  .cx-aplus-media-card:first-child {
    grid-column: auto;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .86fr);
  }
}

@media (max-width: 900px) {
  .cx-proof-section,
  .cx-customer-reviews {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cx-aplus-media-grid,
  .cx-proof-section,
  .cx-customer-reviews {
    padding-right: 18px;
    padding-left: 18px;
  }

  .cx-aplus-media-card,
  .cx-aplus-media-card:first-child {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .cx-aplus-media {
    min-height: 220px;
  }

  .cx-aplus-media img {
    max-height: 320px;
  }

  .cx-aplus-media-copy {
    padding: 22px;
  }

  .cx-scenario-strip {
    gap: 7px;
  }

  .cx-scenario-strip span {
    font-size: 11px;
  }
}

/* v27 taste-skill refinement: asymmetric commerce layout, restrained motion, and anti-default typography */
body {
  font-family: Outfit, "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
}

h1,
h2,
h3,
.cx-product-card .cx-card-title,
.cx-category-tile strong,
.woocommerce div.product .product_title {
  letter-spacing: -0.022em;
}

.cx-site-header {
  background: rgba(16, 18, 20, .96);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.08);
}

.cx-nav a {
  position: relative;
  transition: color .28s cubic-bezier(.16, 1, .3, 1);
}

.cx-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--cx-signal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .32s cubic-bezier(.16, 1, .3, 1);
}

.cx-nav a:hover::after,
.cx-nav a:focus::after,
.cx-nav a[aria-current="page"]::after,
.cx-nav a:first-child::after {
  transform: scaleX(1);
}

.cx-button,
.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.cx-promo-actions .cx-button,
.cx-sticky-add {
  transition:
    transform .28s cubic-bezier(.16, 1, .3, 1),
    background .28s cubic-bezier(.16, 1, .3, 1),
    border-color .28s cubic-bezier(.16, 1, .3, 1),
    box-shadow .28s cubic-bezier(.16, 1, .3, 1);
}

.cx-button:active,
.button:active,
.wp-element-button:active,
.woocommerce a.button:active,
.woocommerce button.button:active,
.woocommerce input.button:active,
.cx-promo-actions .cx-button:active,
.cx-sticky-add:active {
  transform: translateY(1px) scale(.985);
}

.cx-button:hover,
.button:hover,
.wp-element-button:hover,
.woocommerce a.button:hover,
.cx-promo-actions .cx-button:hover {
  background: #101214;
  box-shadow: 0 16px 30px -18px rgba(18, 20, 23, .42);
}

.cx-commerce-hero {
  background: #f2eee6;
}

.cx-hero-slide {
  min-height: min(680px, calc(100dvh - 70px));
}

.cx-hero-slide::after {
  background:
    linear-gradient(90deg, rgba(246,244,239,.98) 0%, rgba(246,244,239,.9) 26%, rgba(246,244,239,.42) 48%, rgba(246,244,239,0) 76%),
    linear-gradient(180deg, rgba(255,255,255,.42) 0%, rgba(255,255,255,0) 48%);
}

.cx-promo-panel {
  max-width: 500px;
}

.cx-promo-panel h1 {
  max-width: 520px;
  font-size: clamp(44px, 5.15vw, 68px);
  letter-spacing: -0.032em;
}

.cx-promo-panel p {
  max-width: 440px;
  color: #343b43;
}

.cx-promo-eyebrow,
.cx-kicker {
  color: #b95d36;
  letter-spacing: .14em;
}

.cx-commerce-strip {
  grid-template-columns: minmax(0, 1.32fr) repeat(2, minmax(0, 1fr));
  background: rgba(255,255,255,.94);
}

.cx-strip-item {
  position: relative;
  padding-block: 24px;
}

.cx-strip-item::before {
  border-color: rgba(18, 20, 23, .78);
  color: #101214;
  transform: translateZ(0);
}

.cx-category-rail {
  padding: 30px 0 38px;
}

.cx-category-rail .cx-shell {
  grid-template-columns: minmax(0, 1.28fr) repeat(2, minmax(0, .92fr));
  align-items: stretch;
}

.cx-category-tile {
  position: relative;
  border-color: rgba(18, 20, 23, .12);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,247,243,.92));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 18px 42px -34px rgba(18, 20, 23, .42);
  overflow: hidden;
  transform: translateZ(0);
  transition:
    transform .32s cubic-bezier(.16, 1, .3, 1),
    border-color .32s cubic-bezier(.16, 1, .3, 1),
    box-shadow .32s cubic-bezier(.16, 1, .3, 1);
}

.cx-category-tile:first-child {
  min-height: 188px;
}

.cx-category-tile::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(207,79,42,.72), transparent);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity .32s cubic-bezier(.16, 1, .3, 1), transform .32s cubic-bezier(.16, 1, .3, 1);
}

.cx-category-tile:hover {
  border-color: rgba(207, 79, 42, .28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.94),
    0 26px 54px -38px rgba(18, 20, 23, .5);
  transform: translateY(-3px);
}

.cx-category-tile:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.cx-product-showcase {
  padding: 64px 0 88px;
  background:
    linear-gradient(180deg, #fbfaf7 0%, #f5f2eb 100%);
}

.cx-showcase-head {
  align-items: start;
  margin-bottom: 30px;
}

.cx-showcase-head h2 {
  font-size: clamp(34px, 3.8vw, 54px);
  letter-spacing: -0.035em;
}

.cx-product-grid {
  grid-template-columns: minmax(0, 1.16fr) repeat(2, minmax(0, .92fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.cx-product-card {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 20px 46px -40px rgba(18, 20, 23, .44);
  transition:
    transform .32s cubic-bezier(.16, 1, .3, 1),
    border-color .32s cubic-bezier(.16, 1, .3, 1),
    box-shadow .32s cubic-bezier(.16, 1, .3, 1);
}

.cx-product-card:first-child {
  grid-row: span 2;
  min-height: 500px;
  padding: 18px;
}

.cx-product-card:nth-child(4) {
  grid-column: span 2;
}

.cx-product-card:first-child .cx-card-media {
  height: 290px;
}

.cx-product-card:first-child .cx-card-title {
  margin-top: 22px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.02;
}

.cx-product-card:first-child .cx-card-copy {
  max-width: 27ch;
  font-size: 14px;
}

.cx-product-card:hover {
  border-color: rgba(207, 79, 42, .28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 28px 56px -38px rgba(18, 20, 23, .55);
  transform: translateY(-3px);
}

.home .cx-section.dark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #1a1f25 0%, #20262d 54%, #15191e 100%);
}

.home .cx-section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, rgba(17,17,17,1) 18%, rgba(17,17,17,1) 82%, transparent);
  opacity: .42;
}

.home .cx-section.dark .cx-shell {
  position: relative;
}

.home .cx-section.dark .cx-split {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: start;
}

.home .cx-section.dark h2 {
  max-width: 680px;
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: -0.04em;
}

.cx-feature {
  border-bottom-color: rgba(255,255,255,.15);
}

.cx-feature-mark {
  border-radius: 4px;
  background: linear-gradient(135deg, #f8f9f9, #858e98);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}

.cx-feature strong {
  font-size: 17px;
}

.cx-band {
  background: #e5dfd4;
}

.cx-buy-panel {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.94),
    0 28px 70px -48px rgba(18,20,23,.55);
}

.woocommerce div.product .cx-buy-panel form.cart .single_add_to_cart_button,
.cx-sticky-add.is-ready {
  background: #cf4f2a !important;
}

.woocommerce div.product .product_title {
  letter-spacing: -0.036em;
}

.summary .cx-summary-badges span {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.84);
}

.cx-sticky-buy {
  border-top-color: rgba(18,20,23,.14);
  box-shadow: 0 -18px 60px -42px rgba(18,20,23,.55);
}

@keyframes cx-rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cx-category-tile,
.cx-product-card,
.cx-feature,
.cx-fit-card,
.cx-compare-card {
  animation: cx-rise-in .62s cubic-bezier(.16, 1, .3, 1) both;
}

.cx-category-tile:nth-child(2),
.cx-product-card:nth-child(2),
.cx-feature:nth-child(2) {
  animation-delay: .08s;
}

.cx-category-tile:nth-child(3),
.cx-product-card:nth-child(3),
.cx-feature:nth-child(3) {
  animation-delay: .16s;
}

.cx-product-card:nth-child(4) {
  animation-delay: .22s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 900px) {
  .cx-commerce-strip,
  .cx-category-rail .cx-shell,
  .cx-product-grid,
  .home .cx-section.dark .cx-split {
    grid-template-columns: 1fr;
  }

  .cx-product-card:first-child,
  .cx-product-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }

  .cx-product-card:first-child .cx-card-media {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .cx-hero-slide {
    min-height: calc(100dvh - 68px);
  }

  .cx-promo-panel h1 {
    font-size: clamp(40px, 12vw, 48px);
  }

  .cx-commerce-strip {
    display: grid;
  }

  .cx-strip-item {
    grid-template-columns: 42px 1fr;
    padding: 18px;
  }

  .cx-category-tile {
    grid-template-columns: minmax(0, 1fr) 96px;
  }

  .cx-product-card:first-child .cx-card-title {
    font-size: 22px;
  }
}

/* v28 correction: force the taste layout after legacy homepage fixes */
.cx-category-rail .cx-shell {
  display: grid !important;
  grid-template-columns: minmax(0, 1.34fr) repeat(2, minmax(0, .88fr)) !important;
  gap: 18px;
}

.cx-category-tile {
  width: auto;
}

.cx-category-tile:first-of-type {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 46%);
}

.cx-product-grid .cx-product-card:nth-of-type(4) {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(210px, 1fr);
  align-items: center;
  gap: 0 22px;
}

.cx-product-grid .cx-product-card:nth-of-type(4) .cx-card-media {
  grid-column: 2;
  grid-row: 1 / span 5;
  height: 220px;
}

.cx-product-grid .cx-product-card:nth-of-type(4) .cx-card-title,
.cx-product-grid .cx-product-card:nth-of-type(4) .cx-card-copy,
.cx-product-grid .cx-product-card:nth-of-type(4) .price,
.cx-product-grid .cx-product-card:nth-of-type(4) .cx-stars {
  grid-column: 1;
}

@media (max-width: 900px) {
  .cx-category-rail .cx-shell {
    grid-template-columns: 1fr !important;
  }

  .cx-category-tile:first-of-type {
    grid-template-columns: minmax(0, 1fr) 140px;
  }

  .cx-product-grid .cx-product-card:nth-of-type(4) {
    grid-column: auto;
    display: block;
  }

  .cx-product-grid .cx-product-card:nth-of-type(4) .cx-card-media {
    height: 180px;
  }
}

@media (max-width: 640px) {
  .cx-category-tile:first-of-type {
    grid-template-columns: minmax(0, 1fr) 96px;
  }
}

/* v28.1 homepage QA fixes: remove editor layout artifacts and tighten mobile composition */
.cx-category-rail .cx-shell > br,
.cx-category-rail .cx-shell > p:empty {
  display: none !important;
}

.cx-category-rail .cx-shell {
  grid-auto-flow: column;
}

.cx-category-tile {
  min-height: 184px;
}

.cx-product-card .cx-card-media,
.cx-product-card img {
  background: #fff;
}

.cx-product-card .cx-card-media {
  border: 1px solid rgba(18, 20, 23, .06);
}

.cx-product-card .cx-card-media img {
  padding: 10px;
}

.home .cx-section.dark {
  scroll-margin-top: 86px;
}

@media (max-width: 900px) {
  .cx-category-rail .cx-shell {
    grid-auto-flow: row;
  }
}

@media (max-width: 640px) {
  .cx-hero-slide {
    min-height: 650px;
  }

  .cx-hero-slide-media img {
    object-position: 64% center;
  }

  .cx-hero-slide::after {
    background:
      linear-gradient(180deg, rgba(246, 244, 239, .2) 0%, rgba(246, 244, 239, .72) 42%, rgba(246, 244, 239, .98) 100%),
      linear-gradient(90deg, rgba(246, 244, 239, .96) 0%, rgba(246, 244, 239, .7) 42%, rgba(246, 244, 239, .1) 100%);
  }

  .cx-promo-panel {
    padding: 180px 0 62px;
  }

  .cx-promo-panel h1 {
    max-width: 10ch;
    font-size: clamp(38px, 11vw, 46px);
    line-height: .94;
  }

  .cx-promo-panel p {
    max-width: 31ch;
    font-size: 16px;
    line-height: 1.45;
  }

  .cx-category-rail {
    padding-bottom: 34px;
  }

  .cx-category-tile,
  .cx-category-tile:first-of-type {
    grid-template-columns: minmax(0, 1fr) minmax(92px, 30%);
    min-height: 162px;
  }

  .cx-category-tile img {
    max-width: 112px;
    height: 112px;
  }

  .cx-product-showcase {
    padding-top: 54px;
  }

  .cx-product-card .cx-card-media,
  .cx-product-card:first-child .cx-card-media,
  .cx-product-grid .cx-product-card:nth-of-type(4) .cx-card-media {
    height: 210px;
  }

  .home .cx-section.dark {
    padding: 70px 0 76px;
  }

  .home .cx-section.dark h2 {
    max-width: 10ch;
    font-size: clamp(38px, 11vw, 46px);
    line-height: .98;
  }

  .home .cx-section.dark .cx-feature-list {
    margin-top: 36px;
  }
}

/* v30 category rail repair: stable ecommerce layout, no intentional stagger */
.home .cx-category-rail {
  padding: 28px 0 46px;
}

.home .cx-category-rail .cx-shell {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-auto-flow: row !important;
  gap: 18px !important;
  align-items: stretch;
}

.home .cx-category-rail .cx-shell > br,
.home .cx-category-rail .cx-shell > p:empty {
  display: none !important;
}

.home .cx-category-tile,
.home .cx-category-tile:first-of-type {
  grid-column: auto !important;
  grid-row: auto !important;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 122px !important;
  gap: 16px;
  align-items: center;
  min-height: 176px;
  width: auto;
  padding: 22px 20px;
  transform: none;
}

.home .cx-category-tile img,
.home .cx-category-tile:first-of-type img {
  justify-self: end;
  width: 122px;
  max-width: 122px;
  height: 122px;
  object-fit: contain;
}

.home .cx-category-tile strong {
  font-size: clamp(19px, 1.7vw, 22px);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.home .cx-category-tile span {
  max-width: 24ch;
}

@media (max-width: 1120px) {
  .home .cx-category-rail .cx-shell {
    gap: 14px !important;
  }

  .home .cx-category-tile,
  .home .cx-category-tile:first-of-type {
    grid-template-columns: minmax(0, 1fr) 104px !important;
    min-height: 168px;
    padding: 20px 18px;
  }

  .home .cx-category-tile img,
  .home .cx-category-tile:first-of-type img {
    width: 104px;
    max-width: 104px;
    height: 104px;
  }
}

@media (max-width: 900px) {
  .home .cx-category-rail .cx-shell {
    grid-template-columns: 1fr !important;
  }

  .home .cx-category-tile,
  .home .cx-category-tile:first-of-type {
    grid-template-columns: minmax(0, 1fr) minmax(104px, 30%) !important;
    min-height: 156px;
  }
}
