/*
 * A2TDEV Store Editorial System — Upgrade 03
 * Canonical store skin derived from the homepage visual language.
 * Loaded after a2t_design_foundation.css and intentionally replaces the
 * historical Products/Product Detail presentation on migrated routes.
 */

:root {
  --store-ink: #0b0f12;
  --store-ink-2: #111817;
  --store-ink-3: #17201e;
  --store-paper: #f2f1eb;
  --store-warm: #e7e3d8;
  --store-accent: #c8f34f;
  --store-accent-hover: #ddff7d;
  --store-green: #1f5545;
  --store-dark-text: #f2f4ef;
  --store-white: #f4f5f0;
  --store-dark-copy: #98a39e;
  --store-dark-muted: #74817b;
  --store-dark-line: #35403c;
  --store-dark-line-strong: #53615a;
  --store-paper-text: #111619;
  --store-paper-copy: #65706c;
  --store-paper-line: rgba(11, 15, 18, .16);
  --store-sans: "Manrope", sans-serif;
  --store-mono: "DM Mono", monospace;
}

body.products-page-body,
body.product-detail-body,
body.store-compact-page-body {
  background: var(--store-ink) !important;
  color: var(--store-dark-text) !important;
}

body.products-page-body .x-content,
body.product-detail-body .x-content,
body.store-compact-page-body .x-content,
body .x-content:has(#a2t-products),
body .x-content:has(.store-compact-page) {
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  background: var(--store-ink) !important;
}

#a2t-products,
.store-compact-page {
  --pm-bg: var(--store-ink);
  --pm-surface: var(--store-ink-2);
  --pm-surface-2: var(--store-ink-3);
  --pm-text: var(--store-dark-text);
  --pm-muted: var(--store-dark-copy);
  --pm-line: var(--store-dark-line);
  --pm-line-strong: var(--store-dark-line-strong);
  --pm-blue: var(--store-accent);
  --pm-blue-dark: var(--store-accent-hover);
  --pm-green: var(--store-accent);
  --pm-black: var(--store-ink);
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  color: var(--store-dark-text);
  font-family: var(--store-sans);
  background: var(--store-ink);
}

#a2t-products *,
#a2t-products *::before,
#a2t-products *::after,
.store-compact-page *,
.store-compact-page *::before,
.store-compact-page *::after {
  box-sizing: border-box;
}

#a2t-products a,
.store-compact-page a {
  color: inherit;
  text-decoration: none;
}

#a2t-products button,
#a2t-products input,
#a2t-products textarea,
.store-compact-page button,
.store-compact-page input,
.store-compact-page textarea {
  font: inherit;
}

#a2t-products img,
.store-compact-page img {
  display: block;
  max-width: 100%;
}

#a2t-products :focus-visible,
.store-compact-page :focus-visible {
  outline: 2px solid var(--store-accent) !important;
  outline-offset: 3px !important;
}

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

/* ---------- Products hero ---------- */
.a2t-store-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 96px;
  background:
    radial-gradient(circle at 82% 24%, rgba(200, 243, 79, .07), transparent 29%),
    var(--store-ink);
  border-bottom: 1px solid var(--store-dark-line);
}

.a2t-store-shell,
#a2t-products .pm-layout,
#a2t-products .pm-standards-shell,
.product-detail-body .pd-v6-shell,
.store-compact-page {
  width: min(var(--a2t-container), calc(100% - 80px));
  max-width: var(--a2t-container);
  margin-inline: auto;
}

.a2t-store-hero .pm-breadcrumb,
#a2t-products .pd-v6-breadcrumb,
.store-compact-page .pm-breadcrumb {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 68px;
  color: #68746f;
  font: 500 9px/1.4 var(--store-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.a2t-store-hero .pm-breadcrumb a,
#a2t-products .pd-v6-breadcrumb a,
.store-compact-page .pm-breadcrumb a {
  color: #7b8781 !important;
  transition: color .2s ease;
}

.a2t-store-hero .pm-breadcrumb a:hover,
#a2t-products .pd-v6-breadcrumb a:hover,
.store-compact-page .pm-breadcrumb a:hover {
  color: var(--store-accent) !important;
}

.a2t-store-hero .pm-breadcrumb i,
#a2t-products .pd-v6-breadcrumb i,
.store-compact-page .pm-breadcrumb i {
  color: #394540;
  font-size: 8px;
}

.a2t-store-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(360px, .68fr);
  gap: clamp(64px, 6vw, 112px);
  align-items: end;
}

.a2t-store-kicker,
.a2t-store-catalog-head > span,
.store-compact-hero > div > span,
.pm-standards-kicker,
.pd-v6-kicker,
.pd-v6-related-type,
.pd-v10-card-head > div:last-child > p:first-child {
  display: inline-block;
  color: var(--store-accent) !important;
  font: 500 9px/1.4 var(--store-mono) !important;
  letter-spacing: .13em !important;
  text-transform: uppercase !important;
}

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

.a2t-store-hero h1 {
  max-width: 940px;
  margin: 22px 0 0;
  color: #f1f3ef;
  font-size: clamp(58px, 6.6vw, 98px);
  font-weight: 600;
  line-height: .91;
  letter-spacing: -.065em;
}

.a2t-store-hero-copy > p:not(.a2t-store-kicker) {
  max-width: 760px;
  margin: 32px 0 0;
  color: #9ca7a3;
  font-size: 17px;
  line-height: 1.68;
}

.a2t-store-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.a2t-store-button,
#a2t-products .pm-side-action,
#a2t-products .pm-card-action,
.product-detail-body .pd-v6-btn,
.store-compact-card-actions button,
.store-compact-card-actions a {
  display: inline-flex !important;
  min-height: 46px !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 18px !important;
  padding: 0 17px !important;
  border: 1px solid var(--store-dark-line-strong) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #e7ece8 !important;
  box-shadow: none !important;
  font: 500 9px/1 var(--store-mono) !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  white-space: nowrap;
  transition: border-color .22s ease, color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease !important;
}

.a2t-store-button:focus-visible,
#a2t-products .pm-side-action:focus-visible,
#a2t-products .pm-card-action:focus-visible,
.product-detail-body .pd-v6-btn:focus-visible,
.store-compact-card-actions button:focus-visible,
.store-compact-card-actions a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(200, 243, 79, .18), 0 0 0 1px rgba(200, 243, 79, .62) !important;
}

.a2t-store-button:active,
#a2t-products .pm-side-action:active,
#a2t-products .pm-card-action:active,
.product-detail-body .pd-v6-btn:active,
.store-compact-card-actions button:active,
.store-compact-card-actions a:active {
  transform: none !important;
}


.a2t-store-button,
#a2t-products .pm-side-action,
#a2t-products .pm-card-action,
.product-detail-body .pd-v6-btn {
  transform: none !important;
}

.a2t-store-button:hover,
.a2t-store-button:focus-visible,
.a2t-store-button:active,
#a2t-products .pm-side-action:hover,
#a2t-products .pm-side-action:focus-visible,
#a2t-products .pm-side-action:active,
#a2t-products .pm-card-action:hover,
#a2t-products .pm-card-action:focus-visible,
#a2t-products .pm-card-action:active,
.product-detail-body .pd-v6-btn:hover,
.product-detail-body .pd-v6-btn:focus-visible,
.product-detail-body .pd-v6-btn:active {
  transform: none !important;
}

.a2t-store-button .a2t-motion-arrow,
#a2t-products .pm-side-action .a2t-motion-arrow,
#a2t-products .pm-card-action .a2t-motion-arrow,
.product-detail-body .pd-v6-btn .a2t-motion-arrow {
  display: inline-block;
  transition: transform .2s ease;
}

.a2t-store-button:hover .a2t-motion-arrow.is-ne,
#a2t-products .pm-side-action:hover .a2t-motion-arrow.is-ne,
#a2t-products .pm-card-action:hover .a2t-motion-arrow.is-ne,
.product-detail-body .pd-v6-btn:hover .a2t-motion-arrow.is-ne { transform: translate(2px,-2px); }
.a2t-store-button:hover .a2t-motion-arrow.is-east,
#a2t-products .pm-side-action:hover .a2t-motion-arrow.is-east,
#a2t-products .pm-card-action:hover .a2t-motion-arrow.is-east,
.product-detail-body .pd-v6-btn:hover .a2t-motion-arrow.is-east { transform: translateX(3px); }
.a2t-store-button:hover .a2t-motion-arrow.is-south,
#a2t-products .pm-side-action:hover .a2t-motion-arrow.is-south,
#a2t-products .pm-card-action:hover .a2t-motion-arrow.is-south,
.product-detail-body .pd-v6-btn:hover .a2t-motion-arrow.is-south { transform: translateY(3px); }

.a2t-store-button:hover,
#a2t-products .pm-side-action:hover,
#a2t-products .pm-card-action:hover,
.product-detail-body .pd-v6-btn:hover,
.store-compact-card-actions button:hover,
.store-compact-card-actions a:hover {
  transform: none !important;
  border-color: var(--store-accent) !important;
  color: var(--store-accent) !important;
}

.a2t-store-button.is-primary,
#a2t-products .pm-action-primary,
#a2t-products .pm-card-action.primary,
.product-detail-body .pd-v6-btn-primary,
.store-compact-card-actions .is-primary {
  border-color: var(--store-accent) !important;
  background: var(--store-accent) !important;
  color: var(--store-ink) !important;
}

.a2t-store-button.is-primary:hover,
#a2t-products .pm-action-primary:hover,
#a2t-products .pm-card-action.primary:hover,
.product-detail-body .pd-v6-btn-primary:hover {
  border-color: var(--store-accent-hover) !important;
  background: var(--store-accent-hover) !important;
  color: var(--store-ink) !important;
}

#a2t-products .a2t-store-actions .a2t-store-button {
  min-height: 48px !important;
  gap: 28px !important;
  padding: 0 18px !important;
  font-size: 10px !important;
}

#a2t-products .a2t-store-actions .a2t-store-button.is-quiet {
  min-height: auto !important;
  padding: 12px 0 !important;
  border-color: transparent !important;
  background: transparent !important;
  color: #c2c8c5 !important;
}

#a2t-products .a2t-store-actions .a2t-store-button.is-quiet > span {
  color: var(--store-accent);
}

#a2t-products .a2t-store-actions .a2t-store-button.is-quiet:hover {
  border-color: transparent !important;
  background: transparent !important;
  color: #f3f5f0 !important;
}

.a2t-store-hero-system {
  align-self: end;
  padding: 18px 0 0;
  border-top: 1px solid rgba(200, 243, 79, .46);
  border-bottom: 1px solid var(--store-dark-line);
}

.a2t-store-hero-system > span {
  display: block;
  margin-bottom: 10px;
  color: #7f8b87;
  font: 500 8px/1.4 var(--store-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.a2t-store-featured-slide {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 15px;
  align-items: center;
  min-height: 94px;
  padding: 14px 0;
}

.a2t-store-featured-slide + .a2t-store-featured-slide {
  border-top: 1px solid var(--store-dark-line);
}

.a2t-store-featured-slide-media {
  width: 72px;
  height: 66px;
  overflow: hidden;
  border: 1px solid var(--store-dark-line);
  border-radius: 3px;
  background: var(--store-ink-3);
}

.a2t-store-featured-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.a2t-store-featured-slide-media span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--store-accent);
  font: 15px var(--store-mono);
}

.a2t-store-featured-slide small,
.a2t-store-featured-slide strong,
.a2t-store-featured-slide em {
  display: block;
}

.a2t-store-featured-slide small {
  margin-bottom: 5px;
  color: var(--store-accent);
  font: 500 7px/1.4 var(--store-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.a2t-store-featured-slide strong {
  color: #e2e7e2;
  font-size: 13px;
  font-weight: 600;
}

.a2t-store-featured-slide em {
  margin-top: 5px;
  color: #7f8b87;
  font: 400 8px/1.5 var(--store-mono);
  font-style: normal;
}

.a2t-store-system-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 14px 0;
  border-top: 1px solid var(--store-dark-line);
}

.a2t-store-system-facts span {
  padding: 5px 7px;
  border: 1px solid #37413e;
  color: #788480;
  font: 400 7px/1 var(--store-mono);
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* ---------- Catalog ---------- */
#a2t-products .pm-layout {
  display: grid !important;
  grid-template-columns: 278px minmax(0, 1fr) !important;
  gap: 44px !important;
  align-items: start !important;
  padding: 76px 0 112px !important;
}

#a2t-products .pm-main {
  min-width: 0;
}

.a2t-store-catalog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--store-dark-line);
}

.a2t-store-catalog-head > div h2 {
  max-width: 680px;
  margin: 13px 0 0;
  color: #eef2ee;
  font-size: clamp(34px, 4.1vw, 58px);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.055em;
}

.a2t-store-catalog-count {
  padding-bottom: 4px;
  color: #79857f;
  font: 400 9px/1.5 var(--store-mono);
  letter-spacing: .07em;
  text-align: right;
  text-transform: uppercase;
}

#a2t-products .pm-sidebar {
  position: sticky !important;
  top: 96px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  width: 100% !important;
  max-height: calc(100vh - 112px) !important;
  overflow: auto !important;
  padding: 0 2px 2px 0 !important;
  scrollbar-width: thin;
  scrollbar-color: #45524b transparent;
}

#a2t-products .pm-side-card {
  padding: 19px !important;
  border: 1px solid var(--store-dark-line) !important;
  border-radius: 0 !important;
  background: var(--store-ink-2) !important;
  color: var(--store-dark-text) !important;
  box-shadow: none !important;
}

#a2t-products .pm-cart-top,
#a2t-products .pm-cart-total,
#a2t-products .pm-card-title,
#a2t-products .pm-product-meta,
#a2t-products .pm-product-footer,
#a2t-products .pm-catalog-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

#a2t-products .pm-cart-top span,
#a2t-products .pm-cart-total span,
#a2t-products .pm-card-title span,
#a2t-products .pm-card-title h2,
#a2t-products .pm-side-icon,
#a2t-products .pm-side-empty {
  color: #839089 !important;
  font-family: var(--store-mono) !important;
}

#a2t-products .pm-cart-top span {
  display: block;
  margin-bottom: 5px;
  font-size: 8px !important;
  letter-spacing: .1em;
  text-transform: uppercase;
}

#a2t-products .pm-cart-top strong {
  color: #eef2ee !important;
  font-size: 21px !important;
  font-weight: 600 !important;
  letter-spacing: -.035em !important;
}

#a2t-products .pm-cart-button {
  position: relative;
  width: 42px !important;
  height: 42px !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid var(--store-accent) !important;
  border-radius: 3px !important;
  background: transparent !important;
  color: var(--store-accent) !important;
  box-shadow: none !important;
}

#a2t-products .pm-cart-button b {
  position: absolute !important;
  top: -7px !important;
  right: -7px !important;
  min-width: 20px !important;
  height: 20px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 5px !important;
  border: 2px solid var(--store-ink-2) !important;
  border-radius: 50% !important;
  background: var(--store-accent) !important;
  color: var(--store-ink) !important;
  font: 600 8px/1 var(--store-mono) !important;
}

#a2t-products .pm-cart-total {
  margin: 16px 0 !important;
  padding: 13px 0 !important;
  border-top: 1px solid var(--store-dark-line) !important;
  border-bottom: 1px solid var(--store-dark-line) !important;
  font-size: 11px !important;
}

#a2t-products .pm-cart-total strong {
  color: #fff !important;
  font: 500 13px/1 var(--store-mono) !important;
}

#a2t-products .pm-card-title {
  padding-bottom: 13px;
  border-bottom: 1px solid var(--store-dark-line);
}

#a2t-products .pm-card-title h2 {
  margin: 0 !important;
  color: #d7ddd9 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: .02em !important;
  text-transform: uppercase;
}

#a2t-products .pm-card-title span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #29342f;
  font-size: 8px;
}

#a2t-products .pm-category-list {
  display: grid !important;
  margin-top: 8px;
}

#a2t-products .pm-category-list a {
  display: flex !important;
  min-height: 42px !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  padding: 0 10px !important;
  border: 0 !important;
  border-radius: 2px !important;
  color: #aeb8b2 !important;
  font-size: 11px !important;
  transition: background .2s ease, color .2s ease, padding .2s ease;
}

#a2t-products .pm-category-list a > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

#a2t-products .pm-category-list a i {
  width: 14px;
  color: #728078;
  text-align: center;
}

#a2t-products .pm-category-list a small {
  color: #718078 !important;
  font: 400 8px/1 var(--store-mono) !important;
}

#a2t-products .pm-category-list a:hover {
  padding-left: 14px !important;
  background: rgba(200, 243, 79, .05) !important;
  color: #eef2ee !important;
}

#a2t-products .pm-category-list a.active {
  background: var(--store-accent) !important;
  color: var(--store-ink) !important;
}

#a2t-products .pm-category-list a.active i,
#a2t-products .pm-category-list a.active small {
  color: var(--store-ink) !important;
}

#a2t-products .pm-custom-card {
  margin-top: auto;
}

#a2t-products .pm-custom-card .pm-side-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border: 1px solid var(--store-dark-line-strong);
  color: var(--store-accent) !important;
}

#a2t-products .pm-custom-card h2 {
  margin: 0 0 9px !important;
  color: #e5e9e5 !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  letter-spacing: -.045em !important;
}

#a2t-products .pm-custom-card p {
  margin: 0 0 18px !important;
  color: #85918b !important;
  font-size: 11px !important;
  line-height: 1.6 !important;
}

#a2t-products .pm-controls {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin-bottom: 24px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#a2t-products .pm-sort-tabs {
  display: flex !important;
  gap: 7px !important;
}

#a2t-products .pm-sort-tabs a,
#a2t-products .pm-pagination a,
#a2t-products .pm-pagination span {
  display: inline-flex !important;
  min-height: 40px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 13px !important;
  border: 1px solid var(--store-dark-line-strong) !important;
  border-radius: 3px !important;
  background: rgba(17, 24, 23, .35) !important;
  color: #cbd4ce !important;
  font: 500 8px/1 var(--store-mono) !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
}

#a2t-products .pm-sort-tabs a:hover,
#a2t-products .pm-sort-tabs a.active,
#a2t-products .pm-pagination a:hover,
#a2t-products .pm-pagination .current {
  border-color: var(--store-accent) !important;
  background: rgba(200, 243, 79, .08) !important;
  color: var(--store-accent) !important;
}

#a2t-products .pm-search {
  position: relative !important;
  width: min(390px, 46%) !important;
  height: 46px !important;
  display: grid !important;
  grid-template-columns: 38px minmax(0, 1fr) auto !important;
  align-items: stretch !important;
  overflow: hidden !important;
  border: 1px solid var(--store-dark-line) !important;
  border-radius: 3px !important;
  background: rgba(17, 24, 23, .35) !important;
}

#a2t-products .pm-search > i {
  position: static !important;
  display: grid !important;
  place-items: center !important;
  color: var(--store-accent) !important;
  font-size: 12px !important;
  transform: none !important;
}

#a2t-products .pm-search input {
  width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  padding: 0 10px 0 0 !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  color: #f1f4f1 !important;
  box-shadow: none !important;
  font-size: 12px !important;
}

#a2t-products .pm-search input::placeholder {
  color: #6f7c75 !important;
}

#a2t-products .pm-search button {
  height: 100% !important;
  padding: 0 14px !important;
  border: 0 !important;
  border-left: 1px solid var(--store-dark-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #9eaaa5 !important;
  box-shadow: none !important;
  font: 500 8px/1 var(--store-mono) !important;
  letter-spacing: .07em !important;
  text-transform: uppercase !important;
}

#a2t-products .pm-search button:hover {
  background: var(--store-accent) !important;
  color: var(--store-ink) !important;
}

#a2t-products .pm-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -4px 0 20px;
}

#a2t-products .pm-active-filters span,
#a2t-products .pm-active-filters a {
  padding: 7px 9px;
  border: 1px solid var(--store-dark-line);
  color: #89968f !important;
  font: 400 8px/1 var(--store-mono);
  letter-spacing: .05em;
  text-transform: uppercase;
}

#a2t-products .pm-active-filters a {
  color: var(--store-accent) !important;
}

#a2t-products .pm-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 15px !important;
}

#a2t-products .pm-product {
  display: grid !important;
  grid-template-columns: minmax(245px, 40%) minmax(0, 1fr) !important;
  min-height: 292px !important;
  overflow: hidden !important;
  border: 1px solid var(--store-dark-line) !important;
  border-radius: 0 !important;
  background: var(--store-ink-2) !important;
  color: var(--store-dark-text) !important;
  box-shadow: none !important;
  transition: border-color .22s ease, background .22s ease !important;
}

#a2t-products .pm-product:hover {
  transform: none !important;
  border-color: var(--store-dark-line-strong) !important;
  background: #131b19 !important;
  box-shadow: none !important;
}

#a2t-products .pm-product-media {
  position: relative !important;
  min-height: 292px !important;
  overflow: hidden !important;
  border: 0 !important;
  border-right: 1px solid var(--store-dark-line) !important;
  border-radius: 0 !important;
  background: #182923 !important;
}

#a2t-products .pm-product-media::after {
  content: "";
  position: absolute;
  inset: 38% -10% -12%;
  z-index: 1;
  pointer-events: none;
  opacity: .42;
  background:
    linear-gradient(155deg, transparent 20%, rgba(200,243,79,.7) 20.5%, rgba(200,243,79,.04) 49%, transparent 49.5%),
    linear-gradient(165deg, transparent 33%, #8b9e96 33.5%, rgba(142,157,149,.1) 68%, transparent 68.5%);
}

#a2t-products .pm-product-media > img {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform .45s ease, filter .3s ease !important;
}

#a2t-products .pm-product:hover .pm-product-media > img {
  transform: scale(1.025) !important;
}

#a2t-products .pm-product-fallback {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: 19px !important;
  background: #17241f !important;
  color: #dce3dd !important;
}

#a2t-products .pm-fallback-brand {
  color: var(--store-accent) !important;
  font: 500 9px/1 var(--store-mono) !important;
  letter-spacing: .1em !important;
}

#a2t-products .pm-fallback-title {
  position: relative;
  z-index: 2;
  margin-top: auto;
  color: #e9eeea !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  letter-spacing: -.055em !important;
}

#a2t-products .pm-mock-window {
  position: absolute !important;
  inset: 26% 10% 10% !important;
  padding: 15px !important;
  border: 1px solid #486152 !important;
  border-radius: 2px !important;
  background: rgba(9, 17, 15, .65) !important;
}

#a2t-products .pm-mock-dots {
  display: flex;
  gap: 5px;
}

#a2t-products .pm-mock-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #536b5d;
}

#a2t-products .pm-mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 28px;
}

#a2t-products .pm-mock-grid :is(i, b) {
  display: block;
  height: 38px;
  border: 1px solid #486152;
  background: rgba(200,243,79,.06);
}

#a2t-products .pm-product-body {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  padding: 21px 22px 20px !important;
}

#a2t-products .pm-product-meta {
  gap: 12px;
  margin: 0 !important;
}

#a2t-products .pm-product-category,
#a2t-products .pm-product-status {
  padding: 5px 7px !important;
  border: 1px solid transparent !important;
  border-radius: 2px !important;
  background: rgba(200,243,79,.08) !important;
  color: var(--store-accent) !important;
  font: 500 7px/1 var(--store-mono) !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

#a2t-products .pm-product-status {
  margin-left: auto;
  border-color: var(--store-dark-line) !important;
  background: transparent !important;
  color: #a7b2ac !important;
}

#a2t-products .pm-product-status.off {
  color: #78847e !important;
}

#a2t-products .pm-product h2 {
  margin: 20px 0 10px !important;
  color: #eef2ee !important;
  font-size: clamp(23px, 2.2vw, 31px) !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: -.05em !important;
}

#a2t-products .pm-product h2 a {
  color: inherit !important;
}

#a2t-products .pm-product-body > p {
  min-height: 44px !important;
  margin: 0 !important;
  color: #8e9a94 !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
}

#a2t-products .pm-product-stats {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 15px !important;
  margin-top: 18px !important;
  padding: 13px 0 !important;
  border-top: 1px solid var(--store-dark-line) !important;
  border-bottom: 1px solid var(--store-dark-line) !important;
  color: #84918b !important;
}

#a2t-products .pm-product-stats span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  color: inherit !important;
  font: 400 8px/1 var(--store-mono) !important;
}

#a2t-products .pm-product-stats i {
  color: #74817a !important;
  font-size: 9px !important;
}

#a2t-products .pm-stat-rating i {
  color: var(--store-accent) !important;
}

#a2t-products .pm-product-stats strong,
#a2t-products .pm-product-stats small {
  color: inherit !important;
  font: inherit !important;
}

#a2t-products .pm-product-footer {
  gap: 18px;
  margin-top: auto !important;
  padding-top: 18px !important;
}

#a2t-products .pm-price {
  display: flex !important;
  align-items: baseline !important;
  gap: 9px !important;
}

#a2t-products .pm-price strong {
  color: #fff !important;
  font: 500 17px/1 var(--store-mono) !important;
}

#a2t-products .pm-price small {
  color: #748079 !important;
  font: 400 10px/1 var(--store-mono) !important;
  text-decoration: line-through;
}

#a2t-products .pm-product-actions {
  display: flex !important;
  gap: 7px !important;
}

#a2t-products .pm-product-actions form {
  margin: 0 !important;
}

#a2t-products .pm-product-actions .pm-card-action {
  min-height: 38px !important;
  padding-inline: 12px !important;
}

#a2t-products .pm-card-action.disabled {
  opacity: .45 !important;
  pointer-events: none;
}

#a2t-products .pm-empty {
  padding: 60px 30px !important;
  border: 1px solid var(--store-dark-line) !important;
  border-radius: 3px !important;
  background: var(--store-ink-2) !important;
  text-align: center !important;
}

#a2t-products .pm-empty-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  border: 1px solid var(--store-dark-line-strong);
  color: var(--store-accent);
}

#a2t-products .pm-empty h2 {
  margin: 0 0 10px;
  color: #edf1ed;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -.05em;
}

#a2t-products .pm-empty p {
  max-width: 500px;
  margin: 0 auto;
  color: #8c9892;
}

#a2t-products .pm-empty-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

#a2t-products .pm-catalog-footer {
  gap: 20px;
  margin-top: 28px !important;
  padding-top: 22px !important;
  border-top: 1px solid var(--store-dark-line) !important;
}

#a2t-products .pm-catalog-footer p {
  margin: 0 !important;
  color: #74817a !important;
  font: 400 8px/1.5 var(--store-mono) !important;
  letter-spacing: .05em;
  text-transform: uppercase;
}

#a2t-products .pm-pagination {
  display: flex;
  gap: 6px;
}

#a2t-products .pm-pagination a,
#a2t-products .pm-pagination span {
  min-width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  padding: 0 8px !important;
}

#a2t-products .pm-pagination .gap {
  border-color: transparent !important;
  background: transparent !important;
  color: #68756e !important;
}

#a2t-products .pm-mobile-filter-rail {
  display: none;
}

/* ---------- Production standards: warm homepage rhythm ---------- */
#a2t-products .pm-production-standards {
  position: relative;
  padding: 118px 0 126px !important;
  background: var(--store-warm) !important;
  color: var(--store-paper-text) !important;
}

#a2t-products .pm-standards-shell {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 84px;
}

#a2t-products .pm-standards-intro {
  align-self: start;
  position: sticky;
  top: 110px;
}

#a2t-products .pm-standards-kicker {
  color: var(--store-green) !important;
}

#a2t-products .pm-standards-intro h2 {
  margin: 24px 0 22px !important;
  color: var(--store-paper-text) !important;
  font-size: clamp(42px, 5vw, 70px) !important;
  font-weight: 600 !important;
  line-height: .96 !important;
  letter-spacing: -.06em !important;
}

#a2t-products .pm-standards-intro p {
  max-width: 480px;
  margin: 0 !important;
  color: #65706c !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

#a2t-products .pm-standards-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 30px !important;
  color: var(--store-green) !important;
  font: 500 9px/1 var(--store-mono) !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

#a2t-products .pm-standards-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 !important;
  border-top: 1px solid var(--store-paper-line) !important;
}

#a2t-products .pm-standard-card {
  min-height: 220px !important;
  padding: 24px 22px !important;
  border: 0 !important;
  border-right: 1px solid var(--store-paper-line) !important;
  border-bottom: 1px solid var(--store-paper-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#a2t-products .pm-standard-card:nth-child(even) {
  border-right: 0 !important;
}

#a2t-products .pm-standard-card > span {
  width: 35px !important;
  height: 35px !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid rgba(31, 85, 69, .38) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--store-green) !important;
}

#a2t-products .pm-standard-card h3 {
  margin: 55px 0 10px !important;
  color: var(--store-paper-text) !important;
  font-size: 21px !important;
  font-weight: 600 !important;
  letter-spacing: -.045em !important;
}

#a2t-products .pm-standard-card p {
  margin: 0 !important;
  color: #707b76 !important;
  font-size: 12px !important;
  line-height: 1.65 !important;
}

#a2t-products .pm-standards-rail {
  grid-column: 2;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  margin-top: 28px !important;
  border-top: 1px solid var(--store-paper-line) !important;
  border-bottom: 1px solid var(--store-paper-line) !important;
}

#a2t-products .pm-standards-rail > div {
  display: flex !important;
  gap: 12px !important;
  padding: 17px 14px !important;
  border-right: 1px solid var(--store-paper-line) !important;
}

#a2t-products .pm-standards-rail > div:nth-child(even) {
  border-right: 0 !important;
}

#a2t-products .pm-standards-rail i {
  color: var(--store-green) !important;
}

#a2t-products .pm-standards-rail span,
#a2t-products .pm-standards-rail strong,
#a2t-products .pm-standards-rail small {
  display: block !important;
}

#a2t-products .pm-standards-rail strong {
  color: var(--store-paper-text) !important;
  font-size: 12px !important;
}

#a2t-products .pm-standards-rail small {
  margin-top: 3px !important;
  color: #718079 !important;
  font-size: 10px !important;
}

/* ---------- Product detail ---------- */

/* Product detail overview — canonical production layout (Upgrade 41).
   This is the only layout definition for the Overview decision area. */
.product-detail-body .pd-product-overview {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0 0 30px;
  gap: 22px;
}

.product-detail-body .pd-product-gallery {
  order: 1;
  width: 100%;
  margin: 0;
}

.product-detail-body .pd-product-summary {
  order: 2;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 3fr);
  column-gap: clamp(34px, 4vw, 58px);
  align-items: start;
  width: 100%;
  margin: 0;
  padding: 18px 0 0;
  border: 0;
  background: transparent;
}

.product-detail-body .pd-product-context,
.product-detail-body .pd-product-buy {
  min-width: 0;
  margin: 0;
}

.product-detail-body .pd-product-context {
  padding-right: clamp(6px, 1vw, 14px);
}

.product-detail-body .pd-product-context .pd-v6-kicker-row {
  margin: 0 0 16px !important;
  padding: 0 !important;
  border: 0 !important;
}

.product-detail-body .pd-product-context .pd-v6-title {
  max-width: 860px !important;
  margin: 0 !important;
  font-size: clamp(44px, 4.05vw, 62px) !important;
  line-height: .96 !important;
  letter-spacing: -.058em !important;
  text-wrap: balance;
}

.product-detail-body .pd-product-context .pd-v6-lead {
  max-width: 790px !important;
  margin: 18px 0 0 !important;
  color: #96a19b !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
}

.product-detail-body .pd-product-buy {
  padding: 0 0 0 clamp(24px, 2.6vw, 38px);
  border-left: 1px solid rgba(126, 143, 134, .24);
}

.product-detail-body .pd-product-buy-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 12px;
}

.product-detail-body .pd-product-buy .pd-v6-stat-row {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px 14px !important;
  margin: 0 !important;
  padding: 11px 0 !important;
  border-top: 1px solid rgba(126, 143, 134, .20) !important;
  border-bottom: 1px solid rgba(126, 143, 134, .20) !important;
}

.product-detail-body .pd-product-buy .pd-v6-stat-row span {
  font-size: 7px !important;
  white-space: nowrap;
}

.product-detail-body .pd-product-buy .pd-v6-price-row {
  display: flex !important;
  align-items: baseline !important;
  flex-wrap: wrap !important;
  gap: 9px !important;
  margin: 20px 0 0 !important;
}

.product-detail-body .pd-product-buy .pd-v6-price-row strong {
  font-size: clamp(30px, 3vw, 40px) !important;
}

.product-detail-body .pd-product-buy .pd-v6-assurance-line {
  max-width: 360px;
  margin: 11px 0 0 !important;
  font-size: 9px !important;
  line-height: 1.55 !important;
}

.product-detail-body .pd-product-buy .pd-v6-actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin: 18px 0 0 !important;
}

.product-detail-body .pd-product-buy .pd-v6-actions > *,
.product-detail-body .pd-product-buy .pd-v6-actions form,
.product-detail-body .pd-product-buy .pd-v6-actions .pd-v6-btn {
  width: 100% !important;
  min-width: 0 !important;
}

.product-detail-body .pd-product-buy .pd-v6-actions form {
  display: flex !important;
}

.product-detail-body .pd-product-buy .pd-v6-btn {
  display: inline-flex !important;
  min-height: 42px !important;
  align-items: center !important;
  justify-content: center !important;
  padding-inline: 12px !important;
  text-align: center !important;
}

.product-detail-body .pd-product-buy .pd-v6-mini-links {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px 14px !important;
  margin: 13px 0 0 !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(126, 143, 134, .16) !important;
}

.product-detail-body .pd-product-buy .pd-v6-mini-links span {
  font-size: 7px !important;
}

@media (max-width: 1050px) {
  .product-detail-body .pd-product-summary {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .48fr);
    column-gap: 30px;
  }

  .product-detail-body .pd-product-context .pd-v6-title {
    font-size: clamp(40px, 5vw, 56px) !important;
  }

  .product-detail-body .pd-product-buy {
    padding-left: 24px;
  }

  .product-detail-body .pd-product-buy .pd-v6-actions {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 820px) {
  .product-detail-body .pd-product-overview {
    gap: 18px;
    padding-bottom: 24px;
  }

  .product-detail-body .pd-product-summary {
    grid-template-columns: 1fr;
    row-gap: 22px;
    padding-top: 16px;
  }

  .product-detail-body .pd-product-buy {
    padding: 20px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(126, 143, 134, .24);
  }

  .product-detail-body .pd-product-buy-head {
    justify-content: flex-start;
  }

  .product-detail-body .pd-product-buy .pd-v6-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  .product-detail-body .pd-product-context .pd-v6-title {
    font-size: clamp(36px, 10.5vw, 48px) !important;
  }

  .product-detail-body .pd-product-buy .pd-v6-actions {
    grid-template-columns: 1fr !important;
  }
}

.product-detail-body #a2t-products {
  background: var(--store-ink) !important;
}

.product-detail-body .pd-v6-shell {
  padding: 0 0 118px !important;
}

.product-detail-body .pd-v6-breadcrumb {
  margin-bottom: 30px !important;
}

.product-detail-body .pd-page-nav-sentinel {
  display: block;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

.product-detail-body .pd-v6-section-nav-band {
  position: sticky !important;
  z-index: 2990 !important;
  top: 70px !important;
  width: 100vw !important;
  margin: 0 calc(50% - 50vw) !important;
  border-bottom: 1px solid var(--store-dark-line) !important;
  background: rgba(11, 15, 18, .96) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: top .2s ease;
}

.product-detail-body .pd-v6-section-nav-inner {
  width: min(var(--a2t-container), calc(100% - 80px)) !important;
  max-width: var(--a2t-container) !important;
  margin-inline: auto !important;
}

.product-detail-body .pd-v6-section-nav {
  position: static !important;
  display: flex !important;
  align-items: center !important;
  gap: 24px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 5px 0 !important;
  overflow-x: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  scrollbar-width: none;
}

.product-detail-body .pd-v6-section-nav::-webkit-scrollbar {
  display: none;
}

.product-detail-body .pd-v6-section-nav a {
  flex: 0 0 auto;
  padding: 4px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid transparent !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #7f8c85 !important;
  font: 500 8px/1 var(--store-mono) !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.product-detail-body .pd-v6-section-nav a:hover,
.product-detail-body .pd-v6-section-nav a.active {
  border-bottom-color: var(--store-accent) !important;
  color: var(--store-accent) !important;
}

@media (min-width: 1024px) {
  .product-detail-body.a2t-page-nav-stuck .pd-v6-section-nav-band {
    top: 0 !important;
  }

  .product-detail-body.a2t-page-nav-stuck .pd-v10-review-rail-sticky {
    top: 48px !important;
  }
}


.product-detail-body .pd-v6-card {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.product-detail-body .pd-v6-gallery-card {
  order: -1;
  min-width: 0 !important;
  padding: 17px !important;
  border: 1px solid var(--store-dark-line) !important;
  background: #14201d !important;
}


.product-detail-body .pd-v6-kicker-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 15px !important;
  margin: 0 0 25px !important;
}

.product-detail-body .pd-v6-kicker {
  color: var(--store-accent) !important;
}

.product-detail-body .pd-v6-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 6px 8px !important;
  border: 1px solid var(--store-dark-line) !important;
  border-radius: 2px !important;
  background: transparent !important;
  color: #8f9a94 !important;
  font: 500 7px/1 var(--store-mono) !important;
  letter-spacing: .07em !important;
  text-transform: uppercase !important;
}

.product-detail-body .pd-v6-pill.live,
.product-detail-body .pd-v6-pill.success {
  border-color: rgba(200, 243, 79, .44) !important;
  color: var(--store-accent) !important;
}

.product-detail-body .pd-v6-title {
  max-width: 590px;
  margin: 0 !important;
  color: #f2f4f0 !important;
  font-size: clamp(52px, 5.8vw, 84px) !important;
  font-weight: 600 !important;
  line-height: .9 !important;
  letter-spacing: -.065em !important;
}

.product-detail-body .pd-v6-lead {
  max-width: 580px;
  margin: 28px 0 0 !important;
  color: #9fa9a4 !important;
  font-size: 16px !important;
  line-height: 1.68 !important;
}

.product-detail-body .pd-v6-meta-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin: 32px 0 0 !important;
  border-top: 1px solid var(--store-dark-line) !important;
  border-bottom: 1px solid var(--store-dark-line) !important;
}

.product-detail-body .pd-v6-meta-grid > div {
  min-width: 0 !important;
  padding: 13px 12px 13px 0 !important;
  border-right: 1px solid var(--store-dark-line) !important;
  border-bottom: 1px solid var(--store-dark-line) !important;
  background: transparent !important;
}

.product-detail-body .pd-v6-meta-grid > div:nth-child(even) {
  padding-left: 12px !important;
  border-right: 0 !important;
}

.product-detail-body .pd-v6-meta-grid > div:nth-last-child(-n + 2) {
  border-bottom: 0 !important;
}

.product-detail-body .pd-v6-meta-grid span,
.product-detail-body .pd-v6-meta-grid strong {
  display: block !important;
}

.product-detail-body .pd-v6-meta-grid span {
  color: #6f7c75 !important;
  font: 400 7px/1.4 var(--store-mono) !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.product-detail-body .pd-v6-meta-grid strong {
  margin-top: 6px !important;
  overflow-wrap: anywhere;
  color: #d9dfdb !important;
  font-size: 11px !important;
  font-weight: 500 !important;
}

.product-detail-body .pd-v6-stat-row,
.product-detail-body .pd-v6-mini-links {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px 16px !important;
  margin: 18px 0 0 !important;
  color: #7f8d86 !important;
}

.product-detail-body .pd-v6-stat-row span,
.product-detail-body .pd-v6-mini-links span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  color: inherit !important;
  font: 400 8px/1.4 var(--store-mono) !important;
}

.product-detail-body .pd-v6-stat-row i,
.product-detail-body .pd-v6-mini-links i {
  color: var(--store-accent) !important;
}

.product-detail-body .pd-v6-price-row {
  display: flex !important;
  align-items: baseline !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin: 30px 0 0 !important;
}

.product-detail-body .pd-v6-price-row strong {
  color: #f0f4ef !important;
  font: 500 clamp(31px, 3vw, 39px)/1 var(--store-mono) !important;
}

.product-detail-body .pd-v6-price-row del {
  color: #68756e !important;
  font: 400 13px/1 var(--store-mono) !important;
}

.product-detail-body .pd-v8-save-chip {
  padding: 6px 7px !important;
  border: 1px solid rgba(200, 243, 79, .35) !important;
  border-radius: 2px !important;
  background: rgba(200, 243, 79, .06) !important;
  color: var(--store-accent) !important;
  font: 500 7px/1 var(--store-mono) !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
}

.product-detail-body .pd-v6-assurance-line {
  margin: 14px 0 0 !important;
  color: #839089 !important;
  font-size: 10px !important;
  line-height: 1.5 !important;
}

.product-detail-body .pd-v6-assurance-line i {
  margin-right: 6px;
  color: var(--store-accent) !important;
}

.product-detail-body .pd-v6-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 25px 0 0 !important;
}

.product-detail-body .pd-v6-actions form {
  margin: 0 !important;
}

.product-detail-body .pd-v6-btn {
  min-height: 43px !important;
  padding-inline: 14px !important;
}

.product-detail-body .pd-v6-btn-disabled {
  opacity: .5 !important;
  pointer-events: none;
}

.product-detail-body .pd-v8-gallery-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 15px !important;
  padding: 2px 3px 15px !important;
  color: #8da097 !important;
  font: 400 8px/1 var(--store-mono) !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.product-detail-body .pd-v8-gallery-head span:first-child {
  color: var(--store-accent) !important;
}

.product-detail-body .pd-v6-gallery-stage {
  position: relative !important;
  width: 100% !important;
  min-height: 500px !important;
  overflow: hidden !important;
  border: 1px solid #425149 !important;
  border-radius: 2px !important;
  background: #0f1715 !important;
}

.product-detail-body .pd-v6-media-panel {
  position: absolute !important;
  inset: 0 !important;
  display: none !important;
  place-items: center !important;
}

.product-detail-body .pd-v6-media-panel.is-active {
  display: grid !important;
}

.product-detail-body .pd-v6-media-panel img,
.product-detail-body .pd-v6-gallery-video {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #101817 !important;
}

.product-detail-body .pd-v6-gallery-count,
.product-detail-body .pd-v6-video-chip {
  position: absolute !important;
  z-index: 4 !important;
  padding: 7px 9px !important;
  border: 1px solid #526159 !important;
  border-radius: 2px !important;
  background: rgba(11, 15, 18, .8) !important;
  color: #bdc8c1 !important;
  font: 400 7px/1 var(--store-mono) !important;
  letter-spacing: .06em !important;
}

.product-detail-body .pd-v6-gallery-count {
  right: 12px !important;
  bottom: 12px !important;
}

.product-detail-body .pd-v6-video-chip {
  top: 12px !important;
  left: 12px !important;
}

.product-detail-body .pd-v6-empty-preview {
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  height: 100% !important;
  color: #607068 !important;
  font-size: 44px !important;
}

.product-detail-body .pd-v6-gallery-controls {
  display: grid !important;
  grid-template-columns: 36px minmax(0, 1fr) 36px !important;
  gap: 9px !important;
  align-items: center !important;
  margin-top: 12px !important;
}

.product-detail-body .pd-v6-gallery-arrow {
  width: 36px !important;
  height: 36px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  border: 1px solid var(--store-dark-line-strong) !important;
  border-radius: 2px !important;
  background: transparent !important;
  color: #a3aea8 !important;
}

.product-detail-body .pd-v6-gallery-arrow:hover {
  border-color: var(--store-accent) !important;
  color: var(--store-accent) !important;
}

.product-detail-body .pd-v6-thumbs {
  display: flex !important;
  gap: 8px !important;
  min-width: 0 !important;
  overflow-x: auto !important;
  scrollbar-width: thin;
  scrollbar-color: #536159 transparent;
}

.product-detail-body .pd-v6-thumb {
  position: relative !important;
  flex: 0 0 72px !important;
  width: 72px !important;
  height: 50px !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: 1px solid #45534c !important;
  border-radius: 2px !important;
  background: #101817 !important;
  opacity: .62 !important;
}

.product-detail-body .pd-v6-thumb.is-active,
.product-detail-body .pd-v6-thumb:hover {
  border-color: var(--store-accent) !important;
  opacity: 1 !important;
}

.product-detail-body .pd-v6-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.product-detail-body .pd-v6-thumb-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--store-accent);
  background: rgba(11,15,18,.38);
}

.product-detail-body .pd-v6-identity-strip {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  margin: 0 0 96px !important;
  border-top: 1px solid var(--store-dark-line) !important;
  border-bottom: 1px solid var(--store-dark-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.product-detail-body .pd-v6-identity-strip > div {
  min-width: 0 !important;
  min-height: 150px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding: 20px 16px !important;
  border-right: 1px solid var(--store-dark-line) !important;
  background: transparent !important;
}

.product-detail-body .pd-v6-identity-strip > div:last-child {
  border-right: 0 !important;
}

.product-detail-body .pd-v6-identity-strip i {
  margin: 0 0 auto !important;
  color: var(--store-accent) !important;
  font-size: 15px !important;
}

.product-detail-body .pd-v6-identity-strip span,
.product-detail-body .pd-v6-identity-strip strong {
  display: block !important;
}

.product-detail-body .pd-v6-identity-strip span {
  margin-top: 45px !important;
  color: #6f7c75 !important;
  font: 400 7px/1.3 var(--store-mono) !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.product-detail-body .pd-v6-identity-strip strong {
  margin-top: 7px !important;
  overflow-wrap: anywhere;
  color: #d9dfdb !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}

.product-detail-body .pd-v10-detail-section {
  display: grid !important;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr) !important;
  gap: 58px !important;
  align-items: start !important;
  margin: 0 !important;
  padding: 108px 0 116px !important;
  color: var(--store-paper-text) !important;
  background: var(--store-paper) !important;
  box-shadow: 0 0 0 100vmax var(--store-paper) !important;
  clip-path: inset(0 -100vmax) !important;
}

.product-detail-body .pd-v10-overview-card,
.product-detail-body .pd-v10-review-rail {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--store-paper-text) !important;
}

.product-detail-body .pd-v10-card-head {
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  gap: 16px !important;
  align-items: start !important;
  margin-bottom: 38px !important;
  padding-bottom: 24px !important;
  border-bottom: 1px solid var(--store-paper-line) !important;
}

.product-detail-body .pd-v10-card-icon {
  width: 42px !important;
  height: 42px !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid rgba(31,85,69,.35) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--store-green) !important;
}

.product-detail-body .pd-v10-card-head h2 {
  margin: 0 0 7px !important;
  color: var(--store-paper-text) !important;
  font-size: 34px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: -.055em !important;
}

.product-detail-body .pd-v10-card-head p {
  margin: 0 !important;
  color: #6f7b76 !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
}

.product-detail-body .pd-v10-overview-content {
  color: #343e3a !important;
  font-size: 15px !important;
  line-height: 1.78 !important;
}

.product-detail-body .pd-v10-overview-content :is(h1,h2,h3,h4) {
  margin: 42px 0 14px !important;
  color: var(--store-paper-text) !important;
  font-weight: 600 !important;
  letter-spacing: -.045em !important;
}

.product-detail-body .pd-v10-overview-content h2 { font-size: 34px !important; }
.product-detail-body .pd-v10-overview-content h3 { font-size: 25px !important; }
.product-detail-body .pd-v10-overview-content p { margin: 0 0 18px !important; }
.product-detail-body .pd-v10-overview-content :is(ul,ol) { padding-left: 22px !important; }
.product-detail-body .pd-v10-overview-content a { color: var(--store-green) !important; text-decoration: underline !important; text-underline-offset: 3px; }
.product-detail-body .pd-v10-overview-content :is(pre,code) { font-family: var(--store-mono) !important; }
.product-detail-body .pd-v10-overview-content pre { overflow:auto; padding:18px; background:#151c1a; color:#e8eee9; }

.product-detail-body .pd-v10-review-rail-sticky {
  position: sticky !important;
  top: 114px !important;
  padding-left: 28px !important;
  border-left: 1px solid var(--store-paper-line) !important;
}

.product-detail-body .pd-v10-review-summary {
  padding: 0 0 24px !important;
  border-bottom: 1px solid var(--store-paper-line) !important;
}

.product-detail-body .pd-v10-review-score-wrap {
  display: flex !important;
  gap: 17px !important;
  align-items: center !important;
}

.product-detail-body .pd-v10-review-score {
  color: var(--store-green) !important;
  font: 500 42px/1 var(--store-mono) !important;
}

.product-detail-body .pd-v10-review-stars {
  color: var(--store-green) !important;
  font-size: 11px !important;
}

.product-detail-body .pd-v10-review-count {
  margin: 5px 0 0 !important;
  color: #748079 !important;
  font: 400 8px/1 var(--store-mono) !important;
  text-transform: uppercase;
}

.product-detail-body .pd-v10-rating-breakdown {
  display: grid !important;
  gap: 7px !important;
  margin-top: 22px !important;
}

.product-detail-body .pd-v10-breakdown-row {
  display: grid !important;
  grid-template-columns: 28px minmax(0,1fr) 24px !important;
  gap: 9px !important;
  align-items: center !important;
  color: #6f7b76 !important;
  font: 400 8px/1 var(--store-mono) !important;
}

.product-detail-body .pd-v10-breakdown-track {
  height: 2px !important;
  overflow: hidden !important;
  background: rgba(11,15,18,.14) !important;
}

.product-detail-body .pd-v10-breakdown-fill {
  height: 100% !important;
  background: var(--store-green) !important;
}

.product-detail-body .pd-v10-review-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 7px !important;
  margin-top: 22px !important;
}

.product-detail-body .pd-v10-review-actions .pd-v6-btn,
.product-detail-body .pd-v10-review-form-wrap .pd-v6-btn {
  border-color: rgba(11,15,18,.3) !important;
  color: var(--store-paper-text) !important;
}

.product-detail-body .pd-v10-review-actions .pd-v6-btn-primary,
.product-detail-body .pd-v10-review-form-wrap .pd-v6-btn-primary {
  border-color: var(--store-green) !important;
  background: var(--store-green) !important;
  color: #fff !important;
}

.product-detail-body .pd-v10-review-feedback {
  min-height: 0 !important;
  margin-top: 10px;
  color: var(--store-green);
  font: 400 8px/1.4 var(--store-mono);
}

.product-detail-body .pd-v10-review-panel {
  display: none !important;
  margin-top: 24px !important;
}

.product-detail-body .pd-v10-review-panel.is-active {
  display: block !important;
}

.product-detail-body .pd-v10-panel-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid var(--store-paper-line) !important;
}

.product-detail-body .pd-v10-panel-head h3 {
  margin: 0 !important;
  color: var(--store-paper-text) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.product-detail-body .pd-v10-panel-link {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--store-green) !important;
  font: 500 8px/1 var(--store-mono) !important;
  text-transform: uppercase !important;
}

.product-detail-body .pd-v10-inline-note,
.product-detail-body .a2t-empty-state.pd-v10-reviews-empty {
  padding: 16px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--store-paper-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #65706c !important;
}

.product-detail-body .pd-v10-inline-note strong,
.product-detail-body .pd-v10-reviews-empty h3 {
  color: var(--store-paper-text) !important;
}

.product-detail-body .comments-list-items,
.product-detail-body .pd-v10-review-items,
.product-detail-body .replies {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.product-detail-body .comment-item {
  padding: 18px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--store-paper-line) !important;
  background: transparent !important;
  color: #4e5a55 !important;
}

.product-detail-body .comment-item .a2t-profile-link strong {
  color: var(--store-paper-text) !important;
  font-size: 12px !important;
}

.product-detail-body .comment-item .stars {
  margin: 4px 0 8px !important;
  color: var(--store-green) !important;
}

.product-detail-body .comment-item .cmt-txt {
  margin: 0 0 7px !important;
  color: #505c57 !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
}

.product-detail-body .comment-item small {
  color: #83908a !important;
  font: 400 7px/1 var(--store-mono) !important;
}

.product-detail-body .comment-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 9px !important;
  align-items: center !important;
  margin-top: 11px !important;
}

.product-detail-body .comment-actions :is(.btn-link,.vote-btn),
.product-detail-body .reply-form button {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--store-green) !important;
  box-shadow: none !important;
  font: 500 8px/1 var(--store-mono) !important;
}

.product-detail-body .comment-actions .text-danger {
  color: #8a4d4d !important;
}

.product-detail-body .replies {
  margin: 15px 0 0 18px !important;
  padding-left: 14px !important;
  border-left: 1px solid var(--store-paper-line) !important;
}

.product-detail-body .reply-form-container,
.product-detail-body .edit-form-container {
  margin-top: 12px !important;
}

.product-detail-body .reply-form textarea,
.product-detail-body .edit-form textarea,
.product-detail-body .pd-v10-review-designer-form textarea {
  width: 100% !important;
  min-height: 94px !important;
  padding: 12px !important;
  border: 1px solid rgba(11,15,18,.25) !important;
  border-radius: 0 !important;
  outline: 0 !important;
  resize: vertical !important;
  background: rgba(255,255,255,.38) !important;
  color: var(--store-paper-text) !important;
  box-shadow: none !important;
}

.product-detail-body .pd-v10-review-designer-form {
  display: grid !important;
  gap: 17px !important;
}

.product-detail-body .pd-v10-form-block {
  display: grid !important;
  gap: 7px !important;
}

.product-detail-body .pd-v10-field-title {
  color: #5f6c66 !important;
  font: 500 8px/1 var(--store-mono) !important;
  letter-spacing: .07em !important;
  text-transform: uppercase !important;
}

.product-detail-body .pd-v10-star-picker {
  display: flex !important;
  flex-direction: row-reverse !important;
  justify-content: flex-end !important;
  gap: 3px !important;
}

.product-detail-body .pd-v10-star-picker input {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.product-detail-body .pd-v10-star-picker label {
  margin: 0 !important;
  color: #a4aaa6 !important;
  cursor: pointer !important;
  font-size: 18px !important;
}

.product-detail-body .pd-v10-star-picker label:hover,
.product-detail-body .pd-v10-star-picker label:hover ~ label,
.product-detail-body .pd-v10-star-picker input:checked ~ label {
  color: var(--store-green) !important;
}

.product-detail-body .pd-v10-field-help {
  margin: 0 !important;
  color: #85918b !important;
  font-size: 10px !important;
}

.product-detail-body .pd-v10-review-pagination {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  padding-top: 14px !important;
}

.product-detail-body .pd-v10-review-page-link,
.product-detail-body .pd-v10-review-page-status {
  color: var(--store-green) !important;
  font: 500 7px/1 var(--store-mono) !important;
  text-transform: uppercase !important;
}

.product-detail-body .pd-v10-review-page-link.is-disabled {
  color: #9a9f9c !important;
}

.product-detail-body .pd-v6-related-section {
  margin: 0 !important;
  padding: 104px 0 0 !important;
  border: 0 !important;
  background: var(--store-ink) !important;
}

.product-detail-body .pd-v6-related-head {
  display: flex !important;
  align-items: end !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin: 0 0 34px !important;
  padding-bottom: 22px !important;
  border-bottom: 1px solid var(--store-dark-line) !important;
}

.product-detail-body .pd-v6-related-head h2 {
  margin: 0 !important;
  color: #eef2ee !important;
  font-size: clamp(34px, 4vw, 52px) !important;
  font-weight: 600 !important;
  letter-spacing: -.055em !important;
}

.product-detail-body .pd-v6-related-head a {
  color: var(--store-accent) !important;
  font: 500 8px/1 var(--store-mono) !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.product-detail-body .pd-v6-related-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.product-detail-body .pd-v6-related-card {
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  padding: 0 0 21px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--store-dark-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--store-dark-text) !important;
}

.product-detail-body .pd-v6-related-media {
  width: 100% !important;
  height: 220px !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  margin-bottom: 20px !important;
  border: 1px solid var(--store-dark-line) !important;
  border-radius: 3px !important;
  background: #17221f !important;
  color: var(--store-accent) !important;
  font: 500 9px/1 var(--store-mono) !important;
  text-transform: uppercase !important;
}

.product-detail-body .pd-v6-related-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.product-detail-body .pd-v6-related-type {
  color: #8c9993 !important;
  font: 500 8px/1 var(--store-mono) !important;
}

.product-detail-body .pd-v6-related-card h3 {
  margin: 11px 0 8px !important;
  color: #e6ebe7 !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  letter-spacing: -.045em !important;
}

.product-detail-body .pd-v6-related-card p {
  min-height: 38px !important;
  margin: 0 0 18px !important;
  color: #84918b !important;
  font-size: 11px !important;
  line-height: 1.6 !important;
}

.product-detail-body .pd-v6-related-card strong {
  color: #fff !important;
  font: 500 11px/1 var(--store-mono) !important;
}

.product-detail-body .pd-v6-related-action {
  position: absolute !important;
  right: 0 !important;
  bottom: 20px !important;
  color: var(--store-accent) !important;
}

/* ---------- Wishlist / Categories ---------- */
.store-compact-page {
  padding: 52px 0 120px;
}

.store-compact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--store-dark-line);
}

.store-compact-hero .pm-breadcrumb {
  grid-column: 1 / -1;
  margin-bottom: 10px;
}

.store-compact-hero > div h1 {
  margin: 16px 0 0;
  color: #eef2ee;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.065em;
}

.store-compact-hero > div p {
  max-width: 580px;
  margin: 24px 0 0;
  color: #96a19b;
  font-size: 15px;
  line-height: 1.65;
}

.store-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--store-dark-line);
}

.store-category-tile {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-right: 1px solid var(--store-dark-line);
  border-bottom: 1px solid var(--store-dark-line);
  transition: padding .2s ease, background .2s ease;
}

.store-category-tile:nth-child(3n) {
  border-right: 0;
}

.store-category-tile:hover {
  padding-left: 32px;
  background: rgba(200,243,79,.04);
}

.store-category-tile > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid var(--store-dark-line-strong);
  color: var(--store-accent);
}

.store-category-tile strong {
  color: #e8ede9;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.045em;
}

.store-category-tile small {
  margin-top: 10px;
  color: var(--store-accent);
  font: 500 8px/1 var(--store-mono);
  letter-spacing: .07em;
  text-transform: uppercase;
}

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

.store-compact-card {
  display: grid;
  grid-template-columns: minmax(170px, .8fr) minmax(0, 1.2fr);
  min-height: 245px;
  overflow: hidden;
  border: 1px solid var(--store-dark-line);
  border-radius: 3px;
  background: var(--store-ink-2);
}

.store-compact-media {
  min-height: 245px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid var(--store-dark-line);
  background: #182923;
  color: var(--store-accent);
}

.store-compact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-compact-card-body {
  display: flex;
  flex-direction: column;
  padding: 19px;
}

.store-compact-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #84918b;
  font: 500 7px/1 var(--store-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.store-compact-card-meta .is-live {
  color: var(--store-accent);
}

.store-compact-card-meta .is-muted {
  color: #748079;
}

.store-compact-card h2 {
  margin: 23px 0 9px;
  color: #e7ece8;
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.045em;
}

.store-compact-card p {
  margin: 0;
  color: #85918b;
  font-size: 11px;
  line-height: 1.6;
}

.store-compact-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--store-dark-line);
}

.store-compact-card-actions > strong {
  color: #fff;
  font: 500 13px/1 var(--store-mono);
}

.store-compact-card-actions button,
.store-compact-card-actions a {
  min-height: 36px !important;
  padding-inline: 11px !important;
}

/* ---------- Small screens ---------- */
@supports (height: 100dvh) {
  #a2t-products .a2t-store-hero,
  #a2t-products .a2t-store-hero-grid {
    min-height: calc(100dvh - var(--a2t-header-height)) !important;
  }
}

@media (max-width: 1100px) {
  .a2t-store-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(270px, .52fr);
    gap: 58px;
  }

  #a2t-products .pm-layout {
    grid-template-columns: 235px minmax(0, 1fr) !important;
    gap: 26px !important;
  }

  #a2t-products .pm-product {
    grid-template-columns: minmax(210px, 36%) minmax(0, 1fr) !important;
  }

  

  .product-detail-body .pd-v6-gallery-stage {
    min-height: 430px !important;
  }

  .product-detail-body .pd-v6-identity-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .product-detail-body .pd-v6-identity-strip > div:nth-child(3n) {
    border-right: 0 !important;
  }

  .product-detail-body .pd-v6-identity-strip > div:nth-child(-n + 3) {
    border-bottom: 1px solid var(--store-dark-line) !important;
  }

  .product-detail-body .pd-v10-detail-section {
    gap: 36px !important;
  }
}

@media (max-width: 900px) {
  .a2t-store-shell,
  #a2t-products .pm-layout,
  #a2t-products .pm-standards-shell,
  .product-detail-body .pd-v6-shell,
  .store-compact-page {
    width: min(100% - 40px, var(--a2t-container));
  }

  .a2t-store-hero {
    padding: 42px 0 72px;
  }

  .a2t-store-hero .pm-breadcrumb,
  .store-compact-page .pm-breadcrumb {
    margin-bottom: 48px;
  }

  .a2t-store-hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .a2t-store-hero-system {
    max-width: 560px;
  }

  #a2t-products .pm-layout {
    grid-template-columns: 1fr !important;
    padding-top: 54px !important;
  }

  #a2t-products .pm-sidebar {
    position: static !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    max-height: none !important;
    order: 2;
  }

  #a2t-products .pm-category-card {
    grid-column: 1 / -1;
  }

  #a2t-products .pm-main {
    order: 1;
  }

  #a2t-products .pm-standards-shell {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  #a2t-products .pm-standards-intro {
    position: static;
  }

  #a2t-products .pm-standards-rail {
    grid-column: 1;
  }

  

  .product-detail-body .pd-v6-gallery-card {
    order: 0;
  }

  

  .product-detail-body .pd-v6-title {
    max-width: 720px;
  }

  .product-detail-body .pd-v10-detail-section {
    grid-template-columns: 1fr !important;
    gap: 74px !important;
  }

  .product-detail-body .pd-v10-review-rail-sticky {
    position: static !important;
    padding: 0 !important;
    border-left: 0 !important;
  }

  .product-detail-body .pd-v6-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

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

  .store-category-tile:nth-child(3n) {
    border-right: 1px solid var(--store-dark-line);
  }

  .store-category-tile:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 700px) {
  .a2t-store-shell,
  #a2t-products .pm-layout,
  #a2t-products .pm-standards-shell,
  .product-detail-body .pd-v6-shell,
  .store-compact-page {
    width: calc(100% - 32px);
  }

  .a2t-store-hero {
    padding: 32px 0 58px;
  }

  .a2t-store-hero .pm-breadcrumb,
  .product-detail-body .pd-v6-breadcrumb,
  .store-compact-page .pm-breadcrumb {
    margin-bottom: 35px !important;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .a2t-store-hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .a2t-store-hero-copy > p:not(.a2t-store-kicker) {
    font-size: 14px;
  }

  .a2t-store-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .a2t-store-button {
    width: 100%;
  }

  .a2t-store-catalog-head {
    grid-template-columns: 1fr;
  }

  .a2t-store-catalog-count {
    text-align: left;
  }

  #a2t-products .pm-controls {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  #a2t-products .pm-sort-tabs {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  #a2t-products .pm-sort-tabs a {
    flex: 0 0 auto;
  }

  #a2t-products .pm-search {
    width: 100% !important;
  }

  #a2t-products .pm-product {
    grid-template-columns: 1fr !important;
  }

  #a2t-products .pm-product-media {
    min-height: 235px !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--store-dark-line) !important;
  }

  #a2t-products .pm-product-body {
    padding: 18px !important;
  }

  #a2t-products .pm-product-footer {
    align-items: flex-end !important;
  }

  #a2t-products .pm-sidebar {
    grid-template-columns: 1fr !important;
  }

  #a2t-products .pm-category-card {
    grid-column: auto;
  }

  #a2t-products .pm-production-standards {
    padding: 76px 0 82px !important;
  }

  #a2t-products .pm-standards-grid,
  #a2t-products .pm-standards-rail {
    grid-template-columns: 1fr !important;
  }

  #a2t-products .pm-standard-card,
  #a2t-products .pm-standards-rail > div {
    border-right: 0 !important;
  }

  

  .product-detail-body .pd-v6-title {
    font-size: clamp(47px, 13vw, 66px) !important;
  }

  .product-detail-body .pd-v6-meta-grid {
    grid-template-columns: 1fr !important;
  }

  .product-detail-body .pd-v6-meta-grid > div,
  .product-detail-body .pd-v6-meta-grid > div:nth-child(even) {
    padding: 12px 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--store-dark-line) !important;
  }

  .product-detail-body .pd-v6-meta-grid > div:last-child {
    border-bottom: 0 !important;
  }

  .product-detail-body .pd-v6-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .product-detail-body .pd-v6-actions form,
  .product-detail-body .pd-v6-actions .pd-v6-btn {
    width: 100% !important;
  }

  .product-detail-body .pd-v6-gallery-card {
    padding: 10px !important;
  }

  .product-detail-body .pd-v6-gallery-stage {
    min-height: 330px !important;
  }

  .product-detail-body .pd-v6-gallery-controls {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .product-detail-body .pd-v6-gallery-arrow {
    display: none !important;
  }

  .product-detail-body .pd-v6-identity-strip {
    grid-template-columns: 1fr !important;
    margin-bottom: 70px !important;
  }

  .product-detail-body .pd-v6-identity-strip > div {
    min-height: 112px !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--store-dark-line) !important;
  }

  .product-detail-body .pd-v6-identity-strip > div:last-child {
    border-bottom: 0 !important;
  }

  .product-detail-body .pd-v6-identity-strip span {
    margin-top: 28px !important;
  }

  .product-detail-body .pd-v10-detail-section {
    padding: 76px 0 82px !important;
  }

  .product-detail-body .pd-v10-card-head h2 {
    font-size: 29px !important;
  }

  .product-detail-body .pd-v6-related-section {
    padding-top: 76px !important;
  }

  .product-detail-body .pd-v6-related-grid {
    grid-template-columns: 1fr !important;
  }

  .product-detail-body .pd-v6-related-media {
    height: 240px !important;
  }

  .store-compact-page {
    padding-top: 34px;
  }

  .store-compact-hero {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 45px;
  }

  .store-compact-grid,
  .store-category-grid {
    grid-template-columns: 1fr;
  }

  .store-category-tile,
  .store-category-tile:nth-child(2n),
  .store-category-tile:nth-child(3n) {
    border-right: 0;
  }

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

  .store-compact-media {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--store-dark-line);
  }
}

@media (max-width: 440px) {
  #a2t-products .pm-product-footer,
  .store-compact-card-actions {
    align-items: stretch !important;
    flex-direction: column !important;
  }

  #a2t-products .pm-product-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    width: 100% !important;
  }

  #a2t-products .pm-product-actions .pm-card-action,
  #a2t-products .pm-product-actions form,
  #a2t-products .pm-product-actions form .pm-card-action {
    width: 100% !important;
  }

  #a2t-products .pm-catalog-footer {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .product-detail-body .pd-v10-review-actions {
    grid-template-columns: 1fr !important;
  }
}

/* Mobile category rail remains close to the catalog controls; the heavier
   sidebar cards move below the catalog instead of trapping the first screen. */
@media (max-width: 700px) {
  #a2t-products .pm-mobile-filter-rail {
    display: flex !important;
    gap: 7px !important;
    width: calc(100vw - 16px) !important;
    margin: 0 -8px 18px !important;
    padding: 0 8px 5px !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
  }

  #a2t-products .pm-mobile-filter-rail::-webkit-scrollbar {
    display: none !important;
  }

  #a2t-products .pm-mobile-filter-rail a {
    flex: 0 0 auto !important;
    min-height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 0 11px !important;
    border: 1px solid var(--store-dark-line-strong) !important;
    border-radius: 3px !important;
    background: transparent !important;
    color: #a7b2ac !important;
    font: 500 8px/1 var(--store-mono) !important;
    text-transform: uppercase !important;
  }

  #a2t-products .pm-mobile-filter-rail a.active {
    border-color: var(--store-accent) !important;
    background: var(--store-accent) !important;
    color: var(--store-ink) !important;
  }
}

/* --------------------------------------------------------------------------
   Production freeze: standalone review editor
   -------------------------------------------------------------------------- */
body.a2t-review-edit-page .a2t-review-edit-shell {
  width: min(var(--a2t-container), calc(100% - (var(--a2t-gutter) * 2)));
  margin: 0 auto;
  padding: 28px 0 var(--a2t-content-bottom);
}

body.a2t-review-edit-page .a2t-review-edit-breadcrumb {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--store-dark-line);
  color: #75817b;
  font: 500 8px/1 var(--store-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.a2t-review-edit-page .a2t-review-edit-breadcrumb a {
  color: #aab4af;
  text-decoration: none;
}
body.a2t-review-edit-page .a2t-review-edit-breadcrumb a:hover { color: var(--store-accent); }
body.a2t-review-edit-page .a2t-review-edit-breadcrumb strong { color: var(--store-accent); font-weight: 500; }

body.a2t-review-edit-page .a2t-review-edit-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
  min-height: 620px;
  border-bottom: 1px solid var(--store-dark-line);
}

body.a2t-review-edit-page .a2t-review-edit-context {
  padding: clamp(48px, 7vw, 90px) clamp(28px, 5vw, 72px) clamp(48px, 7vw, 90px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--store-dark-line);
}

body.a2t-review-edit-page .a2t-review-edit-context h1 {
  max-width: 620px;
  margin: 16px 0 20px;
  color: var(--store-white);
  font: 600 clamp(42px, 5vw, 70px)/.98 var(--store-sans);
  letter-spacing: -.055em;
}

body.a2t-review-edit-page .a2t-review-edit-context p {
  max-width: 540px;
  margin: 0 0 30px;
  color: #98a39e;
  font-size: 14px;
  line-height: 1.75;
}

body.a2t-review-edit-page .a2t-review-edit-context > a {
  width: fit-content;
  color: var(--store-accent);
  font: 500 9px/1 var(--store-mono);
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
}

body.a2t-review-edit-page .a2t-review-edit-form {
  align-self: center;
  margin: 54px 0 54px clamp(28px, 5vw, 72px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(11,15,18,.16);
  background: var(--store-paper);
  color: var(--store-ink);
}

body.a2t-review-edit-page .a2t-review-edit-heading > span,
body.a2t-review-edit-page .a2t-review-rating-field legend,
body.a2t-review-edit-page .a2t-review-comment-field label {
  color: #66706c;
  font: 500 8px/1.2 var(--store-mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}

body.a2t-review-edit-page .a2t-review-edit-heading h2 {
  margin: 10px 0 34px;
  color: var(--store-ink);
  font: 600 clamp(28px, 3vw, 42px)/1.05 var(--store-sans);
  letter-spacing: -.045em;
}

body.a2t-review-edit-page .a2t-review-rating-field {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

body.a2t-review-edit-page .star-rating {
  width: fit-content;
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
  margin-top: 12px;
}
body.a2t-review-edit-page .star-rating input { position: absolute; opacity: 0; pointer-events: none; }
body.a2t-review-edit-page .star-rating label {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11,15,18,.22);
  background: transparent;
  color: #9da39f;
  cursor: pointer;
  font-size: 19px;
}
body.a2t-review-edit-page .star-rating input:checked ~ label,
body.a2t-review-edit-page .star-rating label:hover,
body.a2t-review-edit-page .star-rating label:hover ~ label {
  border-color: #516122;
  background: rgba(81,97,34,.08);
  color: #516122;
}

body.a2t-review-edit-page .a2t-review-comment-field { display: grid; gap: 10px; }
body.a2t-review-edit-page .a2t-review-comment-field textarea {
  width: 100%;
  min-height: 180px;
  resize: vertical;
  padding: 14px 15px;
  border: 1px solid rgba(11,15,18,.24) !important;
  border-radius: 0 !important;
  background: rgba(255,255,255,.28) !important;
  color: var(--store-ink) !important;
  box-shadow: none !important;
}

body.a2t-review-edit-page .a2t-field-error {
  color: #88443e;
  font: 500 9px/1.5 var(--store-mono);
}

body.a2t-review-edit-page .a2t-review-edit-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(11,15,18,.14);
}
body.a2t-review-edit-page .a2t-review-edit-actions a {
  color: #5d6662;
  font: 500 9px/1 var(--store-mono);
  text-transform: uppercase;
  text-decoration: none;
}
body.a2t-review-edit-page .a2t-review-edit-actions button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--store-ink);
  border-radius: 0;
  background: var(--store-ink);
  color: var(--store-white);
  font: 500 9px/1 var(--store-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}
body.a2t-review-edit-page .a2t-review-edit-actions button:hover { background: #1b2428; }

@media (max-width: 900px) {
  body.a2t-review-edit-page .a2t-review-edit-layout { grid-template-columns: 1fr; }
  body.a2t-review-edit-page .a2t-review-edit-context {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--store-dark-line);
  }
  body.a2t-review-edit-page .a2t-review-edit-form { margin: 30px 0 0; }
}

@media (max-width: 600px) {
  body.a2t-review-edit-page .a2t-review-edit-shell { width: calc(100% - 32px); }
  body.a2t-review-edit-page .a2t-review-edit-context { padding: 42px 0; }
  body.a2t-review-edit-page .a2t-review-edit-form { padding: 22px 18px; }
  body.a2t-review-edit-page .star-rating label { width: 40px; height: 40px; }
  body.a2t-review-edit-page .a2t-review-edit-actions { align-items: stretch; flex-direction: column-reverse; }
  body.a2t-review-edit-page .a2t-review-edit-actions :is(a, button) { width: 100%; text-align: center; }
}

/* ==========================================================================
   Products Upgrade 13–14 — Hero + adaptive marketplace architecture
   Square geometry, top-level page without breadcrumbs, scalable categories.
   ========================================================================== */

#a2t-products {
  --pm-control-height: 46px;
}

#a2t-products #product-list {
  scroll-margin-top: 92px;
}

/* Hero: one editorial statement + one real featured product. */
#a2t-products .a2t-store-hero {
  min-height: calc(100vh - var(--a2t-header-height)) !important;
  min-height: calc(100svh - var(--a2t-header-height)) !important;
  padding: 0 !important;
  display: grid !important;
  align-items: center !important;
  background:
    radial-gradient(circle at 88% 28%, rgba(200, 243, 79, .065), transparent 32%),
    var(--store-ink) !important;
}

#a2t-products .a2t-store-hero-grid {
  min-height: calc(100vh - var(--a2t-header-height)) !important;
  min-height: calc(100svh - var(--a2t-header-height)) !important;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, .94fr) !important;
  gap: clamp(58px, 6vw, 94px) !important;
  align-items: center !important;
  padding: clamp(58px, 7vh, 88px) 0 clamp(52px, 6vh, 74px) !important;
}

#a2t-products .a2t-store-hero-copy {
  min-width: 0;
}

#a2t-products .a2t-store-kicker {
  margin: 0 !important;
}

#a2t-products .a2t-store-hero h1 {
  max-width: 760px !important;
  margin-top: 24px !important;
  font-size: clamp(58px, 6vw, 86px) !important;
  line-height: .92 !important;
}

#a2t-products .a2t-store-hero-copy > p:not(.a2t-store-kicker) {
  max-width: 680px !important;
  margin-top: 28px !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

#a2t-products .a2t-store-actions {
  margin-top: 32px !important;
}

#a2t-products .a2t-store-button,
#a2t-products .a2t-store-featured-product,
#a2t-products .a2t-store-featured-media,
#a2t-products .pm-category-link,
#a2t-products .pm-category-more,
#a2t-products .pm-category-mobile-trigger,
#a2t-products .pm-category-popover,
#a2t-products .pm-category-popover button,
#a2t-products .pm-category-search,
#a2t-products .pm-category-menu-list a,
#a2t-products .pm-search,
#a2t-products .pm-sort-select,
#a2t-products .pm-active-filters a,
#a2t-products .pm-product,
#a2t-products .pm-product-meta > span,
#a2t-products .pm-empty,
#a2t-products .pm-pagination :is(a, span) {
  border-radius: 0 !important;
}

#a2t-products .a2t-store-featured-product {
  position: relative;
  display: grid !important;
  grid-template-rows: minmax(260px, 1fr) auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--store-dark-line) !important;
  background: #101715 !important;
  color: inherit !important;
  box-shadow: none !important;
  transition: border-color .24s ease, background .24s ease !important;
}

#a2t-products a.a2t-store-featured-product:hover {
  border-color: #65736c !important;
  background: #121a18 !important;
}

#a2t-products .a2t-store-featured-media {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0 !important;
  border-bottom: 1px solid var(--store-dark-line) !important;
  background: #15201c !important;
}

#a2t-products .a2t-store-featured-media > img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .3s ease;
}

#a2t-products a.a2t-store-featured-product:hover .a2t-store-featured-media > img {
  transform: scale(1.025);
}

#a2t-products .a2t-store-featured-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 16px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(200,243,79,.08), transparent 42%),
    linear-gradient(155deg, transparent 52%, rgba(200,243,79,.08) 52.3%, transparent 52.7%),
    #14201b;
}

#a2t-products .a2t-store-featured-fallback span {
  color: #87948d;
  font: 500 8px/1.4 var(--store-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

#a2t-products .a2t-store-featured-fallback strong {
  grid-column: 1 / -1;
  align-self: end;
  max-width: 340px;
  color: #e8ece8;
  font-size: clamp(26px, 2.8vw, 39px);
  line-height: 1;
  letter-spacing: -.05em;
}

#a2t-products .a2t-store-featured-fallback i {
  color: var(--store-accent);
  font: 400 17px/1 var(--store-mono);
  font-style: normal;
}

#a2t-products .a2t-store-featured-copy {
  padding: 20px 22px 21px;
}

#a2t-products .a2t-store-featured-meta,
#a2t-products .a2t-store-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

#a2t-products .a2t-store-featured-meta span,
#a2t-products .a2t-store-featured-meta small {
  min-width: 0;
  color: var(--store-accent);
  font: 500 8px/1.3 var(--store-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

#a2t-products .a2t-store-featured-meta small {
  max-width: 42%;
  overflow: hidden;
  color: #7d8983;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#a2t-products .a2t-store-featured-copy h2 {
  margin: 15px 0 8px !important;
  color: #edf1ed !important;
  font-size: clamp(24px, 2.6vw, 34px) !important;
  font-weight: 600 !important;
  line-height: 1.03 !important;
  letter-spacing: -.05em !important;
}

#a2t-products .a2t-store-featured-copy > p {
  min-height: 43px;
  margin: 0 !important;
  color: #8e9a94 !important;
  font-size: 11px !important;
  line-height: 1.65 !important;
}

#a2t-products .a2t-store-featured-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--store-dark-line);
}

#a2t-products .a2t-store-featured-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

#a2t-products .a2t-store-featured-price strong,
#a2t-products .a2t-store-featured-price span {
  color: #f3f5f1;
  font: 500 13px/1 var(--store-mono);
  letter-spacing: -.02em;
  text-transform: uppercase;
}

#a2t-products .a2t-store-featured-price small {
  color: #717d77;
  font: 400 9px/1 var(--store-mono);
  text-decoration: line-through;
}

#a2t-products .a2t-store-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #cbd3ce;
  font: 500 8px/1 var(--store-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

#a2t-products .a2t-store-featured-link i {
  color: var(--store-accent);
  font-style: normal;
  transition: transform .2s ease;
}

#a2t-products a.a2t-store-featured-product:hover .a2t-store-featured-link i {
  transform: translateX(5px);
}

/* Marketplace: full canvas, no permanent sidebar, no second giant heading. */
#a2t-products .pm-marketplace {
  position: relative;
  padding: 54px 0 112px !important;
  background: var(--store-ink) !important;
}

#a2t-products .pm-marketplace-shell {
  width: min(var(--a2t-container), calc(100% - 80px));
  max-width: var(--a2t-container);
  margin-inline: auto;
}

#a2t-products .pm-marketplace-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--store-dark-line);
}

#a2t-products .pm-marketplace-head > div > span {
  display: block;
  color: var(--store-accent);
  font: 500 9px/1.3 var(--store-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

#a2t-products .pm-marketplace-head > div > p {
  max-width: 620px;
  margin: 8px 0 0 !important;
  color: #8b9791;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

#a2t-products .pm-marketplace-count {
  flex: 0 0 auto;
  margin: 0 !important;
  color: #7c8882;
  font: 500 8px/1 var(--store-mono) !important;
  letter-spacing: .08em;
  text-transform: uppercase;
}

#a2t-products .pm-control-deck {
  position: relative;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .8fr);
  gap: 24px;
  align-items: center;
  padding: 18px 0 22px;
  border-bottom: 1px solid var(--store-dark-line);
}

#a2t-products .pm-category-system,
#a2t-products .pm-category-desktop,
#a2t-products .pm-category-primary {
  min-width: 0;
}

#a2t-products .pm-category-system {
  position: relative;
}

#a2t-products .pm-category-primary {
  display: flex;
  align-items: center;
  gap: 2px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  white-space: nowrap;
}

#a2t-products .pm-category-primary::-webkit-scrollbar {
  display: none;
}

#a2t-products .pm-category-primary.is-enhanced {
  overflow: hidden;
}

#a2t-products .pm-category-link,
#a2t-products .pm-category-more,
#a2t-products .pm-category-mobile-trigger {
  min-height: var(--pm-control-height);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 210px;
  padding: 0 12px;
  border: 0 !important;
  border-bottom: 1px solid transparent !important;
  background: transparent !important;
  color: #9aa69f !important;
  box-shadow: none !important;
  font: 500 8px/1 var(--store-mono) !important;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

#a2t-products .pm-category-link > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#a2t-products .pm-category-link:hover,
#a2t-products .pm-category-link.active,
#a2t-products .pm-category-more:hover,
#a2t-products .pm-category-more[aria-expanded="true"] {
  border-bottom-color: var(--store-accent) !important;
  color: var(--store-accent) !important;
}

#a2t-products .pm-category-link.is-overflowed {
  display: none !important;
}

#a2t-products .pm-category-more {
  margin-left: auto;
  padding-right: 8px;
  cursor: pointer;
}

#a2t-products .pm-category-more b,
#a2t-products .pm-category-mobile-trigger b {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  padding: 0 5px;
  border: 1px solid #3a4741;
  color: #8d9993;
  font: 500 7px/1 var(--store-mono);
}

#a2t-products .pm-category-more i,
#a2t-products .pm-category-mobile-trigger i {
  font-size: 7px;
  transition: transform .2s ease;
}

#a2t-products :is(.pm-category-more,.pm-category-mobile-trigger)[aria-expanded="true"] i {
  transform: rotate(180deg);
}

#a2t-products .pm-category-mobile-trigger {
  display: none;
  width: 100%;
  max-width: none;
  justify-content: space-between;
  border: 1px solid var(--store-dark-line) !important;
}

#a2t-products .pm-category-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(4, 7, 8, .68);
  backdrop-filter: blur(2px);
}

#a2t-products .pm-category-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 9991;
  width: min(390px, calc(100vw - 40px));
  max-height: min(520px, calc(100vh - 150px));
  overflow: hidden;
  border: 1px solid #46524c !important;
  background: #0e1513 !important;
  box-shadow: 0 22px 60px rgba(0,0,0,.34) !important;
}

#a2t-products .pm-category-popover[hidden],
#a2t-products .pm-category-backdrop[hidden],
#a2t-products .pm-category-more[hidden],
#a2t-products .pm-category-no-match[hidden],
#a2t-products [data-category-menu-item][hidden] {
  display: none !important;
}

#a2t-products .pm-category-popover > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--store-dark-line);
}

#a2t-products .pm-category-popover > header span,
#a2t-products .pm-category-popover > header small {
  display: block;
}

#a2t-products .pm-category-popover > header span {
  color: #e5eae6;
  font-size: 14px;
  font-weight: 600;
}

#a2t-products .pm-category-popover > header small {
  margin-top: 4px;
  color: #74817a;
  font: 400 8px/1 var(--store-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}

#a2t-products .pm-category-popover > header button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--store-dark-line) !important;
  background: transparent !important;
  color: #9ba69f !important;
  cursor: pointer;
}

#a2t-products .pm-category-search {
  height: 44px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  margin: 14px 14px 8px;
  border: 1px solid var(--store-dark-line) !important;
  background: #0b1110 !important;
}

#a2t-products .pm-category-search i {
  display: grid;
  place-items: center;
  color: var(--store-accent);
  font-size: 10px;
}

#a2t-products .pm-category-search input {
  width: 100%;
  height: 100%;
  padding: 0 12px 0 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  color: #e9ede9 !important;
  box-shadow: none !important;
  font-size: 11px !important;
}

#a2t-products .pm-category-menu-list {
  max-height: 360px;
  overflow-y: auto;
  padding: 6px 14px 14px;
  scrollbar-width: thin;
  scrollbar-color: #46534d transparent;
}

#a2t-products .pm-category-menu-list a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 10px;
  border: 0 !important;
  border-bottom: 1px solid #26312d !important;
  background: transparent !important;
  color: #a9b3ae !important;
  font-size: 11px;
}

#a2t-products .pm-category-menu-list a > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#a2t-products .pm-category-menu-list a small {
  flex: 0 0 auto;
  color: #6f7b75;
  font: 400 8px/1 var(--store-mono);
}

#a2t-products .pm-category-menu-list a:hover,
#a2t-products .pm-category-menu-list a.active {
  background: rgba(200,243,79,.055) !important;
  color: var(--store-accent) !important;
}

#a2t-products .pm-category-menu-list a.active {
  border-bottom-color: rgba(200,243,79,.45) !important;
}

#a2t-products .pm-category-no-match,
#a2t-products .pm-category-empty {
  margin: 0 !important;
  padding: 24px 18px !important;
  color: #75817b !important;
  font: 400 9px/1.6 var(--store-mono) !important;
  text-align: center;
  text-transform: uppercase;
}

#a2t-products .pm-control-form {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) 164px;
  gap: 8px;
  margin: 0;
}

#a2t-products .pm-search {
  width: 100% !important;
  height: var(--pm-control-height) !important;
  display: grid !important;
  grid-template-columns: 38px minmax(0, 1fr) auto !important;
  align-items: stretch !important;
  overflow: hidden !important;
  border: 1px solid var(--store-dark-line) !important;
  background: rgba(17,24,23,.3) !important;
}

#a2t-products .pm-search > i {
  display: grid !important;
  place-items: center !important;
  color: var(--store-accent) !important;
  font-size: 11px !important;
}

#a2t-products .pm-search input {
  min-width: 0 !important;
  height: 100% !important;
  padding: 0 8px 0 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  color: #edf1ed !important;
  box-shadow: none !important;
  font-size: 11px !important;
}

#a2t-products .pm-search button {
  min-width: 78px;
  height: 100% !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 12px !important;
  border: 0 !important;
  border-left: 1px solid var(--store-dark-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #a7b1ac !important;
  box-shadow: none !important;
  font: 500 8px/1 var(--store-mono) !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}

#a2t-products .pm-search button i {
  color: var(--store-accent);
  font-size: 8px;
}

#a2t-products .pm-search button:hover {
  background: var(--store-accent) !important;
  color: var(--store-ink) !important;
}

#a2t-products .pm-search button:hover i {
  color: var(--store-ink);
}

#a2t-products .pm-sort-select {
  position: relative;
  height: var(--pm-control-height);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 22px;
  align-items: center;
  gap: 7px;
  padding: 0 10px 0 12px;
  border: 1px solid var(--store-dark-line) !important;
  background: rgba(17,24,23,.3) !important;
}

#a2t-products .pm-sort-select > span {
  color: #6f7c75;
  font: 500 7px/1 var(--store-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

#a2t-products .pm-sort-select select {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  appearance: none;
  background: transparent !important;
  color: #d9dfda !important;
  box-shadow: none !important;
  font: 500 8px/1 var(--store-mono) !important;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
}

#a2t-products .pm-sort-select select option {
  background: #111817;
  color: #eef2ee;
}

#a2t-products .pm-sort-select > i {
  color: var(--store-accent);
  font-size: 7px;
  pointer-events: none;
}

#a2t-products .pm-control-form[data-loading] :is(.pm-search,.pm-sort-select),
#a2t-products [data-live-results][data-loading] {
  opacity: .62;
}

#a2t-products .pm-active-filters {
  min-height: 45px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0 !important;
  padding: 14px 0 6px;
}

#a2t-products .pm-active-filters-label {
  padding: 0 !important;
  border: 0 !important;
  color: #69766f !important;
  font: 500 7px/1 var(--store-mono) !important;
  letter-spacing: .09em;
  text-transform: uppercase;
}

#a2t-products .pm-active-filters a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 9px !important;
  border: 1px solid var(--store-dark-line) !important;
  background: transparent !important;
  color: #abb5b0 !important;
  font: 500 8px/1 var(--store-mono) !important;
  letter-spacing: .04em;
  text-transform: uppercase;
}

#a2t-products .pm-active-filters a i {
  color: var(--store-accent);
  font-size: 7px;
}

#a2t-products .pm-active-filters a:hover {
  border-color: #65726c !important;
  color: #eef2ee !important;
}

#a2t-products .pm-active-filters .pm-clear-filters {
  margin-left: auto;
  border-color: transparent !important;
  color: var(--store-accent) !important;
}

/* Existing catalogue remains functional until the dedicated card/grid pass,
   but it inherits the new full-width, square marketplace immediately. */
#a2t-products .pm-grid {
  margin-top: 22px;
}

#a2t-products .pm-product,
#a2t-products .pm-empty,
#a2t-products .pm-card-action,
#a2t-products .pm-mock-window,
#a2t-products .pm-product-category,
#a2t-products .pm-product-status {
  border-radius: 0 !important;
}

#a2t-products .pm-catalog-footer {
  margin-top: 32px !important;
}

#a2t-products .pm-pagination {
  align-items: center;
}

#a2t-products .pm-pagination a,
#a2t-products .pm-pagination span {
  border: 0 !important;
  border-bottom: 1px solid transparent !important;
  background: transparent !important;
}

#a2t-products .pm-pagination a:hover,
#a2t-products .pm-pagination .current {
  border-bottom-color: var(--store-accent) !important;
  background: transparent !important;
  color: var(--store-accent) !important;
}

#a2t-products .pm-pagination-next {
  width: auto !important;
  min-width: 74px !important;
  gap: 8px;
}

html.pm-category-panel-open,
html.pm-category-panel-open body {
  overflow: hidden;
}

@media (max-width: 1100px) {
  #a2t-products .a2t-store-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, .78fr) !important;
    gap: 48px !important;
  }

  #a2t-products .a2t-store-hero h1 {
    font-size: clamp(54px, 6vw, 76px) !important;
  }

  #a2t-products .pm-control-deck {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .92fr);
    gap: 16px;
  }

  #a2t-products .pm-control-form {
    grid-template-columns: minmax(210px, 1fr) 150px;
  }
}

@media (max-width: 991px) {
  #a2t-products .a2t-store-hero {
    padding: 68px 0 72px !important;
  }

  #a2t-products .a2t-store-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }

  #a2t-products .a2t-store-hero-copy,
  #a2t-products .a2t-store-hero h1,
  #a2t-products .a2t-store-hero-copy > p:not(.a2t-store-kicker) {
    max-width: 760px !important;
  }

  #a2t-products .a2t-store-featured-product {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
    grid-template-rows: 1fr;
  }

  #a2t-products .a2t-store-featured-media {
    aspect-ratio: 4 / 3;
    border-right: 1px solid var(--store-dark-line) !important;
    border-bottom: 0 !important;
  }

  #a2t-products .a2t-store-featured-copy {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #a2t-products .pm-marketplace {
    padding-top: 42px !important;
  }

  #a2t-products .pm-control-deck {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #a2t-products .pm-category-desktop {
    display: none;
  }

  #a2t-products .pm-category-mobile-trigger {
    display: flex;
  }

  #a2t-products .pm-category-popover {
    position: fixed;
    top: auto;
    right: 20px;
    bottom: 20px;
    left: 20px;
    width: auto;
    max-height: min(72vh, 620px);
  }

  #a2t-products .pm-category-menu-list {
    max-height: min(50vh, 430px);
  }

  #a2t-products .pm-control-form {
    grid-template-columns: minmax(0, 1fr) 180px;
  }
}

@media (max-width: 700px) {
  #a2t-products .a2t-store-shell,
  #a2t-products .pm-marketplace-shell {
    width: calc(100% - 32px) !important;
  }

  #a2t-products .a2t-store-hero {
    padding: 52px 0 58px !important;
  }

  #a2t-products .a2t-store-hero h1 {
    margin-top: 18px !important;
    font-size: clamp(46px, 14vw, 66px) !important;
  }

  #a2t-products .a2t-store-hero-copy > p:not(.a2t-store-kicker) {
    margin-top: 22px !important;
    font-size: 14px !important;
  }

  #a2t-products .a2t-store-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 26px !important;
  }

  #a2t-products .a2t-store-button {
    width: 100%;
  }

  #a2t-products .a2t-store-featured-product {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  #a2t-products .a2t-store-featured-media {
    aspect-ratio: 16 / 10;
    border-right: 0 !important;
    border-bottom: 1px solid var(--store-dark-line) !important;
  }

  #a2t-products .a2t-store-featured-copy {
    display: block;
    padding: 18px;
  }

  #a2t-products .pm-marketplace {
    padding: 36px 0 80px !important;
  }

  #a2t-products .pm-marketplace-head {
    align-items: flex-start;
  }

  #a2t-products .pm-marketplace-head > div > p {
    max-width: 78%;
    font-size: 12px !important;
  }

  #a2t-products .pm-control-deck {
    padding-top: 14px;
  }

  #a2t-products .pm-control-form {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  #a2t-products .pm-sort-select {
    width: 100%;
  }

  #a2t-products .pm-category-popover {
    right: 0;
    bottom: 0;
    left: 0;
    max-height: min(78vh, 680px);
    border-right: 0 !important;
    border-bottom: 0 !important;
    border-left: 0 !important;
  }

  #a2t-products .pm-category-menu-list {
    max-height: min(56vh, 480px);
  }

  #a2t-products .pm-active-filters .pm-clear-filters {
    margin-left: 0;
  }

  /* Retire the previous mobile horizontal category rail if old markup is
     encountered through cached templates. */
  #a2t-products .pm-mobile-filter-rail {
    display: none !important;
  }
}

@media (max-width: 440px) {
  #a2t-products .a2t-store-featured-meta,
  #a2t-products .a2t-store-featured-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  #a2t-products .a2t-store-featured-meta small {
    max-width: 100%;
  }

  #a2t-products .pm-marketplace-head {
    gap: 14px;
  }

  #a2t-products .pm-marketplace-count {
    padding-top: 2px;
    white-space: nowrap;
  }

  #a2t-products .pm-search button {
    min-width: 46px;
  }

  #a2t-products .pm-search button span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #a2t-products .a2t-store-featured-media > img,
  #a2t-products .a2t-store-featured-link i,
  #a2t-products .pm-category-more i,
  #a2t-products .pm-category-mobile-trigger i {
    transition: none !important;
  }

  #a2t-products a.a2t-store-featured-product:hover .a2t-store-featured-media > img,
  #a2t-products a.a2t-store-featured-product:hover .a2t-store-featured-link i {
    transform: none !important;
  }
}

/* ==========================================================================
   Products Upgrade 15 — Editorial catalogue system
   Square, resilient 2-column product catalogue. The marketplace controls
   remain owned by Upgrade 13–14; this block only replaces catalogue cards.
   ========================================================================== */

#a2t-products .pm-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px 20px !important;
  align-items: stretch !important;
  margin-top: 28px !important;
}

#a2t-products .pm-empty {
  grid-column: 1 / -1;
}

#a2t-products .pm-product {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: 100% !important;
  overflow: hidden !important;
  border: 1px solid var(--store-dark-line) !important;
  border-radius: 0 !important;
  background: #0f1614 !important;
  color: var(--store-dark-text) !important;
  box-shadow: none !important;
  transform: none !important;
  transition: border-color .22s ease, background-color .22s ease !important;
}

#a2t-products .pm-product:hover,
#a2t-products .pm-product:focus-within {
  border-color: #536159 !important;
  background: #111a17 !important;
  transform: none !important;
  box-shadow: none !important;
}

#a2t-products .pm-product.is-unavailable {
  opacity: .78;
}

#a2t-products .pm-product-media {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 10 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-right: 0 !important;
  border-bottom: 1px solid var(--store-dark-line) !important;
  border-radius: 0 !important;
  background: #13201b !important;
  isolation: isolate;
}

#a2t-products .pm-product-media::after {
  inset: auto 0 0 !important;
  height: 34% !important;
  z-index: 3 !important;
  opacity: .68 !important;
  background: linear-gradient(180deg, transparent, rgba(6, 11, 9, .72)) !important;
}

#a2t-products .pm-product-media > img {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: scale(1.001) !important;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), filter .28s ease !important;
}

#a2t-products .pm-product:hover .pm-product-media > img,
#a2t-products .pm-product:focus-within .pm-product-media > img {
  transform: scale(1.028) !important;
}

#a2t-products .pm-product-media-action {
  position: absolute;
  right: 16px;
  bottom: 15px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #eaf0eb;
  font: 600 8px/1 var(--store-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease, color .2s ease;
}

#a2t-products .pm-product-media-action i {
  color: var(--store-accent);
  font-style: normal;
  font-size: 11px;
}

#a2t-products .pm-product:hover .pm-product-media-action,
#a2t-products .pm-product:focus-within .pm-product-media-action {
  opacity: 1;
  transform: translateY(0);
}

#a2t-products .pm-product-fallback {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: 22px !important;
  background:
    linear-gradient(135deg, rgba(200, 243, 79, .055), transparent 43%),
    #12201a !important;
  color: #dce3dd !important;
}

#a2t-products .pm-fallback-brand {
  color: var(--store-accent) !important;
  font: 600 8px/1 var(--store-mono) !important;
  letter-spacing: .12em !important;
  text-transform: uppercase;
}

#a2t-products .pm-fallback-title {
  position: relative;
  z-index: 2;
  max-width: 68%;
  margin-top: auto;
  color: #eef2ee !important;
  font: 600 clamp(25px, 2.1vw, 34px)/1.02 var(--store-sans) !important;
  letter-spacing: -.055em !important;
}

#a2t-products .pm-mock-window {
  position: absolute !important;
  inset: 22% 9% 11% !important;
  padding: 15px !important;
  border: 1px solid #405349 !important;
  border-radius: 0 !important;
  background: rgba(8, 15, 12, .62) !important;
}

#a2t-products .pm-product-body {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  min-width: 0 !important;
  min-height: 330px !important;
  padding: 24px 25px 22px !important;
}

#a2t-products .pm-product-meta {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 18px !important;
  min-width: 0;
  margin: 0 !important;
}

#a2t-products .pm-product-identity,
#a2t-products .pm-product-flags {
  display: flex;
  align-items: center;
  min-width: 0;
}

#a2t-products .pm-product-identity {
  flex: 1 1 auto;
  gap: 7px;
  overflow: hidden;
}

#a2t-products .pm-product-flags {
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 6px;
}

#a2t-products .pm-product-category,
#a2t-products .pm-product-framework,
#a2t-products .pm-product-flag,
#a2t-products .pm-product-status {
  border-radius: 0 !important;
  font: 600 7px/1 var(--store-mono) !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

#a2t-products .pm-product-category,
#a2t-products .pm-product-framework {
  max-width: 60%;
  overflow: hidden;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#a2t-products .pm-product-category {
  color: var(--store-accent) !important;
}

#a2t-products .pm-product-framework {
  color: #69766f !important;
}

#a2t-products .pm-product-flag,
#a2t-products .pm-product-status {
  margin: 0 !important;
  padding: 5px 6px !important;
  border: 1px solid var(--store-dark-line) !important;
  background: transparent !important;
  color: #95a29b !important;
  white-space: nowrap;
}

#a2t-products .pm-product-flag.featured {
  border-color: rgba(200, 243, 79, .35) !important;
  color: var(--store-accent) !important;
}

#a2t-products .pm-product-flag.sale {
  color: #dfe8e2 !important;
}

#a2t-products .pm-product-status.custom {
  border-color: rgba(200, 243, 79, .25) !important;
  color: var(--store-accent) !important;
}

#a2t-products .pm-product-status.off {
  color: #6d7872 !important;
}

#a2t-products .pm-product-copy {
  min-width: 0;
  padding-top: 23px;
}

#a2t-products .pm-product h2 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 2.04em;
  margin: 0 !important;
  color: #f0f3f0 !important;
  font: 600 clamp(27px, 2.2vw, 36px)/1.02 var(--store-sans) !important;
  letter-spacing: -.055em !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#a2t-products .pm-product h2 a {
  color: inherit !important;
  text-decoration: none !important;
}

#a2t-products .pm-product-copy > p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 4.65em !important;
  margin: 15px 0 0 !important;
  color: #8d9993 !important;
  font: 400 13px/1.55 var(--store-sans) !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#a2t-products .pm-product-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
  margin-top: 22px;
  border-top: 1px solid var(--store-dark-line);
  border-bottom: 1px solid var(--store-dark-line);
}

#a2t-products .pm-product-specs > span {
  min-width: 0;
  padding: 12px 12px 12px 0;
}

#a2t-products .pm-product-specs > span + span {
  padding-left: 12px;
  border-left: 1px solid var(--store-dark-line);
}

#a2t-products .pm-product-specs small,
#a2t-products .pm-product-specs strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#a2t-products .pm-product-specs small {
  margin-bottom: 7px;
  color: #59665f;
  font: 600 6px/1 var(--store-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

#a2t-products .pm-product-specs strong {
  color: #aeb8b2;
  font: 500 8px/1.2 var(--store-mono);
}

#a2t-products .pm-product-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 17px;
  color: #78857e;
}

#a2t-products .pm-product-proof > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  color: inherit;
  font: 500 7px/1 var(--store-mono);
  letter-spacing: .02em;
}

#a2t-products .pm-product-proof i {
  color: #65726b;
  font-size: 8px;
}

#a2t-products .pm-product-proof .pm-stat-rating i {
  color: var(--store-accent);
}

#a2t-products .pm-product-proof strong,
#a2t-products .pm-product-proof small {
  color: inherit;
  font: inherit;
}

#a2t-products .pm-product-proof small {
  color: #5f6c65;
}

#a2t-products .pm-product-footer {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin-top: auto !important;
  padding-top: 23px !important;
}

#a2t-products .pm-price {
  display: flex !important;
  align-items: baseline !important;
  flex-wrap: wrap;
  gap: 8px !important;
  min-width: 0;
}

#a2t-products .pm-price strong {
  color: #f2f5f2 !important;
  font: 600 18px/1 var(--store-mono) !important;
  letter-spacing: -.035em;
}

#a2t-products .pm-price .pm-price-custom {
  color: #dce4de !important;
  font-size: 13px !important;
  letter-spacing: .01em;
  text-transform: uppercase;
}

#a2t-products .pm-price small {
  color: #606d66 !important;
  font: 500 9px/1 var(--store-mono) !important;
  text-decoration: line-through;
}

#a2t-products .pm-product-actions {
  display: flex !important;
  align-items: stretch !important;
  flex: 0 0 auto;
  gap: 7px !important;
}

#a2t-products .pm-product-view,
#a2t-products .pm-quick-cart {
  min-height: 42px;
  border: 1px solid var(--store-dark-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #dce4de !important;
}

#a2t-products .pm-product-view {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 142px;
  padding: 0 13px;
  font: 600 8px/1 var(--store-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}

#a2t-products .pm-product-view i {
  color: var(--store-accent);
  font-style: normal;
  transition: transform .18s ease;
}

#a2t-products .pm-product-view:hover,
#a2t-products .pm-product-view:focus-visible {
  border-color: var(--store-accent) !important;
  background: rgba(200, 243, 79, .035) !important;
  color: #fff !important;
}

#a2t-products .pm-product-view:hover i,
#a2t-products .pm-product-view:focus-visible i {
  transform: translateX(4px);
}

#a2t-products .pm-quick-cart-form {
  display: flex;
  margin: 0 !important;
}

#a2t-products .pm-quick-cart {
  width: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--store-accent) !important;
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease, color .18s ease;
}

#a2t-products .pm-quick-cart:hover,
#a2t-products .pm-quick-cart:focus-visible {
  border-color: var(--store-accent) !important;
  background: var(--store-accent) !important;
  color: #0b0f0d !important;
}

#a2t-products .pm-quick-cart:disabled {
  cursor: not-allowed;
  opacity: .42;
}

#a2t-products .pm-catalog-footer {
  grid-column: 1 / -1;
  margin-top: 38px !important;
}

@media (max-width: 991px) {
  #a2t-products .pm-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
  }

  #a2t-products .pm-product-body {
    min-height: 315px !important;
  }

  #a2t-products .pm-product-media {
    aspect-ratio: 16 / 9 !important;
  }
}

@media (max-width: 700px) {
  #a2t-products .pm-grid {
    margin-top: 22px !important;
  }

  #a2t-products .pm-product-body {
    min-height: 0 !important;
    padding: 20px 19px 19px !important;
  }

  #a2t-products .pm-product-meta {
    gap: 10px !important;
  }

  #a2t-products .pm-product-flags {
    flex-wrap: wrap;
  }

  #a2t-products .pm-product h2 {
    min-height: auto;
    font-size: clamp(27px, 8.5vw, 34px) !important;
  }

  #a2t-products .pm-product-copy > p {
    min-height: auto !important;
  }

  #a2t-products .pm-product-specs {
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  }

  #a2t-products .pm-product-footer {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  #a2t-products .pm-product-actions,
  #a2t-products .pm-product-view {
    width: 100%;
  }

  #a2t-products .pm-product-view {
    flex: 1 1 auto;
  }

  #a2t-products .pm-product-media-action {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 430px) {
  #a2t-products .pm-product-identity {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  #a2t-products .pm-product-category,
  #a2t-products .pm-product-framework {
    max-width: 100%;
  }

  #a2t-products .pm-product-specs > span {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #a2t-products .pm-product,
  #a2t-products .pm-product-media > img,
  #a2t-products .pm-product-media-action,
  #a2t-products .pm-product-view,
  #a2t-products .pm-product-view i,
  #a2t-products .pm-quick-cart {
    transition: none !important;
  }

  #a2t-products .pm-product:hover .pm-product-media > img,
  #a2t-products .pm-product:focus-within .pm-product-media > img,
  #a2t-products .pm-product-view:hover i,
  #a2t-products .pm-product-view:focus-visible i {
    transform: none !important;
  }
}

/* ==========================================================================
   Upgrade 16 — contextual commerce + marketplace completion
   ========================================================================== */

#a2t-products .pm-category-mobile-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
  text-align: left;
}

#a2t-products .pm-category-mobile-copy em,
#a2t-products .pm-category-mobile-copy small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: normal;
}

#a2t-products .pm-category-mobile-copy em {
  color: #dfe5e0;
  font: 500 8px/1 var(--store-mono);
  letter-spacing: .07em;
  text-transform: uppercase;
}

#a2t-products .pm-category-mobile-copy small {
  max-width: 280px;
  color: #74817a;
  font: 400 9px/1.2 var(--store-sans);
  letter-spacing: 0;
  text-transform: none;
}

#a2t-products .pm-catalog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(34px, 4vw, 54px) !important;
  padding-top: 18px;
  border-top: 1px solid var(--store-dark-line);
}

#a2t-products .pm-page-status {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 0 !important;
  color: #6f7b75;
  font: 500 8px/1 var(--store-mono) !important;
  letter-spacing: .06em;
  text-transform: uppercase;
}

#a2t-products .pm-page-status strong {
  color: #e7ece8;
  font-size: 11px;
}

#a2t-products .pm-page-status i {
  color: #4e5b55;
  font-style: normal;
}

#a2t-products .pm-page-status b {
  color: #8b9791;
  font-weight: 500;
}

#a2t-products .pm-page-status small {
  margin-left: 7px;
  color: #66736d;
  font: inherit;
}

#a2t-products .pm-custom-build {
  border-top: 1px solid rgba(200,243,79,.55);
  border-bottom: 1px solid rgba(200,243,79,.55);
  background: #111817;
}

#a2t-products .pm-custom-build-shell {
  width: min(var(--a2t-container), calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: clamp(34px, 6vw, 88px);
}

#a2t-products .pm-custom-build-copy {
  padding: clamp(48px, 6.5vw, 84px) 0;
}

#a2t-products .pm-custom-build-copy > span {
  display: block;
  margin-bottom: 18px;
  color: var(--store-accent);
  font: 500 8px/1.3 var(--store-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

#a2t-products .pm-custom-build-copy h2 {
  max-width: 730px;
  margin: 0 !important;
  color: #f1f3ef !important;
  font: 500 clamp(40px, 5.3vw, 72px)/.98 var(--store-sans) !important;
  letter-spacing: -.06em !important;
}

#a2t-products .pm-custom-build-copy p {
  max-width: 620px;
  margin: 23px 0 0 !important;
  color: #8f9b95 !important;
  font-size: 14px !important;
  line-height: 1.75 !important;
}

#a2t-products .pm-custom-build-action {
  min-width: 282px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  align-self: stretch;
  padding: 30px 32px;
  border: 0 !important;
  border-left: 1px solid rgba(200,243,79,.55) !important;
  border-radius: 0 !important;
  background: var(--store-accent) !important;
  color: var(--store-ink) !important;
  text-decoration: none !important;
  font: 600 9px/1.35 var(--store-mono) !important;
  letter-spacing: .06em;
  text-transform: uppercase;
}

#a2t-products .pm-custom-build-action i {
  flex: 0 0 auto;
  font-style: normal;
  font-size: 20px;
  transition: transform .2s ease;
}

#a2t-products .pm-custom-build-action:hover i { transform: translateX(7px); }

/* The full-width custom-development transition is now the single primary
   customization CTA on the Products landing page. */
#a2t-products .pm-standards-cta { display: none !important; }

@media (max-width: 991px) {
  #a2t-products .pm-category-popover {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
  }

  #a2t-products .pm-category-popover > header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #0e1513;
  }

  #a2t-products .pm-category-search {
    position: sticky;
    top: 68px;
    z-index: 2;
    background: #0b1110 !important;
  }

  #a2t-products .pm-category-menu-list {
    min-height: 0;
    max-height: none;
  }

  #a2t-products .pm-custom-build-shell {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #a2t-products .pm-custom-build-action {
    min-width: 0;
    min-height: 76px;
    border-top: 1px solid rgba(200,243,79,.55) !important;
    border-left: 0 !important;
  }
}

@media (max-width: 700px) {
  #a2t-products .pm-category-mobile-trigger {
    min-height: 54px;
    padding: 8px 12px;
  }

  #a2t-products .pm-category-mobile-copy small { max-width: 200px; }

  #a2t-products .pm-category-popover {
    top: var(--a2t-header-height, 82px);
    right: 0;
    bottom: 0;
    left: 0;
    max-height: none;
    width: 100%;
    border-top: 1px solid #46524c !important;
  }

  #a2t-products .pm-category-popover > header { min-height: 64px; }
  #a2t-products .pm-category-search { top: 64px; margin: 12px 14px 8px; }
  #a2t-products .pm-category-menu-list { padding-bottom: max(26px, env(safe-area-inset-bottom)); }

  #a2t-products .pm-catalog-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  #a2t-products .pm-pagination {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  #a2t-products .pm-pagination::-webkit-scrollbar { display: none; }

  #a2t-products .pm-custom-build-shell {
    width: calc(100% - 32px);
  }

  #a2t-products .pm-custom-build-copy {
    padding: 50px 0 42px;
  }

  #a2t-products .pm-custom-build-copy h2 {
    font-size: clamp(38px, 12vw, 54px) !important;
  }

  #a2t-products .pm-custom-build-action {
    margin-inline: -16px;
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #a2t-products .pm-custom-build-action i { transition: none !important; }
  #a2t-products .pm-custom-build-action:hover i { transform: none; }
}

/* Mobile control order: search first, then category + sort as equal utilities. */
@media (max-width: 700px) {
  #a2t-products .pm-control-deck {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
  }

  #a2t-products .pm-control-form { display: contents; }
  #a2t-products .pm-search { grid-column: 1 / -1; grid-row: 1; }
  #a2t-products .pm-category-system { grid-column: 1; grid-row: 2; }
  #a2t-products .pm-sort-select { grid-column: 2; grid-row: 2; min-width: 0; }
  #a2t-products .pm-category-mobile-trigger { height: 54px; }
  #a2t-products .pm-sort-select { height: 54px; }
}

/* ==========================================================================
   Upgrade 17 — restrained GSAP interaction + sticky marketplace behavior
   Motion never owns layout or visibility; the page remains complete without JS.
   ========================================================================== */

@media (min-width: 992px) {
  #a2t-products .pm-control-deck {
    position: sticky;
    top: 70px;
    z-index: 90;
    margin-inline: -14px;
    padding-inline: 14px;
    background: rgba(11, 15, 13, 0);
    backdrop-filter: blur(0);
    transition: border-color .18s ease, box-shadow .18s ease, backdrop-filter .18s ease;
  }

  #a2t-products .pm-control-deck.is-stuck {
    border-bottom-color: #3a4741;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
    backdrop-filter: blur(14px);
  }

  #a2t-products .pm-control-deck.is-stuck::before {
    content: "";
    position: absolute;
    inset: 0 -999px;
    z-index: -1;
    border-bottom: 1px solid rgba(255, 255, 255, .025);
    background: rgba(11, 15, 13, .94);
    pointer-events: none;
  }
}

#a2t-products.a2t-gsap-ready .a2t-store-featured-media > img {
  transform-origin: center center;
  will-change: transform;
}

#a2t-products.a2t-gsap-ready .pm-product-media-action,
#a2t-products.a2t-gsap-ready .pm-product-view i {
  will-change: transform, opacity;
}

#a2t-products .pm-control-form[data-loading] .pm-search,
#a2t-products [data-live-results][data-loading] {
  cursor: progress;
}

#a2t-products [data-live-results][data-loading] {
  pointer-events: none;
}

@media (max-width: 991px) {
  #a2t-products .pm-control-deck {
    position: relative;
    top: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  #a2t-products .pm-control-deck,
  #a2t-products .pm-control-deck.is-stuck,
  #a2t-products .pm-control-deck.is-stuck::before {
    transition: none !important;
    backdrop-filter: none !important;
  }

  #a2t-products.a2t-gsap-ready .a2t-store-featured-media > img,
  #a2t-products.a2t-gsap-ready .pm-product-media-action,
  #a2t-products.a2t-gsap-ready .pm-product-view i {
    will-change: auto;
  }
}

/* ==========================================================================
   Upgrade 18 — Products production resilience + final UI freeze
   Handles CMS extremes, categoryless catalogues, very narrow devices and
   asynchronous failure states without changing the homepage geometry.
   ========================================================================== */

#a2t-products {
  overflow-x: clip;
}

#a2t-products :is(
  .a2t-store-hero h1,
  .a2t-store-hero-copy > p,
  .a2t-store-featured-fallback strong,
  .a2t-store-featured-copy h2,
  .a2t-store-featured-copy > p,
  .pm-marketplace-head p,
  .pm-product h2,
  .pm-product-copy > p,
  .pm-fallback-title,
  .pm-custom-build-copy h2,
  .pm-custom-build-copy p,
  .pm-standard-card h3,
  .pm-standard-card p
) {
  overflow-wrap: anywhere;
}

#a2t-products .a2t-store-button {
  min-width: 0;
  max-width: 100%;
  border-radius: 0 !important;
  white-space: normal;
  text-align: center;
}

#a2t-products .a2t-store-featured-meta > span {
  max-width: 56%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#a2t-products .a2t-store-featured-copy h2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#a2t-products .a2t-store-featured-copy > p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#a2t-products .a2t-store-featured-fallback strong,
#a2t-products .pm-fallback-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#a2t-products .pm-control-deck.is-categoryless {
  grid-template-columns: minmax(0, 1fr);
}

#a2t-products .pm-control-deck.is-categoryless .pm-control-form {
  width: 100%;
  grid-template-columns: minmax(240px, 1fr) 164px;
}

#a2t-products .pm-active-filters a:not(.pm-clear-filters) {
  max-width: min(390px, 100%);
}

#a2t-products .pm-active-filters a > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#a2t-products .pm-product-flags {
  flex-wrap: wrap;
}

#a2t-products .pm-price strong,
#a2t-products .pm-price small {
  max-width: 100%;
  overflow-wrap: anywhere;
}

#a2t-products .pm-page-status {
  flex-wrap: wrap;
}

#a2t-products .pm-custom-build-action > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

/* Loading communicates state without collapsing cards or changing layout. */
#a2t-products [data-live-results][aria-busy="true"] {
  min-height: 180px;
}

@media (max-width: 700px) {
  #a2t-products .pm-control-deck.is-categoryless {
    display: block;
  }

  #a2t-products .pm-control-deck.is-categoryless .pm-control-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  #a2t-products .pm-control-deck.is-categoryless .pm-search,
  #a2t-products .pm-control-deck.is-categoryless .pm-sort-select {
    grid-column: 1;
    grid-row: auto;
  }

  #a2t-products .pm-active-filters {
    align-items: flex-start;
  }

  #a2t-products .pm-active-filters a:not(.pm-clear-filters) {
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  #a2t-products .pm-marketplace-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  #a2t-products .pm-marketplace-count {
    white-space: normal;
  }

  #a2t-products .pm-product-meta {
    flex-direction: column;
  }

  #a2t-products .pm-product-flags {
    justify-content: flex-start;
  }

  #a2t-products .pm-product-specs {
    grid-template-columns: minmax(0, 1fr);
  }

  #a2t-products .pm-product-specs > span + span {
    padding-left: 0;
    border-top: 1px solid var(--store-dark-line);
    border-left: 0;
  }

  #a2t-products .a2t-store-featured-meta > span,
  #a2t-products .a2t-store-featured-meta small {
    max-width: 100%;
  }
}

@media (max-width: 340px) {
  #a2t-products .a2t-store-shell,
  #a2t-products .pm-marketplace-shell,
  #a2t-products .pm-custom-build-shell {
    width: calc(100% - 24px) !important;
  }

  #a2t-products .a2t-store-hero h1 {
    font-size: clamp(40px, 13vw, 46px) !important;
  }

  #a2t-products .pm-search {
    grid-template-columns: 34px minmax(0, 1fr) 44px !important;
  }

  #a2t-products .pm-search button {
    min-width: 44px;
    padding-inline: 8px !important;
  }

  #a2t-products .pm-search button span {
    display: none;
  }
}

/* ==========================================================================
   Upgrade 20 — Products hero simplification + compact card width corrections
   Removes the heavy hero product card, compacts the catalogue on wide desktop,
   and normalizes action/control heights.
   ========================================================================== */

#a2t-products {
  --pm-control-height: 44px;
  --pm-action-height: 40px;
}

#a2t-products .a2t-store-hero {
  padding: clamp(68px, 7vw, 96px) 0 clamp(56px, 6vw, 82px) !important;
}

#a2t-products .a2t-store-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr) !important;
  gap: clamp(42px, 5vw, 64px) !important;
  align-items: center !important;
}

#a2t-products .a2t-store-hero h1 {
  max-width: 700px !important;
}

#a2t-products .a2t-store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#a2t-products .a2t-store-button {
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;
  padding: 0 18px !important;
}

#a2t-products .a2t-store-hero-visual {
  display: grid;
  gap: 14px;
  min-width: 0;
  align-self: center;
}

#a2t-products .a2t-store-hero-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--store-dark-line);
  background: #101715;
}

#a2t-products .a2t-store-hero-visual .a2t-store-featured-media {
  aspect-ratio: 4 / 3;
  min-height: 0;
  border: 0 !important;
  background: #15201c !important;
}

#a2t-products .a2t-store-hero-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 16px;
  align-items: end;
  padding-top: 14px;
  border-top: 1px solid var(--store-dark-line);
}

#a2t-products .a2t-store-hero-note > span {
  grid-column: 1 / -1;
  color: var(--store-accent);
  font: 500 8px/1.3 var(--store-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

#a2t-products .a2t-store-hero-note > strong {
  min-width: 0;
  color: #edf1ed;
  font: 600 clamp(20px, 2vw, 28px)/1.02 var(--store-sans);
  letter-spacing: -.05em;
}

#a2t-products .a2t-store-hero-note > a {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--store-dark-line);
  color: #dce4de;
  text-decoration: none !important;
  font: 600 8px/1 var(--store-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

#a2t-products .a2t-store-hero-note > a i {
  color: var(--store-accent);
  font-style: normal;
  transition: transform .18s ease;
}

#a2t-products .a2t-store-hero-note > a:hover,
#a2t-products .a2t-store-hero-note > a:focus-visible {
  border-color: var(--store-accent) !important;
  color: #ffffff;
}

#a2t-products .a2t-store-hero-note > a:hover i,
#a2t-products .a2t-store-hero-note > a:focus-visible i {
  transform: translateX(4px);
}

#a2t-products .pm-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: start !important;
}

#a2t-products .pm-grid.pm-grid-single {
  grid-template-columns: minmax(0, 390px) !important;
  justify-content: start !important;
}

#a2t-products .pm-product-media {
  aspect-ratio: 4 / 3 !important;
}

#a2t-products .pm-product-body {
  min-height: 0 !important;
  padding: 18px 18px 16px !important;
}

#a2t-products .pm-product-copy {
  padding-top: 16px;
}

#a2t-products .pm-product h2 {
  min-height: 0 !important;
  font: 600 clamp(22px, 1.9vw, 30px)/1.03 var(--store-sans) !important;
}

#a2t-products .pm-product-copy > p {
  min-height: 0 !important;
  margin-top: 12px !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  -webkit-line-clamp: 2;
}

#a2t-products .pm-product-specs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

#a2t-products .pm-product-specs > span {
  padding: 10px 10px 10px 0;
}

#a2t-products .pm-product-specs > span + span {
  padding-left: 10px;
}

#a2t-products .pm-product-proof {
  gap: 12px;
  margin-top: 14px;
}

#a2t-products .pm-product-footer {
  gap: 12px !important;
  padding-top: 18px !important;
}

#a2t-products .pm-price strong {
  font-size: 16px !important;
}

#a2t-products .pm-product-view,
#a2t-products .pm-quick-cart {
  min-height: var(--pm-action-height) !important;
}

#a2t-products .pm-product-view {
  min-width: 132px;
  padding: 0 12px;
  gap: 12px;
}

#a2t-products .pm-quick-cart {
  width: var(--pm-action-height);
}

#a2t-products .pm-custom-build-shell {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: 40px 0;
}

#a2t-products .pm-custom-build-copy {
  padding: 0;
}

#a2t-products .pm-custom-build-copy h2 {
  font-size: clamp(36px, 4.6vw, 64px) !important;
}

#a2t-products .pm-custom-build-action {
  min-width: 246px;
  min-height: 76px;
  align-self: center;
  padding: 0 22px;
  border: 1px solid rgba(200,243,79,.55) !important;
  background: var(--store-accent) !important;
}

@media (max-width: 1180px) {
  #a2t-products .pm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1100px) {
  #a2t-products .a2t-store-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr) !important;
    gap: 36px !important;
  }
}

@media (max-width: 991px) {
  #a2t-products .a2t-store-hero-grid {
    grid-template-columns: 1fr !important;
  }

  #a2t-products .a2t-store-hero-visual {
    max-width: 620px;
  }

  #a2t-products .pm-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (max-width: 700px) {
  #a2t-products .a2t-store-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  #a2t-products .a2t-store-hero-visual {
    gap: 12px;
  }

  #a2t-products .a2t-store-hero-visual .a2t-store-featured-media {
    aspect-ratio: 16 / 10;
  }

  #a2t-products .a2t-store-hero-note {
    grid-template-columns: 1fr;
    align-items: start;
  }

  #a2t-products .a2t-store-hero-note > a {
    width: 100%;
    justify-content: space-between;
  }

  #a2t-products .pm-product-media {
    aspect-ratio: 16 / 10 !important;
  }

  #a2t-products .pm-custom-build-shell {
    grid-template-columns: 1fr;
    padding: 34px 0;
  }

  #a2t-products .pm-custom-build-action {
    width: 100%;
    min-width: 0;
    min-height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #a2t-products .a2t-store-hero-note > a i {
    transition: none !important;
  }

  #a2t-products .a2t-store-hero-note > a:hover i,
  #a2t-products .a2t-store-hero-note > a:focus-visible i {
    transform: none !important;
  }
}

/* ==========================================================================
   Upgrade 21 — Restore compact hero product-system panel
   The hero is editorial first; product context stays a small technical signal.
   ========================================================================== */

#a2t-products .a2t-store-hero-grid {
  grid-template-columns: minmax(0, 1.34fr) minmax(310px, .66fr) !important;
  gap: clamp(64px, 7vw, 104px) !important;
  align-items: center !important;
}

#a2t-products .a2t-store-hero-system {
  align-self: center !important;
  min-width: 0;
  padding: 16px 0 0 !important;
  border-top: 1px solid rgba(200, 243, 79, .55) !important;
  border-bottom: 1px solid var(--store-dark-line) !important;
  background: transparent !important;
}

#a2t-products .a2t-store-hero-system > span {
  margin-bottom: 7px !important;
  color: #7f8b87 !important;
  font: 500 8px/1.4 var(--store-mono) !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

#a2t-products .a2t-store-featured-slide {
  display: grid !important;
  grid-template-columns: 66px minmax(0, 1fr) !important;
  gap: 15px !important;
  align-items: center !important;
  min-height: 88px !important;
  padding: 12px 0 !important;
  color: inherit !important;
  text-decoration: none !important;
}

#a2t-products a.a2t-store-featured-slide:hover .a2t-store-featured-slide-copy strong,
#a2t-products a.a2t-store-featured-slide:focus-visible .a2t-store-featured-slide-copy strong {
  color: #ffffff !important;
}

#a2t-products .a2t-store-featured-slide-media {
  width: 66px !important;
  height: 60px !important;
  overflow: hidden !important;
  border: 1px solid var(--store-dark-line) !important;
  border-radius: 0 !important;
  background: #111a17 !important;
}

#a2t-products .a2t-store-featured-slide-media > span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--store-accent) !important;
  font: 500 15px/1 var(--store-mono) !important;
  transition: transform .18s ease;
}

#a2t-products a.a2t-store-featured-slide:hover .a2t-store-featured-slide-media > span,
#a2t-products a.a2t-store-featured-slide:focus-visible .a2t-store-featured-slide-media > span {
  transform: translate(2px, -2px);
}

#a2t-products .a2t-store-featured-slide-copy {
  min-width: 0;
}

#a2t-products .a2t-store-featured-slide-copy small,
#a2t-products .a2t-store-featured-slide-copy strong,
#a2t-products .a2t-store-featured-slide-copy em {
  display: block;
  min-width: 0;
}

#a2t-products .a2t-store-featured-slide-copy small {
  margin-bottom: 5px !important;
  color: var(--store-accent) !important;
  font: 600 7px/1.3 var(--store-mono) !important;
  letter-spacing: .09em !important;
  text-transform: uppercase !important;
}

#a2t-products .a2t-store-featured-slide-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: #e2e7e2 !important;
  font: 600 13px/1.25 var(--store-sans) !important;
  letter-spacing: -.025em !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color .18s ease;
}

#a2t-products .a2t-store-featured-slide-copy em {
  margin-top: 5px !important;
  overflow: hidden;
  color: #7f8b87 !important;
  font: 400 8px/1.45 var(--store-mono) !important;
  font-style: normal !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#a2t-products .a2t-store-system-facts {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  padding: 13px 0 !important;
  border-top: 1px solid var(--store-dark-line) !important;
}

#a2t-products .a2t-store-system-facts span {
  padding: 5px 7px !important;
  border: 1px solid #37413e !important;
  border-radius: 0 !important;
  color: #788480 !important;
  font: 400 7px/1 var(--store-mono) !important;
  letter-spacing: .07em !important;
  text-transform: uppercase !important;
}

@media (max-width: 1100px) {
  #a2t-products .a2t-store-hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(290px, .72fr) !important;
    gap: 48px !important;
  }
}

@media (max-width: 991px) {
  #a2t-products .a2t-store-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  #a2t-products .a2t-store-hero-system {
    width: min(100%, 540px);
    align-self: start !important;
  }
}

@media (max-width: 440px) {
  #a2t-products .a2t-store-featured-slide {
    grid-template-columns: 56px minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  #a2t-products .a2t-store-featured-slide-media {
    width: 56px !important;
    height: 54px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #a2t-products .a2t-store-featured-slide-media > span,
  #a2t-products .a2t-store-featured-slide-copy strong {
    transition: none !important;
  }

  #a2t-products a.a2t-store-featured-slide:hover .a2t-store-featured-slide-media > span,
  #a2t-products a.a2t-store-featured-slide:focus-visible .a2t-store-featured-slide-media > span {
    transform: none !important;
  }
}

/* ==========================================================================
   Upgrade 22 — Compact product plates
   Replace tall, detail-heavy cards with compact catalogue plates plus an
   on-media technical reveal, keeping the grid dense on wide desktop.
   ========================================================================== */

#a2t-products .pm-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

#a2t-products .pm-product {
  display: grid;
  grid-template-rows: auto auto;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

#a2t-products .pm-product-media {
  position: relative;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden;
  border: 1px solid rgba(200,243,79,.18);
  background: #111817;
}

#a2t-products .pm-product-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: rgba(200,243,79,.14);
  z-index: 3;
}

#a2t-products .pm-product-media img {
  transition: transform .28s ease;
}

#a2t-products .pm-product:hover .pm-product-media img,
#a2t-products .pm-product:focus-within .pm-product-media img {
  transform: scale(1.02);
}

#a2t-products .pm-product-tech {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 4;
  display: grid;
  gap: 10px;
  padding: 14px 14px 12px;
  background: linear-gradient(180deg, rgba(8,12,11,0) 0%, rgba(8,12,11,.84) 24%, rgba(8,12,11,.96) 100%);
  transform: translateY(calc(100% - 30px));
  opacity: .92;
  transition: transform .24s ease, opacity .24s ease;
}

#a2t-products .pm-product:hover .pm-product-tech,
#a2t-products .pm-product:focus-within .pm-product-tech {
  transform: translateY(0);
  opacity: 1;
}

#a2t-products .pm-product-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

#a2t-products .pm-product-tech-grid > span,
#a2t-products .pm-product-tech-proof > span {
  min-width: 0;
}

#a2t-products .pm-product-tech-grid small,
#a2t-products .pm-product-tech-proof small {
  display: block;
  margin-bottom: 3px;
  color: rgba(226,232,228,.58);
  font: 500 7px/1.35 var(--store-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

#a2t-products .pm-product-tech-grid strong,
#a2t-products .pm-product-tech-proof strong {
  display: block;
  overflow: hidden;
  color: #eef2ef;
  font: 500 11px/1.35 var(--store-sans);
  text-overflow: ellipsis;
  white-space: nowrap;
}

#a2t-products .pm-product-tech-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

#a2t-products .pm-product-tech-proof > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

#a2t-products .pm-product-tech-proof i {
  color: var(--store-accent);
  font-size: 10px;
}

#a2t-products .pm-product-tech-proof small {
  margin: 0;
  color: rgba(226,232,228,.7);
  font-size: 9px;
  letter-spacing: 0;
  text-transform: none;
}

#a2t-products .pm-product-media-action {
  right: 12px !important;
  bottom: 12px !important;
  z-index: 5;
}

#a2t-products .pm-product-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0;
  min-height: 0 !important;
  padding: 12px 0 0 !important;
  border: 0 !important;
  background: transparent !important;
}

#a2t-products .pm-product-meta {
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,243,79,.12);
}

#a2t-products .pm-product-copy {
  padding-top: 12px;
}

#a2t-products .pm-product h2 {
  min-height: 0 !important;
  margin: 0 !important;
  font: 600 clamp(20px, 1.85vw, 28px)/1.02 var(--store-sans) !important;
  letter-spacing: -.055em !important;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#a2t-products .pm-product-copy > p {
  margin: 10px 0 0 !important;
  min-height: 0 !important;
  color: #8e9a94 !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#a2t-products .pm-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px !important;
  margin-top: 16px;
  padding-top: 14px !important;
  border-top: 1px solid rgba(200,243,79,.12);
}

#a2t-products .pm-price {
  min-width: 0;
}

#a2t-products .pm-price strong {
  font-size: 15px !important;
}

#a2t-products .pm-price-custom {
  letter-spacing: .06em;
}

#a2t-products .pm-product-actions {
  margin-left: auto;
}

#a2t-products .pm-product-view,
#a2t-products .pm-quick-cart {
  min-height: 38px !important;
}

#a2t-products .pm-product-view {
  min-width: 128px;
}

#a2t-products .pm-quick-cart {
  width: 38px;
}

#a2t-products .pm-product-flags {
  flex: 0 0 auto;
}

#a2t-products .pm-product-flag,
#a2t-products .pm-product-status {
  min-height: 24px;
  padding: 0 8px;
}

/* Hide legacy always-visible deep metadata; it now lives in the media reveal. */
#a2t-products .pm-product-specs,
#a2t-products .pm-product-proof {
  display: none !important;
}

@media (max-width: 1180px) {
  #a2t-products .pm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 991px) {
  #a2t-products .pm-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  #a2t-products .pm-product-tech {
    transform: translateY(0);
    position: static;
    background: #0d1210;
    border-top: 1px solid rgba(200,243,79,.14);
    opacity: 1;
  }

  #a2t-products .pm-product-media-action {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 700px) {
  #a2t-products .pm-product-tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #a2t-products .pm-product-tech-grid > span:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  #a2t-products .pm-product-footer {
    align-items: stretch;
    flex-wrap: wrap;
  }

  #a2t-products .pm-product-actions {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

  #a2t-products .pm-product-view {
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  #a2t-products .pm-product-tech,
  #a2t-products .pm-product-media img {
    transition: none !important;
  }
}

/* ==========================================================================
   Upgrade 23 — Product plate refinement
   Fully hides technical metadata until hover/focus, removes the stacked-card
   feeling, and compresses the discovery surface to a balanced desktop plate.
   ========================================================================== */

#a2t-products .pm-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 26px 22px !important;
  align-items: start !important;
}

#a2t-products .pm-grid.pm-grid-single {
  grid-template-columns: minmax(0, 410px) !important;
  justify-content: start !important;
}

#a2t-products .pm-product {
  display: block !important;
  min-height: 0 !important;
  height: auto !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#a2t-products .pm-product:hover,
#a2t-products .pm-product:focus-within {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#a2t-products .pm-product-media {
  position: relative !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
  border: 1px solid #27332e !important;
  border-radius: 0 !important;
  background: #111817 !important;
}

#a2t-products .pm-product-media::after {
  display: none !important;
}

#a2t-products .pm-product-media > img {
  transform: scale(1.001) !important;
  transition: transform .32s cubic-bezier(.22,1,.36,1), filter .28s ease !important;
}

#a2t-products .pm-product:hover .pm-product-media > img,
#a2t-products .pm-product:focus-within .pm-product-media > img {
  transform: scale(1.022) !important;
  filter: brightness(.82);
}

#a2t-products .pm-product-tech {
  position: absolute !important;
  inset: auto 0 0 0 !important;
  z-index: 6 !important;
  display: grid !important;
  gap: 12px !important;
  padding: 16px !important;
  border-top: 1px solid rgba(200,243,79,.36) !important;
  background: rgba(8,13,11,.96) !important;
  opacity: 0 !important;
  transform: translateY(102%) !important;
  pointer-events: none !important;
  transition: transform .26s cubic-bezier(.22,1,.36,1), opacity .18s ease !important;
}

#a2t-products .pm-product:hover .pm-product-tech,
#a2t-products .pm-product:focus-within .pm-product-tech {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

#a2t-products .pm-product-tech-label {
  color: var(--store-accent);
  font: 600 7px/1 var(--store-mono);
  letter-spacing: .11em;
  text-transform: uppercase;
}

#a2t-products .pm-product-tech-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

#a2t-products .pm-product-tech-grid > span {
  min-width: 0 !important;
}

#a2t-products .pm-product-tech-grid small {
  display: block !important;
  margin: 0 0 5px !important;
  color: #68766f !important;
  font: 600 6px/1 var(--store-mono) !important;
  letter-spacing: .09em !important;
  text-transform: uppercase !important;
}

#a2t-products .pm-product-tech-grid strong {
  display: block !important;
  overflow: hidden !important;
  color: #dfe5e0 !important;
  font: 500 9px/1.25 var(--store-mono) !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

#a2t-products .pm-product-tech-proof {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  padding-top: 10px !important;
  border-top: 1px solid #26322d !important;
}

#a2t-products .pm-product-tech-proof > span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: #87938d !important;
  font: 500 8px/1 var(--store-mono) !important;
}

#a2t-products .pm-product-tech-proof i {
  color: var(--store-accent) !important;
  font-size: 8px !important;
}

#a2t-products .pm-product-media-action {
  display: none !important;
}

#a2t-products .pm-product-body {
  display: block !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 14px 0 0 !important;
  border: 0 !important;
  background: transparent !important;
}

#a2t-products .pm-product-meta {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  min-height: 26px !important;
  margin: 0 0 12px !important;
  padding: 0 0 10px !important;
  border: 0 !important;
  border-bottom: 1px solid #27322d !important;
}

#a2t-products .pm-product-category {
  max-width: 72% !important;
  color: var(--store-accent) !important;
  font-size: 7px !important;
}

#a2t-products .pm-product-flag,
#a2t-products .pm-product-status {
  min-height: 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 7px !important;
  border: 1px solid #334039 !important;
  background: transparent !important;
  font-size: 6px !important;
}

#a2t-products .pm-product h2 {
  display: -webkit-box !important;
  overflow: hidden !important;
  min-height: 0 !important;
  margin: 0 !important;
  color: #f0f3f0 !important;
  font: 600 clamp(21px, 1.8vw, 27px)/1.03 var(--store-sans) !important;
  letter-spacing: -.055em !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

#a2t-products .pm-product-summary {
  display: -webkit-box !important;
  overflow: hidden !important;
  min-height: 0 !important;
  margin: 9px 0 0 !important;
  color: #89958f !important;
  font: 400 11px/1.5 var(--store-sans) !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 1 !important;
}

#a2t-products .pm-product-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin: 14px 0 0 !important;
  padding: 12px 0 0 !important;
  border: 0 !important;
  border-top: 1px solid #27322d !important;
}

#a2t-products .pm-price {
  gap: 7px !important;
}

#a2t-products .pm-price strong {
  color: #e9ede9 !important;
  font: 600 13px/1 var(--store-mono) !important;
}

#a2t-products .pm-price .pm-price-custom {
  color: #dbe2dd !important;
  font-size: 10px !important;
  letter-spacing: .04em !important;
}

#a2t-products .pm-price small {
  font-size: 8px !important;
}

#a2t-products .pm-product-actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-left: auto !important;
}

#a2t-products .pm-product-view {
  min-width: 0 !important;
  min-height: 32px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #cfd7d2 !important;
  font: 600 7px/1 var(--store-mono) !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

#a2t-products .pm-product-view:hover,
#a2t-products .pm-product-view:focus-visible {
  border: 0 !important;
  background: transparent !important;
  color: #ffffff !important;
}

#a2t-products .pm-product-view i {
  color: var(--store-accent) !important;
  font-style: normal !important;
}

#a2t-products .pm-quick-cart {
  width: 32px !important;
  min-height: 32px !important;
  border: 1px solid #334039 !important;
}

#a2t-products .pm-product-specs,
#a2t-products .pm-product-proof,
#a2t-products .pm-product-copy {
  display: none !important;
}

@media (max-width: 1180px) {
  #a2t-products .pm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  #a2t-products .pm-grid,
  #a2t-products .pm-grid.pm-grid-single {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  #a2t-products .pm-product-tech {
    display: none !important;
  }

  #a2t-products .pm-product-summary {
    -webkit-line-clamp: 2 !important;
  }

  #a2t-products .pm-product-footer {
    align-items: center !important;
    flex-direction: row !important;
  }

  #a2t-products .pm-product-actions {
    width: auto !important;
    margin-left: auto !important;
  }

  #a2t-products .pm-product-view {
    width: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #a2t-products .pm-product-tech,
  #a2t-products .pm-product-media > img {
    transition: none !important;
  }
}

/* ==========================================================================
   Upgrade 24 — Product plate polish
   Keep category/status chips over image, always show rating/sold, tighten
   content margins, and improve the View hover treatment.
   ========================================================================== */

#a2t-products .pm-product-media {
  isolation: isolate;
}

#a2t-products .pm-product-topline {
  position: absolute;
  inset: 12px 12px auto 12px;
  z-index: 7;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  pointer-events: none;
}

#a2t-products .pm-product-chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  max-width: calc(100% - 8px);
  padding: 0 8px;
  overflow: hidden;
  border: 1px solid rgba(200,243,79,.28);
  background: rgba(8,13,11,.82);
  color: #ebf0eb;
  font: 600 7px/1 var(--store-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

#a2t-products .pm-product-chip-category {
  color: var(--store-accent);
  max-width: 65%;
}

#a2t-products .pm-product-chip-status.sale,
#a2t-products .pm-product-chip-status.custom,
#a2t-products .pm-product-chip-status.featured,
#a2t-products .pm-product-chip-status.off {
  flex: 0 0 auto;
}

#a2t-products .pm-product-tech {
  gap: 10px !important;
  padding: 14px !important;
}

#a2t-products .pm-product-tech-grid {
  gap: 10px !important;
}

#a2t-products .pm-product-tech-label {
  font-size: 6px !important;
}

#a2t-products .pm-product-body {
  padding: 16px 2px 0 !important;
}

#a2t-products .pm-product-meta,
#a2t-products .pm-product-category,
#a2t-products .pm-product-flag,
#a2t-products .pm-product-status {
  display: none !important;
}

#a2t-products .pm-product h2 {
  font: 600 clamp(19px, 1.65vw, 26px)/1.04 var(--store-sans) !important;
  letter-spacing: -.052em !important;
}

#a2t-products .pm-product-summary {
  margin-top: 10px !important;
  color: #8f9a95 !important;
  font: 400 11px/1.5 var(--store-sans) !important;
  -webkit-line-clamp: 2 !important;
}

#a2t-products .pm-product-proofline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  color: #97a29d;
  font: 500 9px/1 var(--store-mono);
}

#a2t-products .pm-product-proofline > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

#a2t-products .pm-product-proofline i {
  color: var(--store-accent);
  font-size: 9px;
}

#a2t-products .pm-product-proofline small {
  color: #7f8a85;
  font: inherit;
}

#a2t-products .pm-product-footer {
  margin-top: 14px !important;
  padding-top: 12px !important;
}

#a2t-products .pm-product-view {
  position: relative;
  padding: 0 0 2px !important;
  color: #d7dfda !important;
}

#a2t-products .pm-product-view::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(200,243,79,.14);
  transform: scaleX(.38);
  transform-origin: left center;
  transition: transform .18s ease, background-color .18s ease;
}

#a2t-products .pm-product-view:hover,
#a2t-products .pm-product-view:focus-visible {
  color: #ffffff !important;
}

#a2t-products .pm-product-view:hover::after,
#a2t-products .pm-product-view:focus-visible::after {
  background: var(--store-accent);
  transform: scaleX(1);
}

#a2t-products .pm-product-view i {
  transition: transform .18s ease, color .18s ease;
}

#a2t-products .pm-product-view:hover i,
#a2t-products .pm-product-view:focus-visible i {
  transform: translateX(4px);
  color: #dfff79 !important;
}

#a2t-products .pm-quick-cart {
  width: 34px !important;
  min-height: 34px !important;
}

#a2t-products .pm-grid.pm-grid-single {
  grid-template-columns: minmax(0, 420px) !important;
}

@media (max-width: 760px) {
  #a2t-products .pm-product-topline {
    inset: 10px 10px auto 10px;
  }

  #a2t-products .pm-product-chip-category {
    max-width: 58%;
  }

  #a2t-products .pm-product-body {
    padding: 14px 0 0 !important;
  }

  #a2t-products .pm-product-summary {
    -webkit-line-clamp: 2 !important;
  }

  #a2t-products .pm-product-proofline {
    gap: 12px;
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #a2t-products .pm-product-view::after,
  #a2t-products .pm-product-view i {
    transition: none !important;
  }
}

/* ==========================================================================
   Upgrade 25 — Product plate interaction hierarchy
   Clean media (no top tags), subtle card surface separation, media-only tech
   reveal, and an independent View button hover/focus treatment.
   ========================================================================== */

#a2t-products .pm-product {
  overflow: hidden !important;
  border: 1px solid #26322d !important;
  background: #101715 !important;
}

#a2t-products .pm-product:hover,
#a2t-products .pm-product:focus-within {
  border-color: #26322d !important;
  background: #101715 !important;
}

#a2t-products .pm-product-media {
  border: 0 !important;
  border-bottom: 1px solid #26322d !important;
  background: #121b18 !important;
}

#a2t-products .pm-product-topline,
#a2t-products .pm-product-chip {
  display: none !important;
}

/* Hovering the card body or footer must not change the image or tech overlay. */
#a2t-products .pm-product:hover .pm-product-media > img,
#a2t-products .pm-product:focus-within .pm-product-media > img {
  transform: scale(1.001) !important;
  filter: none !important;
}

#a2t-products .pm-product:hover .pm-product-tech,
#a2t-products .pm-product:focus-within .pm-product-tech {
  opacity: 0 !important;
  transform: translateY(102%) !important;
}

/* Technical details belong to the media interaction only. */
#a2t-products .pm-product-media:hover > img,
#a2t-products .pm-product-media:focus-visible > img {
  transform: scale(1.022) !important;
  filter: brightness(.82) !important;
}

#a2t-products .pm-product-media:hover .pm-product-tech,
#a2t-products .pm-product-media:focus-visible .pm-product-tech {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

#a2t-products .pm-product-body {
  padding: 18px 18px 16px !important;
  background: #101715 !important;
}

#a2t-products .pm-product h2 {
  margin: 0 !important;
}

#a2t-products .pm-product-summary {
  margin-top: 10px !important;
}

#a2t-products .pm-product-proofline {
  margin-top: 14px !important;
}

#a2t-products .pm-product-footer {
  margin-top: 15px !important;
  padding-top: 14px !important;
  border-top: 1px solid #2b3731 !important;
}

/* View is a real compact button. Its state is owned only by itself. */
#a2t-products .pm-product-view {
  min-width: 108px !important;
  min-height: 36px !important;
  justify-content: space-between !important;
  gap: 14px !important;
  padding: 0 12px !important;
  border: 1px solid #3a4741 !important;
  background: transparent !important;
  color: #dbe2dd !important;
  text-decoration: none !important;
}

#a2t-products .pm-product-view::after {
  display: none !important;
}

#a2t-products .pm-product-view i {
  transform: none !important;
  color: var(--store-accent) !important;
  transition: transform .18s ease, color .18s ease !important;
}

#a2t-products .pm-product-view:hover,
#a2t-products .pm-product-view:focus-visible {
  border-color: var(--store-accent) !important;
  background: var(--store-accent) !important;
  color: #0b0f0d !important;
}

#a2t-products .pm-product-view:hover i,
#a2t-products .pm-product-view:focus-visible i {
  transform: translateX(3px) !important;
  color: #0b0f0d !important;
}

#a2t-products .pm-quick-cart {
  border-color: #3a4741 !important;
  background: transparent !important;
}

#a2t-products .pm-quick-cart:hover,
#a2t-products .pm-quick-cart:focus-visible {
  border-color: var(--store-accent) !important;
  background: var(--store-accent) !important;
  color: #0b0f0d !important;
}

@media (max-width: 760px) {
  #a2t-products .pm-product-body {
    padding: 16px 16px 14px !important;
  }

  #a2t-products .pm-product-view {
    min-width: 104px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #a2t-products .pm-product-view,
  #a2t-products .pm-product-view i,
  #a2t-products .pm-quick-cart {
    transition: none !important;
  }
}

/* ==========================================================================
   Upgrade 26 — Shape-stable card + compact View control
   The plate itself never changes geometry on hover/focus. Interactive motion
   is confined to media contents and the controls that are directly hovered.
   ========================================================================== */

#a2t-products .pm-product,
#a2t-products .pm-product:hover,
#a2t-products .pm-product:focus,
#a2t-products .pm-product:focus-within {
  width: auto !important;
  height: auto !important;
  border: 1px solid #26322d !important;
  background: #101715 !important;
  box-shadow: none !important;
  transform: none !important;
  translate: none !important;
  scale: 1 !important;
  outline-offset: 0 !important;
}

#a2t-products .pm-product {
  transition: none !important;
}

/* Keep the media box itself fixed; only its image/overlay may animate. */
#a2t-products .pm-product-media,
#a2t-products .pm-product-media:hover,
#a2t-products .pm-product-media:focus-visible {
  border: 0 !important;
  border-bottom: 1px solid #26322d !important;
  transform: none !important;
  scale: 1 !important;
}

/* Compact, button-like View action with natural label/arrow spacing. */
#a2t-products .pm-product-view {
  min-width: 0 !important;
  width: auto !important;
  min-height: 36px !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 0 11px !important;
  white-space: nowrap !important;
}

#a2t-products .pm-product-view i {
  margin: 0 !important;
}

#a2t-products .pm-product-view:hover i,
#a2t-products .pm-product-view:focus-visible i {
  transform: translateX(2px) !important;
}

@media (max-width: 760px) {
  #a2t-products .pm-product-view {
    min-width: 0 !important;
    padding-inline: 10px !important;
    gap: 5px !important;
  }
}

/* ==========================================================================
   Upgrade 27 — Production product-detail completion
   Backend-connected wishlist, product benefits/package/support, and a cleaner
   square hero/detail hierarchy using existing Product admin data.
   ========================================================================== */

.product-detail-body .pd-v6-breadcrumb {
  display: none !important;
}


.product-detail-body :is(
  #product-overview,
  #product-benefits,
  #product-included,
  #product-support,
  #product-reviews,
  #product-related
) {
  scroll-margin-top: 52px;
}

@media (max-width: 1023px) {
  .product-detail-body :is(
    #product-overview,
    #product-benefits,
    #product-included,
    #product-support,
    #product-reviews,
    #product-related
  ) {
    scroll-margin-top: calc(var(--a2t-header-height, 64px) + 44px);
  }
}


.product-detail-body .pd-v6-card,
.product-detail-body .pd-v6-pill,
.product-detail-body .pd-v8-save-chip,
.product-detail-body .pd-v6-gallery-card,
.product-detail-body .pd-v6-gallery-stage,
.product-detail-body .pd-v6-btn,
.product-detail-body .pd-v10-card-icon,
.product-detail-body .pd-v11-product-system,
.product-detail-body .pd-v11-value-panel,
.product-detail-body .pd-v11-support-panel,
.product-detail-body .pd-v11-tags b {
  border-radius: 0 !important;
}

.product-detail-body .pd-v6-title {
  max-width: 620px !important;
  font-size: clamp(50px, 5.2vw, 76px) !important;
  line-height: .94 !important;
}

.product-detail-body .pd-v6-gallery-card {
  padding: 14px !important;
}

.product-detail-body .pd-v6-gallery-stage {
  min-height: clamp(410px, 36vw, 520px) !important;
}

.product-detail-body .pd-v6-meta-grid {
  margin-top: 28px !important;
}

.product-detail-body .pd-v6-price-row {
  margin-top: 24px !important;
}

.product-detail-body .pd-v6-actions {
  gap: 8px !important;
  margin-top: 22px !important;
}

.product-detail-body .pd-v6-actions form {
  display: flex;
}

.product-detail-body .pd-v11-product-system .pd-v6-btn {
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  padding: 0 14px !important;
  border: 1px solid var(--store-dark-line) !important;
  background: transparent !important;
  color: #dbe2dd !important;
  box-shadow: none !important;
  font: 600 8px/1 var(--store-mono) !important;
  letter-spacing: .055em !important;
  text-transform: uppercase !important;
}

.product-detail-body .pd-v11-product-system .pd-v6-btn:hover,
.product-detail-body .pd-v11-product-system .pd-v6-btn:focus-visible {
  border-color: #77847d !important;
  background: rgba(255,255,255,.025) !important;
  color: #fff !important;
}

.product-detail-body .pd-v11-product-system .pd-v6-btn-primary {
  border-color: var(--store-accent) !important;
  background: var(--store-accent) !important;
  color: var(--store-ink) !important;
}

.product-detail-body .pd-v11-product-system .pd-v6-btn-primary:hover,
.product-detail-body .pd-v11-product-system .pd-v6-btn-primary:focus-visible {
  border-color: #ddff72 !important;
  background: #ddff72 !important;
  color: #090d0b !important;
}

.product-detail-body .pd-v11-wishlist-btn.is-saved {
  border-color: rgba(200,243,79,.52) !important;
  color: var(--store-accent) !important;
}

.product-detail-body .pd-v11-wishlist-btn.is-saved i {
  color: var(--store-accent) !important;
}

.product-detail-body .pd-v11-wishlist-form.is-loading {
  opacity: .58;
  pointer-events: none;
}

.product-detail-body .pd-v6-stat-row b {
  color: inherit;
  font: inherit;
}

.product-detail-body .pd-v11-product-system {
  margin-top: 0;
  padding: 42px 0 100px;
  border-top: 1px solid var(--store-dark-line);
  background: #0c1210;
  box-shadow: 0 0 0 100vmax #0c1210;
  clip-path: inset(0 -100vmax);
}

.product-detail-body .pd-v11-section-head {
  display: grid;
  grid-template-columns: minmax(160px, .35fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--store-dark-line);
}

.product-detail-body .pd-v11-section-head > span,
.product-detail-body .pd-v11-value-head > span,
.product-detail-body .pd-v11-support-intro > span,
.product-detail-body .pd-v11-tags > span {
  color: var(--store-accent);
  font: 600 8px/1.35 var(--store-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-detail-body .pd-v11-section-head h2,
.product-detail-body .pd-v11-value-head h2,
.product-detail-body .pd-v11-support-intro h2 {
  margin: 0 !important;
  color: #f0f3ef !important;
  font-weight: 600 !important;
  letter-spacing: -.055em !important;
}

.product-detail-body .pd-v11-section-head h2 {
  max-width: 720px;
  font-size: clamp(38px, 4.2vw, 58px) !important;
  line-height: .98 !important;
}

.product-detail-body .pd-v11-section-head p {
  max-width: 700px;
  margin: 16px 0 0 !important;
  color: #88958f !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
}

.product-detail-body .pd-v11-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--store-dark-line);
  border-left: 1px solid var(--store-dark-line);
}

.product-detail-body .pd-v11-tech-grid > div {
  min-width: 0;
  min-height: 92px;
  padding: 17px;
  border-right: 1px solid var(--store-dark-line);
  border-bottom: 1px solid var(--store-dark-line);
}

.product-detail-body .pd-v11-tech-grid span,
.product-detail-body .pd-v11-tech-grid strong {
  display: block;
}

.product-detail-body .pd-v11-tech-grid span {
  color: #65726b;
  font: 600 7px/1.3 var(--store-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-detail-body .pd-v11-tech-grid strong {
  margin-top: 10px;
  overflow-wrap: anywhere;
  color: #dce2de;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.product-detail-body .pd-v11-tags {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 18px;
}

.product-detail-body .pd-v11-tags > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-detail-body .pd-v11-tags b {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--store-dark-line);
  color: #aab4af;
  font: 500 7px/1 var(--store-mono);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.product-detail-body .pd-v11-value-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid var(--store-dark-line);
  border-bottom: 1px solid var(--store-dark-line);
}

.product-detail-body .pd-v11-value-panel {
  padding: 36px 38px 38px 0;
}

.product-detail-body .pd-v11-value-panel + .pd-v11-value-panel {
  padding-right: 0;
  padding-left: 38px;
  border-left: 1px solid var(--store-dark-line);
}

.product-detail-body .pd-v11-value-head h2 {
  margin-top: 13px !important;
  font-size: 32px !important;
  line-height: 1 !important;
}

.product-detail-body .pd-v11-value-head p {
  max-width: 600px;
  margin: 14px 0 0 !important;
  color: #85928b !important;
  font-size: 12px !important;
  line-height: 1.65 !important;
}

.product-detail-body .pd-v11-benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--store-dark-line);
  border-left: 1px solid var(--store-dark-line);
}

.product-detail-body .pd-v11-benefit-list > div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  min-height: 116px;
  padding: 16px;
  border-right: 1px solid var(--store-dark-line);
  border-bottom: 1px solid var(--store-dark-line);
}

.product-detail-body .pd-v11-benefit-list i {
  color: var(--store-accent);
  font-size: 13px;
}

.product-detail-body .pd-v11-benefit-list strong,
.product-detail-body .pd-v11-benefit-list small {
  display: block;
}

.product-detail-body .pd-v11-benefit-list strong {
  color: #e5eae6;
  font-size: 12px;
  font-weight: 600;
}

.product-detail-body .pd-v11-benefit-list small {
  margin-top: 7px;
  color: #77847e;
  font-size: 10px;
  line-height: 1.55;
}

.product-detail-body .pd-v11-package-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--store-dark-line);
}

.product-detail-body .pd-v11-package-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid var(--store-dark-line);
}

.product-detail-body .pd-v11-package-list span {
  color: var(--store-accent);
  font: 600 7px/1.4 var(--store-mono);
}

.product-detail-body .pd-v11-package-list strong {
  color: #b9c3bd;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.product-detail-body .pd-v11-support-panel {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 52px;
  margin-top: 70px;
  padding-top: 42px;
  border-top: 1px solid var(--store-dark-line);
}

.product-detail-body .pd-v11-support-intro h2 {
  margin-top: 13px !important;
  font-size: clamp(30px, 3vw, 42px) !important;
  line-height: 1 !important;
}

.product-detail-body .pd-v11-support-intro p {
  max-width: 520px;
  margin: 17px 0 0 !important;
  color: #85918b !important;
  font-size: 12px !important;
  line-height: 1.7 !important;
}

.product-detail-body .pd-v11-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.product-detail-body .pd-v11-support-steps {
  border-top: 1px solid var(--store-dark-line);
}

.product-detail-body .pd-v11-support-steps > div {
  display: grid;
  grid-template-columns: 42px minmax(140px, .45fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--store-dark-line);
}

.product-detail-body .pd-v11-support-steps span {
  color: var(--store-accent);
  font: 600 8px/1.4 var(--store-mono);
}

.product-detail-body .pd-v11-support-steps strong {
  color: #dce3de;
  font-size: 12px;
  font-weight: 600;
}

.product-detail-body .pd-v11-support-steps p {
  margin: 0 !important;
  color: #77847e !important;
  font-size: 10px !important;
  line-height: 1.6 !important;
}

@media (max-width: 1100px) {
  

  .product-detail-body .pd-v11-value-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-body .pd-v11-value-panel,
  .product-detail-body .pd-v11-value-panel + .pd-v11-value-panel {
    padding: 34px 0;
    border-left: 0;
  }

  .product-detail-body .pd-v11-value-panel + .pd-v11-value-panel {
    border-top: 1px solid var(--store-dark-line);
  }
}

@media (max-width: 900px) {
  

  

  .product-detail-body .pd-v6-gallery-card {
    order: 0;
  }

  .product-detail-body .pd-v11-section-head,
  .product-detail-body .pd-v11-support-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-detail-body .pd-v11-tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-body .pd-v11-tags {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .product-detail-body .pd-v6-title {
    font-size: clamp(42px, 13vw, 60px) !important;
  }

  .product-detail-body .pd-v6-gallery-stage {
    min-height: 340px !important;
  }

  .product-detail-body .pd-v11-product-system {
    padding: 64px 0 72px;
  }

  .product-detail-body .pd-v11-tech-grid,
  .product-detail-body .pd-v11-benefit-list {
    grid-template-columns: 1fr;
  }

  .product-detail-body .pd-v11-support-steps > div {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .product-detail-body .pd-v11-support-steps p {
    grid-column: 2;
  }

  .product-detail-body .pd-v6-actions,
  .product-detail-body .pd-v6-actions form,
  .product-detail-body .pd-v6-actions .pd-v6-btn {
    width: 100%;
  }
}

/* ==========================================================================
   Upgrade 28 — Product detail gallery-first redesign
   Full-width premium gallery with summary content placed underneath.
   Remove bordered-card feeling and give the media area a more editorial,
   production-quality presentation.
   ========================================================================== */


.product-detail-body .pd-v6-gallery-card {
  order: -1;
  position: relative !important;
  width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at top right, rgba(200, 243, 79, .08), transparent 26%),
    linear-gradient(180deg, rgba(18, 26, 24, .88), rgba(11, 16, 15, .92)) !important;
  box-shadow: none !important;
}

.product-detail-body .pd-v8-gallery-head {
  position: absolute !important;
  top: 18px !important;
  left: 18px !important;
  right: 18px !important;
  z-index: 6 !important;
  padding: 0 !important;
  pointer-events: none;
}

.product-detail-body .pd-v8-gallery-head span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  background: rgba(8, 12, 11, .48);
  color: #8da097 !important;
  backdrop-filter: blur(10px);
}

.product-detail-body .pd-v8-gallery-head span:first-child {
  color: var(--store-accent) !important;
}

.product-detail-body .pd-v6-gallery-stage {
  min-height: 0 !important;
  height: clamp(430px, 55vw, 780px) !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
    #111816 !important;
}

.product-detail-body .pd-v6-media-panel img,
.product-detail-body .pd-v6-gallery-video {
  object-fit: contain !important;
  background: transparent !important;
}

.product-detail-body .pd-v6-gallery-count,
.product-detail-body .pd-v6-video-chip {
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(8, 12, 11, .62) !important;
  color: #c9d1cc !important;
  backdrop-filter: blur(8px);
}

.product-detail-body .pd-v6-gallery-count {
  right: 18px !important;
  bottom: 18px !important;
}

.product-detail-body .pd-v6-video-chip {
  top: 18px !important;
  left: 18px !important;
}

.product-detail-body .pd-v6-gallery-controls {
  grid-template-columns: 38px minmax(0, 1fr) 38px !important;
  gap: 14px !important;
  margin-top: 18px !important;
  padding-bottom: 2px !important;
}

.product-detail-body .pd-v6-gallery-arrow {
  width: 38px !important;
  height: 38px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, .03) !important;
  color: #90a09a !important;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.product-detail-body .pd-v6-gallery-arrow:hover,
.product-detail-body .pd-v6-gallery-arrow:focus-visible {
  background: rgba(200, 243, 79, .14) !important;
  color: var(--store-accent) !important;
  transform: translateY(-1px);
}

.product-detail-body .pd-v6-thumbs {
  gap: 10px !important;
  padding: 0 !important;
  scrollbar-width: none;
}

.product-detail-body .pd-v6-thumbs::-webkit-scrollbar {
  display: none;
}

.product-detail-body .pd-v6-thumb {
  flex: 0 0 86px !important;
  width: 86px !important;
  height: 58px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, .03) !important;
  opacity: .58 !important;
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}

.product-detail-body .pd-v6-thumb.is-active,
.product-detail-body .pd-v6-thumb:hover,
.product-detail-body .pd-v6-thumb:focus-visible {
  opacity: 1 !important;
  transform: translateY(-1px);
  box-shadow: inset 0 -1px 0 var(--store-accent);
}

.product-detail-body .pd-v6-thumb img {
  object-fit: cover !important;
}


.product-detail-body .pd-v6-kicker-row {
  margin: 0 0 18px !important;
}

.product-detail-body .pd-v6-kicker {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.product-detail-body .pd-v6-title {
  max-width: 1100px !important;
  font-size: clamp(46px, 6vw, 90px) !important;
  line-height: .92 !important;
}

.product-detail-body .pd-v6-lead {
  max-width: 920px !important;
  margin: 24px 0 0 !important;
  font-size: 18px !important;
  line-height: 1.72 !important;
}

.product-detail-body .pd-v6-meta-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  margin: 34px 0 0 !important;
}

.product-detail-body .pd-v6-meta-grid > div:nth-child(even) {
  padding-left: 0 !important;
  border-right: 1px solid var(--store-dark-line) !important;
}

.product-detail-body .pd-v6-meta-grid > div:nth-child(3n) {
  border-right: 0 !important;
}

.product-detail-body .pd-v6-meta-grid > div:nth-last-child(-n + 3) {
  border-bottom: 0 !important;
}

.product-detail-body .pd-v6-stat-row {
  gap: 10px 20px !important;
  margin: 18px 0 0 !important;
}

.product-detail-body .pd-v6-price-row {
  margin: 28px 0 0 !important;
}

.product-detail-body .pd-v6-actions {
  gap: 10px !important;
  margin: 24px 0 0 !important;
}

.product-detail-body .pd-v6-btn {
  min-height: 45px !important;
  padding-inline: 16px !important;
}

.product-detail-body .pd-v6-mini-links {
  gap: 10px 20px !important;
  margin: 20px 0 0 !important;
}

@media (max-width: 1100px) {
  .product-detail-body .pd-v6-gallery-stage {
    height: clamp(360px, 58vw, 620px) !important;
  }

  .product-detail-body .pd-v6-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .product-detail-body .pd-v6-meta-grid > div:nth-child(3n) {
    border-right: 1px solid var(--store-dark-line) !important;
  }

  .product-detail-body .pd-v6-meta-grid > div:nth-child(even) {
    border-right: 0 !important;
  }

  .product-detail-body .pd-v6-meta-grid > div:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--store-dark-line) !important;
  }

  .product-detail-body .pd-v6-meta-grid > div:nth-last-child(-n + 2) {
    border-bottom: 0 !important;
  }
}

@media (max-width: 767px) {
  

  .product-detail-body .pd-v8-gallery-head {
    top: 12px !important;
    left: 12px !important;
    right: 12px !important;
  }

  .product-detail-body .pd-v6-gallery-stage {
    height: clamp(260px, 64vw, 420px) !important;
  }

  .product-detail-body .pd-v6-gallery-count,
  .product-detail-body .pd-v6-video-chip {
    top: auto !important;
    left: 12px !important;
    right: auto !important;
    bottom: 12px !important;
  }

  .product-detail-body .pd-v6-gallery-controls {
    grid-template-columns: 32px minmax(0, 1fr) 32px !important;
    gap: 10px !important;
    margin-top: 14px !important;
  }

  .product-detail-body .pd-v6-gallery-arrow {
    width: 32px !important;
    height: 32px !important;
  }

  .product-detail-body .pd-v6-thumb {
    flex-basis: 72px !important;
    width: 72px !important;
    height: 48px !important;
  }

  .product-detail-body .pd-v6-title {
    font-size: clamp(36px, 12vw, 56px) !important;
  }

  .product-detail-body .pd-v6-lead {
    max-width: none !important;
    font-size: 15px !important;
  }

  .product-detail-body .pd-v6-meta-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .product-detail-body .pd-v6-meta-grid > div,
  .product-detail-body .pd-v6-meta-grid > div:nth-child(even),
  .product-detail-body .pd-v6-meta-grid > div:nth-child(3n) {
    padding-left: 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--store-dark-line) !important;
  }

  .product-detail-body .pd-v6-meta-grid > div:last-child {
    border-bottom: 0 !important;
  }
}

/* ==========================================================================
   Upgrade 29 — Viewport-fit product gallery + deduplicated overview
   Gallery and controls fit inside the first viewport; product summary follows
   as a compact editorial/purchase grid. Technical facts render only once.
   ========================================================================== */


/* One self-contained gallery viewport: controls float over the media rather
   than adding another row of height below it. */
.product-detail-body .pd-v6-gallery-card {
  position: relative !important;
  overflow: hidden !important;
  background: #0d1312 !important;
}

.product-detail-body .pd-v6-gallery-stage {
  height: clamp(320px, calc(100svh - 300px), 560px) !important;
  max-height: 560px !important;
  min-height: 0 !important;
  background:
    radial-gradient(circle at 78% 18%, rgba(200,243,79,.035), transparent 24%),
    #101715 !important;
}

.product-detail-body .pd-v6-media-panel img,
.product-detail-body .pd-v6-gallery-video {
  object-fit: contain !important;
  object-position: center !important;
}

.product-detail-body .pd-v8-gallery-head {
  top: 16px !important;
  left: 16px !important;
  right: auto !important;
}

.product-detail-body .pd-v8-gallery-head span {
  min-height: 24px !important;
  padding: 0 9px !important;
  background: rgba(8,12,11,.64) !important;
  color: var(--store-accent) !important;
}

.product-detail-body .pd-v6-gallery-count {
  top: 16px !important;
  right: 16px !important;
  bottom: auto !important;
  padding: 0 9px !important;
  min-height: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  border: 0 !important;
  background: rgba(8,12,11,.64) !important;
}

.product-detail-body .pd-v6-video-chip {
  top: 16px !important;
  left: 50% !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;
  border: 0 !important;
  background: rgba(8,12,11,.64) !important;
}

.product-detail-body .pd-v6-gallery-controls {
  position: absolute !important;
  right: 16px !important;
  bottom: 16px !important;
  left: 16px !important;
  z-index: 8 !important;
  grid-template-columns: 38px minmax(0, 1fr) 38px !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none;
}

.product-detail-body .pd-v6-gallery-controls > * {
  pointer-events: auto;
}

.product-detail-body .pd-v6-gallery-arrow {
  width: 38px !important;
  height: 38px !important;
  background: rgba(8,12,11,.72) !important;
  backdrop-filter: blur(10px);
}

.product-detail-body .pd-v6-thumbs {
  justify-content: center !important;
  gap: 8px !important;
  min-height: 38px !important;
  padding: 0 !important;
}

.product-detail-body .pd-v6-thumb {
  flex: 0 0 62px !important;
  width: 62px !important;
  height: 38px !important;
  background: rgba(8,12,11,.72) !important;
  box-shadow: none !important;
  opacity: .62 !important;
  backdrop-filter: blur(8px);
}

.product-detail-body .pd-v6-thumb.is-active,
.product-detail-body .pd-v6-thumb:hover,
.product-detail-body .pd-v6-thumb:focus-visible {
  opacity: 1 !important;
  transform: none !important;
  box-shadow: inset 0 -2px 0 var(--store-accent) !important;
}

/* Summary below gallery: editorial context on the left, purchase/action state
   on the right. No technical/identity duplication here. */


.product-detail-body .pd-v6-kicker-row {
  grid-column: 1 / -1 !important;
  margin-bottom: 20px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid var(--store-dark-line) !important;
}

.product-detail-body .pd-v6-title {
  grid-column: 1 !important;
  grid-row: 2 !important;
  max-width: 820px !important;
  font-size: clamp(48px, 5.4vw, 78px) !important;
}

.product-detail-body .pd-v6-lead {
  grid-column: 1 !important;
  grid-row: 3 / span 4 !important;
  max-width: 780px !important;
  margin-top: 22px !important;
  font-size: 16px !important;
}

.product-detail-body .pd-v6-stat-row {
  grid-column: 2 !important;
  grid-row: 2 !important;
  margin: 4px 0 0 !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid var(--store-dark-line) !important;
}

.product-detail-body .pd-v6-price-row {
  grid-column: 2 !important;
  grid-row: 3 !important;
  margin: 20px 0 0 !important;
}

.product-detail-body .pd-v6-assurance-line {
  grid-column: 2 !important;
  grid-row: 4 !important;
  margin: 12px 0 0 !important;
}

.product-detail-body .pd-v6-actions {
  grid-column: 2 !important;
  grid-row: 5 !important;
  margin: 20px 0 0 !important;
}

.product-detail-body .pd-v6-mini-links {
  grid-column: 2 !important;
  grid-row: 6 !important;
  margin: 16px 0 0 !important;
}

/* These structures were removed from the template in Upgrade 29; keep a
   defensive guard for cached fragments during rolling deploys. */
.product-detail-body .pd-v6-meta-grid,
.product-detail-body .pd-v6-identity-strip {
  display: none !important;
}

/* The Product System is the single source of truth for technical facts. */

@media (max-width: 1100px) {
  .product-detail-body .pd-v6-gallery-stage {
    height: clamp(300px, calc(100svh - 285px), 500px) !important;
  }

  
}

@media (max-width: 900px) {
  

  .product-detail-body .pd-v6-title,
  .product-detail-body .pd-v6-lead,
  .product-detail-body .pd-v6-stat-row,
  .product-detail-body .pd-v6-price-row,
  .product-detail-body .pd-v6-assurance-line,
  .product-detail-body .pd-v6-actions,
  .product-detail-body .pd-v6-mini-links {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .product-detail-body .pd-v6-stat-row {
    margin-top: 28px !important;
    padding-top: 18px !important;
    border-top: 1px solid var(--store-dark-line) !important;
  }
}

@media (max-width: 767px) {
  .product-detail-body .pd-v6-section-nav-band {
    top: var(--a2t-header-height, 64px) !important;
  }

  .product-detail-body .pd-v6-section-nav-inner {
    width: min(var(--a2t-container), calc(100% - 32px)) !important;
  }

  .product-detail-body .pd-v6-section-nav {
    gap: 20px !important;
    padding: 5px 0 !important;
  }

  .product-detail-body .pd-v6-gallery-stage {
    height: clamp(240px, calc(100svh - 250px), 390px) !important;
  }

  .product-detail-body .pd-v8-gallery-head,
  .product-detail-body .pd-v6-gallery-count {
    top: 10px !important;
  }

  .product-detail-body .pd-v8-gallery-head {
    left: 10px !important;
  }

  .product-detail-body .pd-v6-gallery-count {
    right: 10px !important;
  }

  .product-detail-body .pd-v6-video-chip {
    display: none !important;
  }

  .product-detail-body .pd-v6-gallery-controls {
    right: 10px !important;
    bottom: 10px !important;
    left: 10px !important;
    grid-template-columns: 32px minmax(0, 1fr) 32px !important;
    gap: 8px !important;
  }

  .product-detail-body .pd-v6-gallery-arrow {
    width: 32px !important;
    height: 32px !important;
  }

  .product-detail-body .pd-v6-thumb {
    flex-basis: 52px !important;
    width: 52px !important;
    height: 32px !important;
  }

  .product-detail-body .pd-v6-kicker-row {
    margin-bottom: 16px !important;
  }

  .product-detail-body .pd-v6-title {
    font-size: clamp(38px, 11vw, 54px) !important;
  }

  .product-detail-body .pd-v6-lead {
    margin-top: 16px !important;
    font-size: 14px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-detail-body .pd-v6-gallery-arrow,
  .product-detail-body .pd-v6-thumb {
    transition: none !important;
  }
}

/* ==========================================================================
   Upgrade 30 — Product media workspace + compact independent summary columns
   Main media uses the full stage; additional images/videos live in a dedicated
   right rail. Buyer actions no longer inherit title-row height, eliminating
   the large internal gap in the overview summary.
   ========================================================================== */


.product-detail-body .pd-v6-gallery-card {
  overflow: visible !important;
  background: transparent !important;
}

.product-detail-body .pd-v30-gallery-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  height: clamp(320px, calc(100svh - 300px), 540px);
  max-height: 540px;
  min-height: 320px;
  overflow: hidden;
  background: #0f1614;
}

.product-detail-body .pd-v30-gallery-workspace.has-rail {
  grid-template-columns: minmax(0, 1fr) clamp(118px, 10vw, 148px);
}

.product-detail-body .pd-v30-gallery-main {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 16%, rgba(200,243,79,.035), transparent 26%),
    #101715;
}

.product-detail-body .pd-v6-gallery-stage {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  background: transparent !important;
}

.product-detail-body .pd-v6-media-panel img,
.product-detail-body .pd-v6-gallery-video {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
}

.product-detail-body .pd-v30-gallery-rail {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border-left: 1px solid rgba(150,166,158,.18);
  background: #0b1110;
}

.product-detail-body .pd-v30-gallery-rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 48px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(150,166,158,.14);
}

.product-detail-body .pd-v30-gallery-rail-head span,
.product-detail-body .pd-v30-gallery-rail-head small {
  font: 600 7px/1 var(--store-mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-detail-body .pd-v30-gallery-rail-head span {
  color: #99a69f;
}

.product-detail-body .pd-v30-gallery-rail-head small {
  color: var(--store-accent);
}

.product-detail-body .pd-v30-gallery-rail .pd-v6-thumbs {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  gap: 8px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 10px !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(200,243,79,.38) transparent;
}

.product-detail-body .pd-v30-gallery-rail .pd-v6-thumb {
  position: relative !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 10 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #131b19 !important;
  opacity: .48 !important;
  box-shadow: none !important;
  transform: none !important;
  transition: opacity .18s ease, box-shadow .18s ease !important;
}

.product-detail-body .pd-v30-gallery-rail .pd-v6-thumb::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: transparent;
  transition: background-color .18s ease;
}

.product-detail-body .pd-v30-gallery-rail .pd-v6-thumb.is-active,
.product-detail-body .pd-v30-gallery-rail .pd-v6-thumb:hover,
.product-detail-body .pd-v30-gallery-rail .pd-v6-thumb:focus-visible {
  opacity: 1 !important;
  box-shadow: none !important;
}

.product-detail-body .pd-v30-gallery-rail .pd-v6-thumb.is-active::after {
  background: var(--store-accent);
}

.product-detail-body .pd-v30-gallery-rail .pd-v6-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.product-detail-body .pd-v30-thumb-index {
  position: absolute;
  right: 6px;
  bottom: 5px;
  z-index: 4;
  color: #dce4df;
  font: 600 6px/1 var(--store-mono);
  letter-spacing: .06em;
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
}

.product-detail-body .pd-v30-gallery-rail .pd-v6-thumb-play {
  background: rgba(4,8,7,.28) !important;
}

.product-detail-body .pd-v30-gallery-prev,
.product-detail-body .pd-v30-gallery-next {
  position: absolute !important;
  top: 50% !important;
  z-index: 8 !important;
  width: 40px !important;
  height: 54px !important;
  margin-top: -27px !important;
  border: 0 !important;
  background: rgba(7,11,10,.58) !important;
  color: #c6d0ca !important;
  backdrop-filter: blur(8px);
}

.product-detail-body .pd-v30-gallery-prev {
  left: 14px !important;
}

.product-detail-body .pd-v30-gallery-next {
  right: 14px !important;
}

.product-detail-body .pd-v30-gallery-prev:hover,
.product-detail-body .pd-v30-gallery-prev:focus-visible,
.product-detail-body .pd-v30-gallery-next:hover,
.product-detail-body .pd-v30-gallery-next:focus-visible {
  background: var(--store-accent) !important;
  color: #0a0f0d !important;
  transform: none !important;
}

.product-detail-body .pd-v6-gallery-controls {
  display: none !important;
}

/* Summary is two independent columns. The buyer column is no longer tied to
   the title's grid row height, which removes the large blank middle area. */


@media (max-width: 1000px) {
  .product-detail-body .pd-v30-gallery-workspace {
    height: clamp(320px, calc(100svh - 235px), 520px);
  }

  .product-detail-body .pd-v30-gallery-workspace.has-rail {
    grid-template-columns: minmax(0, 1fr) 112px;
  }

  
}

@media (max-width: 820px) {
  .product-detail-body .pd-v30-gallery-workspace,
  .product-detail-body .pd-v30-gallery-workspace.has-rail {
    grid-template-columns: minmax(0, 1fr);
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }

  .product-detail-body .pd-v30-gallery-main {
    height: clamp(280px, 62vw, 440px);
  }

  .product-detail-body .pd-v30-gallery-rail {
    display: block;
    border-top: 1px solid rgba(150,166,158,.16);
    border-left: 0;
  }

  .product-detail-body .pd-v30-gallery-rail-head {
    display: none;
  }

  .product-detail-body .pd-v30-gallery-rail .pd-v6-thumbs {
    flex-direction: row !important;
    gap: 8px !important;
    padding: 9px 0 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }

  .product-detail-body .pd-v30-gallery-rail .pd-v6-thumb {
    flex: 0 0 82px !important;
    width: 82px !important;
  }

  

  
}

@media (max-width: 600px) {
  .product-detail-body .pd-v30-gallery-main {
    height: clamp(240px, 66vw, 360px);
  }

  .product-detail-body .pd-v30-gallery-prev,
  .product-detail-body .pd-v30-gallery-next {
    width: 34px !important;
    height: 44px !important;
    margin-top: -22px !important;
  }

  .product-detail-body .pd-v30-gallery-prev {
    left: 8px !important;
  }

  .product-detail-body .pd-v30-gallery-next {
    right: 8px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-detail-body .pd-v30-gallery-rail .pd-v6-thumb,
  .product-detail-body .pd-v30-gallery-rail .pd-v6-thumb::after {
    transition: none !important;
  }
}

/* ==========================================================================
   Upgrade 36 — Product detail backend parity
   Empty product-specific configuration disappears instead of producing
   placeholder rows. Single value/support sections expand naturally.
   ========================================================================== */
.product-detail-body .pd-v11-tech-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-detail-body .pd-v11-value-grid.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.product-detail-body .pd-v11-value-grid.is-single .pd-v11-value-panel,
.product-detail-body .pd-v11-value-grid.is-single .pd-v11-value-panel + .pd-v11-value-panel {
  padding-right: 0;
  padding-left: 0;
  border-left: 0;
}

.product-detail-body .pd-v11-support-panel.is-single {
  grid-template-columns: minmax(0, 760px);
}

@media (max-width: 700px) {
  .product-detail-body .pd-v11-tech-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* ==========================================================================
   Upgrade 64 — Products viewport + page-navigation calibration
   Uses the shared production-shell measurements instead of local magic offsets.
   ========================================================================== */

/* Products landing: the first section fills the first viewport below the full
   site header. The marketplace begins after the fold on desktop. */
@media (min-width: 992px) {
  body.products-page-body #a2t-products .a2t-store-hero {
    min-height: calc(100vh - var(--a2t-header-height)) !important;
    min-height: calc(100svh - var(--a2t-header-height)) !important;
    display: grid !important;
    align-items: center !important;
    padding: 0 !important;
  }

  body.products-page-body #a2t-products .a2t-store-hero > .a2t-store-shell {
    width: min(var(--a2t-container), calc(100% - 80px)) !important;
    padding-top: clamp(48px, 6vh, 72px);
    padding-bottom: clamp(48px, 6vh, 72px);
  }

  body.products-page-body #a2t-products {
    --pm-control-height: 42px;
  }

  body.products-page-body #a2t-products .pm-control-deck {
    min-height: var(--a2t-page-nav-list-height);
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@supports (height: 100dvh) {
  @media (min-width: 992px) {
    body.products-page-body #a2t-products .a2t-store-hero {
      min-height: calc(100dvh - var(--a2t-header-height)) !important;
    }
  }
}

/* Marketplace page-nav handoff. The main header owns 70px until the control
   deck reaches it, then the deck moves to the top edge while the header hides. */
@media (min-width: 1024px) {
  body.products-page-body #a2t-products .pm-control-deck {
    top: var(--a2t-header-compact-height) !important;
    transition: top .25s ease, border-color .18s ease, box-shadow .18s ease, backdrop-filter .18s ease;
  }

  body.products-page-body.a2t-page-nav-stuck #a2t-products .pm-control-deck {
    top: 0 !important;
  }
}

/* Product detail: slightly more breathing room in the section tabs, then a
   deliberate media gap. Sticky offsets use the same shared header/nav tokens. */
.product-detail-body .pd-v6-section-nav-band {
  top: var(--a2t-header-compact-height) !important;
}

.product-detail-body .pd-v6-section-nav {
  min-height: var(--a2t-page-nav-detail-height) !important;
  padding: 0 !important;
}

.product-detail-body .pd-v6-section-nav a {
  min-height: var(--a2t-page-nav-detail-height);
  display: inline-flex !important;
  align-items: center;
  padding: 0 !important;
}

.product-detail-body .pd-product-overview {
  padding-top: var(--a2t-page-nav-media-gap);
}

@media (min-width: 1024px) {
  .product-detail-body.a2t-page-nav-stuck .pd-v10-review-rail-sticky {
    top: calc(var(--a2t-page-nav-detail-height) + 8px) !important;
  }
}

@media (max-width: 767px) {
  .product-detail-body .pd-v6-section-nav-band {
    top: var(--a2t-header-height, 64px) !important;
  }

  .product-detail-body .pd-v6-section-nav {
    min-height: 40px !important;
  }

  .product-detail-body .pd-v6-section-nav a {
    min-height: 40px;
  }

  .product-detail-body .pd-product-overview {
    padding-top: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a2t-store-button .a2t-motion-arrow,
  #a2t-products .pm-side-action .a2t-motion-arrow,
  #a2t-products .pm-card-action .a2t-motion-arrow,
  .product-detail-body .pd-v6-btn .a2t-motion-arrow { transition: none !important; }
  .a2t-store-button:hover .a2t-motion-arrow,
  #a2t-products .pm-side-action:hover .a2t-motion-arrow,
  #a2t-products .pm-card-action:hover .a2t-motion-arrow,
  .product-detail-body .pd-v6-btn:hover .a2t-motion-arrow { transform: none !important; }
}


/* Upgrade 77 — Products product-system rail follows the approved Home 68% center. */
@media (min-width: 1024px) {
  #a2t-products .a2t-store-hero-grid {
    position: relative;
  }

  #a2t-products .a2t-store-hero-system {
    position: absolute !important;
    top: calc(var(--a2t-hero-rail-center-screen) - var(--a2t-header-height));
    right: 0;
    width: min(31%, 420px);
    margin: 0 !important;
    align-self: auto !important;
    transform: translateY(calc(-50% + var(--a2t-hero-aside-drop))) !important;
  }
}

@media (max-width: 1023px) {
  #a2t-products .a2t-store-hero-system {
    position: static !important;
    width: auto;
    transform: none !important;
  }
}

/* ========================================================================== 
   Upgrade 90 — Products small-device production composition
   Canonical phone/small-tablet layer for the Products landing, marketplace
   controls/cards and product-detail reader. Desktop geometry above 900px is
   intentionally untouched. Earlier mobile experiments are superseded here.
   ========================================================================== */

@media (max-width: 900px) {
  /* Landing hero becomes an editorial sequence rather than a compressed
     desktop viewport. The product-system rail remains part of the story. */
  body.products-page-body #a2t-products .a2t-store-hero,
  body.products-page-body #a2t-products .a2t-store-hero-grid {
    min-height: 0 !important;
  }

  body.products-page-body #a2t-products .a2t-store-hero {
    display: block !important;
    padding: clamp(50px, 8vw, 72px) 0 clamp(54px, 8vw, 78px) !important;
  }

  body.products-page-body #a2t-products .a2t-store-hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: clamp(38px, 6vw, 54px) !important;
    padding: 0 !important;
  }

  #a2t-products .a2t-store-hero-system {
    width: min(100%, 620px) !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  /* Marketplace controls are normal-flow below tablet widths. A multi-row
     sticky panel would consume too much of a phone viewport. */
  #a2t-products .pm-control-deck,
  #a2t-products .pm-control-deck.is-stuck {
    position: relative !important;
    top: auto !important;
    margin-inline: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  #a2t-products .pm-control-deck.is-stuck::before { display: none !important; }

  /* Product detail section navigation remains a compact touch-scroll strip. */
  .product-detail-body .pd-v6-section-nav-band {
    top: var(--a2t-header-height, 64px) !important;
  }

  .product-detail-body .pd-v6-section-nav {
    min-height: 44px !important;
    gap: 22px !important;
    padding: 0 !important;
    scroll-padding-inline: 16px;
    scroll-snap-type: x proximity;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .product-detail-body .pd-v6-section-nav a {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    padding: 0 !important;
    scroll-snap-align: center;
  }
}

@media (max-width: 760px) {
  /* ---------- Products landing hero ---------- */
  #a2t-products .a2t-store-shell,
  #a2t-products .pm-marketplace-shell,
  #a2t-products .pm-custom-build-shell,
  #a2t-products .pm-standards-shell,
  .product-detail-body .pd-v6-shell {
    width: calc(100% - 32px) !important;
    max-width: none !important;
  }

  body.products-page-body #a2t-products .a2t-store-hero {
    padding: 46px 0 50px !important;
  }

  #a2t-products .a2t-store-hero h1 {
    max-width: 12ch !important;
    margin-top: 17px !important;
    font-size: clamp(43px, 12.8vw, 62px) !important;
    line-height: .94 !important;
    letter-spacing: -.062em !important;
    text-wrap: balance;
  }

  #a2t-products .a2t-store-hero-copy > p:not(.a2t-store-kicker) {
    max-width: 38rem !important;
    margin-top: 20px !important;
    font-size: 15px !important;
    line-height: 1.68 !important;
  }

  #a2t-products .a2t-store-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 8px !important;
    margin-top: 25px !important;
  }

  #a2t-products .a2t-store-button {
    width: 100% !important;
    min-height: 48px !important;
    justify-content: space-between !important;
    padding-inline: 15px !important;
  }

  #a2t-products .a2t-store-hero-system {
    padding-top: 14px !important;
  }

  #a2t-products .a2t-store-featured-slide {
    grid-template-columns: 60px minmax(0, 1fr) !important;
    gap: 13px !important;
    min-height: 82px !important;
    padding: 10px 0 !important;
  }

  #a2t-products .a2t-store-featured-slide-media {
    width: 60px !important;
    height: 56px !important;
  }

  #a2t-products .a2t-store-featured-slide-copy strong {
    font-size: 14px !important;
    line-height: 1.22 !important;
  }

  #a2t-products .a2t-store-featured-slide-copy em {
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  #a2t-products .a2t-store-system-facts {
    gap: 6px !important;
    padding: 12px 0 !important;
  }

  #a2t-products .a2t-store-system-facts span {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
  }

  /* ---------- Marketplace controls ---------- */
  #a2t-products .pm-marketplace {
    padding: 34px 0 74px !important;
  }

  #a2t-products .pm-marketplace-head {
    align-items: flex-end !important;
    gap: 18px !important;
    padding-bottom: 18px !important;
  }

  #a2t-products .pm-marketplace-head > div > p {
    max-width: 34rem !important;
    font-size: 12px !important;
  }

  #a2t-products .pm-control-deck {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 8px !important;
    padding: 12px 0 14px !important;
  }

  #a2t-products .pm-control-form { display: contents !important; }
  #a2t-products .pm-search { grid-column: 1 / -1 !important; grid-row: 1 !important; }
  #a2t-products .pm-category-system { grid-column: 1 !important; grid-row: 2 !important; }
  #a2t-products .pm-sort-select { grid-column: 2 !important; grid-row: 2 !important; }

  #a2t-products .pm-search,
  #a2t-products .pm-category-mobile-trigger,
  #a2t-products .pm-sort-select {
    min-height: 50px !important;
    height: 50px !important;
  }

  #a2t-products .pm-search {
    grid-template-columns: 42px minmax(0, 1fr) 52px !important;
  }

  /* 16px prevents iOS from zooming the page when search/select receives focus. */
  #a2t-products .pm-search input,
  #a2t-products .pm-sort-select select,
  #a2t-products .pm-category-search input {
    font-size: 16px !important;
  }

  #a2t-products .pm-search input {
    padding-right: 8px !important;
  }

  #a2t-products .pm-search button {
    min-width: 52px !important;
    padding-inline: 0 !important;
  }

  #a2t-products .pm-search button span { display: none !important; }

  #a2t-products .pm-category-mobile-trigger {
    max-width: none !important;
    justify-content: space-between !important;
    padding: 7px 10px !important;
  }

  #a2t-products .pm-category-mobile-copy small {
    max-width: min(36vw, 180px) !important;
  }

  #a2t-products .pm-sort-select {
    grid-template-columns: minmax(0, 1fr) 18px !important;
    gap: 6px !important;
    padding: 0 9px 0 11px !important;
  }

  #a2t-products .pm-sort-select > span { display: none !important; }
  #a2t-products .pm-sort-select select { font-size: 16px !important; }

  #a2t-products .pm-category-popover {
    top: var(--a2t-header-height, 64px) !important;
    right: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    width: 100% !important;
    max-width: none !important;
    height: calc(var(--a2t-mobile-viewport-height, 100dvh) - var(--a2t-header-height, 64px)) !important;
    max-height: none !important;
    grid-template-rows: auto auto minmax(0, 1fr) !important;
    border: 0 !important;
    border-top: 1px solid #46524c !important;
    background: #0b1110 !important;
    overscroll-behavior: contain;
  }

  #a2t-products .pm-category-popover > header {
    min-height: 58px !important;
    padding-right: max(14px, var(--a2t-safe-right, 0px)) !important;
    padding-left: max(14px, var(--a2t-safe-left, 0px)) !important;
  }

  #a2t-products .pm-category-popover > header button {
    width: 44px !important;
    height: 44px !important;
  }

  #a2t-products .pm-category-search {
    top: 58px !important;
    height: 48px !important;
    margin: 10px max(14px, var(--a2t-safe-right, 0px)) 8px max(14px, var(--a2t-safe-left, 0px)) !important;
  }

  #a2t-products .pm-category-menu-list {
    max-height: none !important;
    padding: 4px max(14px, var(--a2t-safe-right, 0px)) max(28px, calc(16px + var(--a2t-safe-bottom, 0px))) max(14px, var(--a2t-safe-left, 0px)) !important;
    overscroll-behavior: contain;
  }

  #a2t-products .pm-category-menu-list a {
    min-height: 48px !important;
    font-size: 12px !important;
  }

  #a2t-products .pm-active-filters {
    min-height: 0 !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 10px 0 4px !important;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }

  #a2t-products .pm-active-filters::-webkit-scrollbar { display: none; }
  #a2t-products .pm-active-filters > * { flex: 0 0 auto !important; }
  #a2t-products .pm-active-filters a { min-height: 34px !important; }
  #a2t-products .pm-active-filters .pm-clear-filters { margin-left: 0 !important; }

  /* ---------- Product catalogue ---------- */
  #a2t-products .pm-grid,
  #a2t-products .pm-grid.pm-grid-single {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
    margin-top: 20px !important;
  }

  #a2t-products .pm-product {
    min-width: 0 !important;
  }

  #a2t-products .pm-product-media {
    aspect-ratio: 16 / 10 !important;
  }

  #a2t-products .pm-product-tech {
    display: none !important;
  }

  #a2t-products .pm-product-body {
    padding: 16px 16px 14px !important;
  }

  #a2t-products .pm-product h2 {
    font-size: clamp(24px, 7.4vw, 31px) !important;
    line-height: 1.04 !important;
  }

  #a2t-products .pm-product-summary {
    margin-top: 9px !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
    -webkit-line-clamp: 2 !important;
  }

  #a2t-products .pm-product-proofline {
    gap: 12px !important;
    margin-top: 13px !important;
    font-size: 9px !important;
  }

  #a2t-products .pm-product-footer {
    align-items: center !important;
    flex-direction: row !important;
    gap: 10px !important;
    margin-top: 14px !important;
    padding-top: 13px !important;
  }

  #a2t-products .pm-product-actions {
    width: auto !important;
    gap: 7px !important;
    margin-left: auto !important;
  }

  #a2t-products .pm-product-view,
  #a2t-products .pm-quick-cart {
    min-height: 44px !important;
  }

  #a2t-products .pm-product-view {
    min-width: 88px !important;
    padding-inline: 12px !important;
  }

  #a2t-products .pm-quick-cart {
    width: 44px !important;
  }

  #a2t-products .pm-catalog-footer {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 18px !important;
    margin-top: 30px !important;
  }

  #a2t-products .pm-pagination {
    width: 100% !important;
    justify-content: flex-start !important;
    gap: 4px !important;
    overflow-x: auto !important;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }

  #a2t-products .pm-pagination::-webkit-scrollbar { display: none; }
  #a2t-products .pm-pagination :is(a, span) { min-width: 44px !important; min-height: 44px !important; }

  /* ---------- Landing transitions/standards ---------- */
  #a2t-products .pm-custom-build-shell {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
    padding: 38px 0 !important;
  }

  #a2t-products .pm-custom-build-copy { padding: 0 0 30px !important; }

  #a2t-products .pm-custom-build-copy h2 {
    font-size: clamp(38px, 11.5vw, 54px) !important;
    line-height: .98 !important;
  }

  #a2t-products .pm-custom-build-copy p {
    margin-top: 18px !important;
    font-size: 13px !important;
  }

  #a2t-products .pm-custom-build-action {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 58px !important;
    justify-content: space-between !important;
    padding-inline: 16px !important;
  }

  #a2t-products .pm-production-standards {
    padding: 64px 0 70px !important;
  }

  #a2t-products .pm-standards-grid,
  #a2t-products .pm-standards-rail {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  /* ---------- Product detail shell/navigation ---------- */
  .product-detail-body .pd-v6-shell {
    padding-bottom: 78px !important;
  }

  .product-detail-body .pd-v6-section-nav-inner {
    width: 100% !important;
    padding-inline: 16px !important;
  }

  .product-detail-body .pd-product-overview {
    gap: 16px !important;
    padding-top: 10px !important;
    padding-bottom: 28px !important;
  }

  /* Media is swipeable (JS) and keeps a useful screenshot ratio on portrait
     phones rather than being tied to the browser's remaining viewport height. */
  .product-detail-body .pd-v30-gallery-workspace,
  .product-detail-body .pd-v30-gallery-workspace.has-rail {
    grid-template-columns: minmax(0, 1fr) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .product-detail-body .pd-v30-gallery-main {
    height: clamp(250px, 72vw, 390px) !important;
    min-height: 0 !important;
    touch-action: pan-y pinch-zoom;
  }

  .product-detail-body .pd-v30-gallery-prev,
  .product-detail-body .pd-v30-gallery-next {
    width: 44px !important;
    height: 48px !important;
    margin-top: -24px !important;
  }

  .product-detail-body .pd-v30-gallery-prev { left: 6px !important; }
  .product-detail-body .pd-v30-gallery-next { right: 6px !important; }

  .product-detail-body .pd-v30-gallery-rail {
    display: block !important;
    border-top: 1px solid rgba(150,166,158,.16) !important;
    border-left: 0 !important;
  }

  .product-detail-body .pd-v30-gallery-rail-head { display: none !important; }

  .product-detail-body .pd-v30-gallery-rail .pd-v6-thumbs {
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: 7px !important;
    min-height: 0 !important;
    padding: 8px 0 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x proximity;
    overscroll-behavior-inline: contain;
    scrollbar-width: none !important;
  }

  .product-detail-body .pd-v30-gallery-rail .pd-v6-thumbs::-webkit-scrollbar { display: none !important; }

  .product-detail-body .pd-v30-gallery-rail .pd-v6-thumb {
    flex: 0 0 82px !important;
    width: 82px !important;
    min-height: 52px !important;
    aspect-ratio: 16 / 10 !important;
    scroll-snap-align: start;
  }

  .product-detail-body .pd-v8-gallery-head,
  .product-detail-body .pd-v6-gallery-count {
    top: 9px !important;
  }

  .product-detail-body .pd-v8-gallery-head { left: 9px !important; }
  .product-detail-body .pd-v6-gallery-count { right: 9px !important; }
  .product-detail-body .pd-v6-video-chip { display: none !important; }

  /* Editorial context first, then a clearly separated buyer block. */
  .product-detail-body .pd-product-summary {
    grid-template-columns: minmax(0, 1fr) !important;
    row-gap: 22px !important;
    padding-top: 16px !important;
  }

  .product-detail-body .pd-product-context { padding-right: 0 !important; }

  .product-detail-body .pd-product-context .pd-v6-title {
    max-width: 100% !important;
    font-size: clamp(36px, 10.7vw, 52px) !important;
    line-height: .96 !important;
    overflow-wrap: anywhere;
  }

  .product-detail-body .pd-product-context .pd-v6-lead {
    margin-top: 15px !important;
    font-size: 15px !important;
    line-height: 1.68 !important;
  }

  .product-detail-body .pd-product-buy {
    padding: 20px 0 0 !important;
    border-top: 1px solid rgba(126,143,134,.24) !important;
    border-left: 0 !important;
  }

  .product-detail-body .pd-product-buy-head {
    justify-content: flex-start !important;
    margin-bottom: 10px !important;
  }

  .product-detail-body .pd-product-buy .pd-v6-stat-row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(126,143,134,.20) !important;
  }

  .product-detail-body .pd-product-buy .pd-v6-stat-row span {
    min-width: 0 !important;
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    padding: 8px 6px !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.35 !important;
  }

  .product-detail-body .pd-product-buy .pd-v6-stat-row span + span {
    border-left: 1px solid rgba(126,143,134,.20);
  }

  .product-detail-body .pd-product-buy .pd-v6-price-row {
    margin-top: 18px !important;
  }

  .product-detail-body .pd-product-buy .pd-v6-price-row strong {
    font-size: clamp(31px, 9vw, 40px) !important;
  }

  .product-detail-body .pd-product-buy .pd-v6-actions {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 7px !important;
    margin-top: 18px !important;
  }

  .product-detail-body .pd-product-buy .pd-v6-btn,
  .product-detail-body .pd-v11-product-system .pd-v6-btn,
  .product-detail-body .pd-v11-support-actions .pd-v6-btn {
    min-height: 48px !important;
  }

  .product-detail-body .pd-product-buy .pd-v6-mini-links {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px 12px !important;
  }

  .product-detail-body .pd-product-buy .pd-v6-mini-links span {
    min-width: 0;
    line-height: 1.45 !important;
  }

  /* ---------- Product system/value/support ---------- */
  .product-detail-body .pd-v11-product-system {
    padding: 54px 0 62px !important;
  }

  .product-detail-body .pd-v11-section-head,
  .product-detail-body .pd-v11-support-panel {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px !important;
  }

  .product-detail-body .pd-v11-section-head {
    padding-bottom: 26px !important;
  }

  .product-detail-body .pd-v11-section-head h2 {
    font-size: clamp(34px, 10vw, 46px) !important;
  }

  .product-detail-body .pd-v11-section-head p {
    font-size: 13px !important;
  }

  .product-detail-body .pd-v11-tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    margin-top: 26px !important;
  }

  .product-detail-body .pd-v11-tech-grid > div {
    min-height: 84px !important;
    padding: 14px !important;
  }

  .product-detail-body .pd-v11-tags {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
    align-items: start !important;
  }

  .product-detail-body .pd-v11-tags b {
    min-height: 32px !important;
  }

  .product-detail-body .pd-v11-value-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    margin-top: 46px !important;
  }

  .product-detail-body .pd-v11-value-panel,
  .product-detail-body .pd-v11-value-panel + .pd-v11-value-panel {
    padding: 30px 0 !important;
    border-left: 0 !important;
  }

  .product-detail-body .pd-v11-value-panel + .pd-v11-value-panel {
    border-top: 1px solid var(--store-dark-line) !important;
  }

  .product-detail-body .pd-v11-benefit-list {
    grid-template-columns: minmax(0, 1fr) !important;
    margin-top: 22px !important;
  }

  .product-detail-body .pd-v11-benefit-list > div {
    min-height: 0 !important;
    padding: 15px !important;
  }

  .product-detail-body .pd-v11-support-panel {
    margin-top: 46px !important;
    padding-top: 32px !important;
  }

  .product-detail-body .pd-v11-support-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 7px !important;
  }

  .product-detail-body .pd-v11-support-steps > div {
    grid-template-columns: 32px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 16px 0 !important;
  }

  .product-detail-body .pd-v11-support-steps p { grid-column: 2 !important; }

  /* ---------- Long description + reviews ---------- */
  .product-detail-body .pd-v10-detail-section {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 60px !important;
    padding: 62px 0 70px !important;
  }

  .product-detail-body .pd-v10-review-rail-sticky {
    position: static !important;
    top: auto !important;
    padding: 0 !important;
    border-left: 0 !important;
  }

  .product-detail-body .pd-v10-card-head {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 13px !important;
    margin-bottom: 28px !important;
    padding-bottom: 18px !important;
  }

  .product-detail-body .pd-v10-card-icon {
    width: 38px !important;
    height: 38px !important;
  }

  .product-detail-body .pd-v10-card-head h2 {
    font-size: clamp(28px, 8vw, 34px) !important;
  }

  .product-detail-body .pd-v10-overview-content {
    font-size: 15px !important;
    line-height: 1.75 !important;
    overflow-wrap: anywhere;
  }

  .product-detail-body .pd-v10-overview-content h2 { font-size: 29px !important; }
  .product-detail-body .pd-v10-overview-content h3 { font-size: 23px !important; }

  .product-detail-body .pd-v10-overview-content :is(table, pre) {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .product-detail-body .pd-v10-overview-content table {
    white-space: nowrap;
  }

  .product-detail-body .pd-v10-review-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .product-detail-body .pd-v10-review-actions .pd-v6-btn {
    min-height: 46px !important;
  }

  /* ---------- Related products ---------- */
  .product-detail-body .pd-v6-related-section {
    padding-top: 62px !important;
  }

  .product-detail-body .pd-v6-related-head {
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .product-detail-body .pd-v6-related-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 26px !important;
  }

  .product-detail-body .pd-v6-related-media {
    height: auto !important;
    aspect-ratio: 16 / 10 !important;
    margin-bottom: 15px !important;
    border-radius: 0 !important;
  }

  .product-detail-body .pd-v6-related-card h3 {
    font-size: 24px !important;
  }

  .product-detail-body .pd-v6-related-card p {
    min-height: 0 !important;
  }

  .product-detail-body .pd-v6-related-action {
    min-width: 44px !important;
    min-height: 44px !important;
    display: grid !important;
    place-items: center !important;
    right: -10px !important;
    bottom: 8px !important;
  }
}

@media (max-width: 430px) {
  /* Narrow-phone marketplace headings and product cards should never compete
     for the same line. */
  #a2t-products .pm-marketplace-head {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 9px !important;
  }

  #a2t-products .pm-marketplace-count {
    justify-self: start !important;
    padding-top: 0 !important;
  }

  #a2t-products .pm-category-mobile-copy small {
    max-width: 31vw !important;
  }

  #a2t-products .pm-product-media {
    aspect-ratio: 4 / 3 !important;
  }

  #a2t-products .pm-product-proofline {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 7px !important;
  }

  #a2t-products .pm-price strong { font-size: 16px !important; }

  #a2t-products .pm-product-view {
    min-width: 96px !important;
  }

  .product-detail-body .pd-product-buy .pd-v6-mini-links {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .product-detail-body .pd-v11-tech-grid {
    gap: 0 !important;
  }

  .product-detail-body .pd-v10-review-actions {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (max-width: 350px) {
  #a2t-products .a2t-store-hero h1 {
    font-size: clamp(39px, 12.5vw, 46px) !important;
  }

  #a2t-products .pm-control-deck {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  #a2t-products .pm-search,
  #a2t-products .pm-category-system,
  #a2t-products .pm-sort-select {
    grid-column: 1 !important;
  }

  #a2t-products .pm-search { grid-row: 1 !important; }
  #a2t-products .pm-category-system { grid-row: 2 !important; }
  #a2t-products .pm-sort-select { grid-row: 3 !important; }

  #a2t-products .pm-category-mobile-copy small { max-width: 58vw !important; }

  #a2t-products .pm-product-footer {
    align-items: stretch !important;
    flex-direction: column !important;
  }

  #a2t-products .pm-product-actions {
    width: 100% !important;
    margin-left: 0 !important;
  }

  #a2t-products .pm-product-view {
    flex: 1 1 auto !important;
  }

  .product-detail-body .pd-v11-tech-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .product-detail-body .pd-product-buy .pd-v6-stat-row span {
    padding-inline: 3px !important;
    font-size: 6.5px !important;
  }
}

@media (hover: none) and (pointer: coarse) and (max-width: 900px) {
  /* No important phone state depends on hover. Direct controls stay stable and
     media zoom/reveal effects are disabled for touch interaction. */
  #a2t-products .pm-product-media > img,
  #a2t-products .pm-product-media:hover > img,
  #a2t-products .pm-product-media:focus-visible > img {
    transform: scale(1.001) !important;
    filter: none !important;
  }

  #a2t-products .pm-product-tech,
  #a2t-products .pm-product-media:hover .pm-product-tech,
  #a2t-products .pm-product-media:focus-visible .pm-product-tech {
    display: none !important;
  }

  .product-detail-body .pd-v30-gallery-prev:hover,
  .product-detail-body .pd-v30-gallery-next:hover,
  .product-detail-body .pd-v30-gallery-rail .pd-v6-thumb:hover {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-detail-body .pd-v30-gallery-rail .pd-v6-thumbs {
    scroll-behavior: auto !important;
  }
}
