:root {
  --paper: #fffaf0;
  --surface: #ffffff;
  --ink: #161615;
  --muted: #69635c;
  --line: #e7ded0;
  --coral: #f45b45;
  --mint: #9fd8c2;
  --yellow: #f4bf35;
  --blue: #1e63d6;
  --charcoal: #252525;
  --shadow: 0 18px 60px rgba(45, 36, 27, 0.12);
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(244, 91, 69, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(30, 99, 214, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

main {
  overflow: hidden;
}

:where(h1, h2, h3, p, li, a, strong, span, dt, dd, label, button) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  max-width: 100%;
  text-wrap: balance;
}

.site-header,
.site-footer,
.hero-section,
.section-block,
.split-band,
.spotlight,
.page-intro,
.shop-toolbar,
.product-detail,
.detail-lists,
.builder-grid,
.checkout-layout,
.material-grid,
.advice-band,
.step-strip,
.category-nav,
.breadcrumb,
.catalog-heading,
.catalog-layout,
.benefit-strip,
.product-commerce-layout,
.product-info-layout,
.quote-page,
.basket-layout {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(260px, 560px) auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  border-bottom: 2px solid rgba(22, 22, 21, 0.08);
  background: rgba(255, 250, 240, 0.88);
  padding: 12px max(16px, calc((100vw - 1180px) / 2));
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--coral);
  box-shadow: 4px 4px 0 var(--ink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.1rem;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.main-nav,
.category-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.category-nav {
  grid-column: 1 / -1;
  justify-content: space-between;
  width: 100%;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  padding-top: 11px;
}

.category-nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 9px 4px;
  font-size: 0.92rem;
  font-weight: 850;
  white-space: nowrap;
}

.category-nav a::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 3px;
  background: var(--coral);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.category-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-search {
  position: relative;
  display: grid;
  align-items: center;
  justify-self: center;
  width: min(100%, 560px);
}

.site-search span {
  position: absolute;
  left: 15px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--muted);
  border-radius: 999px;
}

.site-search span::after {
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 8px;
  height: 2px;
  background: var(--muted);
  content: "";
  transform: rotate(45deg);
}

.site-search input {
  width: 100%;
  min-height: 42px;
  border: 2px solid var(--line);
  background: #fff;
  box-shadow: 4px 4px 0 rgba(22, 22, 21, 0.06);
  padding: 0 15px 0 44px;
  outline: 0;
}

.site-search input:focus {
  border-color: var(--ink);
}

.utility-actions {
  display: inline-flex;
  justify-self: end;
  gap: 9px;
}

.utility-button {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  background: transparent;
}

.utility-button > span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  background: var(--ink);
  content: "";
}

.bag-button > span {
  width: 18px;
  height: 16px;
  border: 2px solid var(--ink);
  background: transparent;
}

.bag-button > span::before {
  position: absolute;
  top: 8px;
  left: 11px;
  width: 12px;
  height: 7px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  content: "";
}

.bag-button em {
  position: absolute;
  right: 2px;
  bottom: 4px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 900;
}

.user-button > span {
  width: 20px;
  height: 20px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: transparent;
}

.user-button > span::before {
  position: absolute;
  top: 9px;
  left: 15px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  width: 22px;
  height: 2px;
}

.menu-button span::before {
  transform: translateY(-7px);
}

.menu-button span::after {
  transform: translateY(5px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.main-nav a,
.cart-link,
.segmented-control button,
.option-grid button,
.quantity-stepper button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.main-nav a,
.cart-link {
  padding: 10px 13px;
  font-size: 0.92rem;
}

.main-nav a:hover,
.cart-link:hover,
.segmented-control button:hover,
.option-grid button:hover,
.quantity-stepper button:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.cart-link {
  justify-self: end;
  font-weight: 700;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: center;
  gap: 36px;
  min-height: calc(100vh - 92px);
  padding: 26px 0 54px;
}

.hero-copy h1,
.page-intro h1,
.detail-copy h1,
.checkout-form h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6.9rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.hero-copy p,
.page-intro p,
.split-band p,
.spotlight p,
.detail-copy p,
.advice-band p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-button,
.secondary-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 2px solid var(--ink);
  font-weight: 850;
}

.primary-button {
  padding: 0 18px;
  background: var(--ink);
  color: #fff;
  box-shadow: 5px 5px 0 var(--coral);
}

.secondary-button {
  padding: 0 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--mint);
}

.text-link {
  min-height: auto;
  border: 0;
  border-bottom: 2px solid currentColor;
  color: var(--ink);
  font-size: 0.95rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.trust-row span,
.tag-row span {
  border: 1px solid var(--line);
  background: #fff;
  padding: 7px 9px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-media {
  padding: 10px;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 10px 10px 0 var(--yellow);
  transform: rotate(1deg);
}

.hero-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.step-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.step-strip div {
  min-height: 102px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.step-strip div:last-child {
  border-right: 0;
}

.step-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--coral);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 900;
}

.step-strip strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
}

.section-block {
  padding: 86px 0 0;
}

.section-block-tight {
  padding-top: 28px;
}

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

.section-heading h2,
.split-band h2,
.spotlight h2,
.detail-lists h2,
.builder-group h2,
.order-summary h2,
.checkout-note h2,
.material-card h2,
.advice-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 930;
  letter-spacing: 0;
  line-height: 1;
}

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

.product-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 7px 7px 0 rgba(22, 22, 21, 0.1);
}

.product-card-compact {
  grid-template-rows: 190px 1fr;
  max-width: 420px;
}

.product-art {
  position: relative;
  display: block;
  min-height: 210px;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background:
    radial-gradient(circle at 24px 24px, rgba(255, 255, 255, 0.45) 0 7px, transparent 8px),
    var(--mint);
  background-size: 36px 36px, auto;
}

.product-art-shape {
  position: absolute;
  inset: 42px 46px;
  border: 10px solid #fff;
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  transform: rotate(-7deg);
}

.product-art-cut {
  position: absolute;
  right: 30px;
  bottom: 28px;
  width: 76px;
  height: 76px;
  border: 9px solid #fff;
  background: var(--yellow);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.product-art-coral {
  background-color: #f7c1b8;
}

.product-art-mint {
  background-color: #c9efe0;
}

.product-art-yellow {
  background-color: #ffe195;
}

.product-art-blue {
  background-color: #bbd2ff;
}

.product-art-ink {
  background-color: #c9c4bc;
}

.product-art-holo {
  background:
    linear-gradient(135deg, #f7bdd2, #bde9ff 35%, #fff1a6 68%, #cab7ff),
    var(--surface);
}

.product-art-mint .product-art-shape,
.product-art-blue .product-art-shape {
  background: var(--mint);
}

.product-art-yellow .product-art-shape {
  background: var(--yellow);
}

.product-art-ink .product-art-shape {
  background: var(--charcoal);
}

.product-art-holo .product-art-shape {
  background: linear-gradient(135deg, #fff, #ffd6ef 35%, #b7f2ff 67%, #ffeaa3);
}

.product-card-body {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 20px;
}

.product-card h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.05;
}

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

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
}

.split-band,
.spotlight,
.advice-band {
  display: grid;
  align-items: center;
  gap: 28px;
  margin-top: 84px;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

.split-band {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 28px;
}

.spotlight,
.advice-band {
  grid-template-columns: 1fr auto;
  padding: 34px;
}

.page-intro {
  padding: 70px 0 30px;
}

.intro-copy {
  margin-top: 18px;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.segmented-control {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.segmented-control button,
.option-grid button {
  min-height: 42px;
  padding: 0 13px;
  font-weight: 800;
}

.segmented-control button.is-active,
.option-grid button.is-active {
  border-color: var(--ink);
  background: var(--yellow);
}

.shop-toolbar p {
  color: var(--muted);
  font-weight: 800;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr) minmax(260px, 0.5fr);
  gap: 24px;
  align-items: start;
  padding: 68px 0 24px;
}

.detail-art {
  min-height: 520px;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--mint);
}

.detail-catalog-art {
  min-height: 520px;
  box-shadow: 8px 8px 0 var(--yellow);
}

.detail-catalog-art .social-preview,
.detail-catalog-art .decal-preview,
.detail-catalog-art .door-preview,
.detail-catalog-art .bin-preview,
.detail-catalog-art .arrow-preview,
.detail-catalog-art .sheet-preview,
.detail-catalog-art .verified-preview {
  transform: scale(1.18);
}

.detail-catalog-art .wall-preview span {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.detail-art .product-art-shape {
  inset: 118px 46px 170px;
}

.detail-copy {
  padding-top: 20px;
}

.detail-copy h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 22px;
}

.price-line span {
  color: var(--muted);
  font-weight: 800;
}

.price-line strong {
  font-size: 2rem;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.summary-panel,
.builder-panel,
.builder-summary,
.cart-panel,
.order-summary,
.checkout-form,
.material-card {
  border: 2px solid var(--ink);
  background: #fff;
  overflow: hidden;
  box-shadow: 7px 7px 0 rgba(22, 22, 21, 0.1);
}

.summary-panel {
  position: sticky;
  top: 92px;
  padding: 20px;
}

dl {
  margin: 0;
}

.summary-panel dl,
.builder-summary dl,
.order-summary dl {
  display: grid;
  gap: 12px;
}

.summary-panel dl div,
.builder-summary dl div,
.order-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 11px;
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.summary-panel .primary-button,
.builder-summary .primary-button,
.order-summary .primary-button,
.checkout-form .primary-button {
  width: 100%;
  margin-top: 20px;
}

.detail-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.detail-lists > div {
  border: 2px solid var(--ink);
  background: #fff;
  padding: 24px;
}

.detail-lists ul,
.checkout-note ol {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.product-commerce-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: 34px;
  align-items: start;
  padding: 58px 0 24px;
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.product-gallery-main {
  position: relative;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 8px 8px 0 var(--mint);
}

.product-gallery-visual {
  position: relative;
  min-height: clamp(360px, 48vw, 620px);
  border: 0;
  box-shadow: none;
}

.product-gallery-visual.product-art {
  min-height: clamp(360px, 48vw, 620px);
  border-bottom: 0;
}

.product-gallery-visual .social-preview,
.product-gallery-visual .decal-preview,
.product-gallery-visual .door-preview,
.product-gallery-visual .bin-preview,
.product-gallery-visual .arrow-preview,
.product-gallery-visual .sheet-preview,
.product-gallery-visual .verified-preview {
  transform: scale(1.14);
}

.product-gallery-visual .wall-preview span {
  font-size: clamp(1.45rem, 3.2vw, 3.1rem);
}

.product-gallery-visual .social-preview {
  width: auto;
  min-width: min(72%, 340px);
  max-width: min(82%, 520px);
}

.product-gallery-visual .social-preview strong.is-live-preview,
.product-gallery-visual .car-window span.is-live-preview,
.product-gallery-visual .decal-preview span.is-live-preview,
.product-gallery-visual .wall-preview span.is-live-preview {
  letter-spacing: 0;
}

.live-preview-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  justify-self: stretch;
  max-width: 420px;
  gap: 5px;
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 5px 5px 0 var(--mint);
  padding: 10px 12px;
  text-align: left;
  z-index: 3;
}

.live-preview-badge span {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.live-preview-badge strong {
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 950;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.product-gallery-visual:not(.has-live-value) .live-preview-badge {
  opacity: 0.82;
}

.product-gallery-panel {
  min-height: clamp(360px, 48vw, 620px);
  align-content: center;
  gap: 18px;
  background: #fff;
  padding: clamp(24px, 5vw, 54px);
}

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

.product-gallery-panel:not([hidden]) {
  display: grid;
}

.product-gallery-panel h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
}

.product-gallery-panel p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
}

.product-gallery-panel dl {
  display: grid;
  width: min(100%, 680px);
  margin: 6px 0 0;
  border: 2px solid var(--line);
}

.product-gallery-panel dl div {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1fr);
  gap: 16px;
  padding: 13px 15px;
}

.product-gallery-panel dl div + div {
  border-top: 1px solid var(--line);
}

.product-gallery-panel dt {
  color: var(--muted);
  font-weight: 850;
}

.product-gallery-panel dd {
  margin: 0;
  color: var(--ink);
  font-weight: 950;
  overflow-wrap: anywhere;
  text-align: right;
}

.product-gallery-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-gallery-tabs button {
  display: grid;
  min-height: 56px;
  place-items: center;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.product-gallery-tabs button:hover,
.product-gallery-tabs button.is-active {
  border-color: var(--ink);
  color: var(--ink);
}

.product-gallery-tabs button.is-active {
  box-shadow: 5px 5px 0 var(--mint);
  transform: translate(-2px, -2px);
}

.product-buy-panel {
  position: sticky;
  top: 116px;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 8px 8px 0 var(--coral);
  padding: 24px;
}

.product-buy-panel h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.product-buy-description {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.review-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-top: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.review-row strong {
  color: var(--yellow);
  letter-spacing: 0;
}

.review-row span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.product-buy-price {
  display: grid;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.product-buy-price span {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-buy-price strong {
  color: var(--ink);
  font-size: clamp(1.65rem, 2.7vw, 2.1rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-align: left;
}

.product-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.product-option-grid label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.product-width-estimate {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.product-width-estimate span {
  color: var(--ink);
  font-weight: 950;
}

.product-option-wide {
  grid-column: 1 / -1;
}

.product-option-grid select,
.product-option-grid input,
.product-personalization input,
.product-personalization textarea,
.add-row input {
  min-height: 44px;
  width: 100%;
  border: 2px solid var(--line);
  background: #fff;
  padding: 0 12px;
  color: var(--ink);
  font-weight: 800;
  outline: 0;
}

.product-personalization {
  display: grid;
  gap: 13px;
  margin-top: 18px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 rgba(22, 22, 21, 0.08);
  padding: 16px;
}

.product-personalization > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 11px;
}

.product-personalization > div span {
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-personalization > div strong {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: right;
}

.product-personalization label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 880;
}

.product-personalization textarea {
  min-height: 86px;
  padding-top: 11px;
  resize: vertical;
}

.product-personalization p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.product-calculation-card {
  display: grid;
  gap: 5px;
  border: 2px solid var(--line);
  background: #fff;
  padding: 13px;
}

.product-calculation-card span {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-calculation-card strong {
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
}

.product-calculation-card em {
  font-style: normal;
}

.product-calculation-card p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.product-color-palette {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  margin-top: 16px;
}

.product-color-palette span {
  aspect-ratio: 1;
  min-height: 28px;
  border: 2px solid var(--ink);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.delivery-card {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  border: 2px solid var(--line);
  background: var(--paper);
  padding: 13px;
}

.delivery-card strong {
  color: var(--ink);
}

.delivery-card span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.add-row {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 8px;
  margin-top: 16px;
}

.product-buy-panel .secondary-button {
  width: 100%;
  margin-top: 10px;
  box-shadow: 5px 5px 0 var(--mint);
}

.product-info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 22px;
  padding-top: 28px;
}

.product-info-copy,
.product-info-table {
  border: 2px solid var(--ink);
  background: #fff;
  padding: 26px;
  box-shadow: 7px 7px 0 rgba(22, 22, 21, 0.1);
}

.product-info-copy h2,
.product-info-table h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  font-weight: 930;
  letter-spacing: 0;
  line-height: 1.02;
}

.product-info-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.product-info-table dl {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.product-info-table dl div {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
}

.product-info-table dd {
  color: var(--coral);
}

.product-info-table ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.builder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 22px;
  align-items: start;
  padding: 22px 0 72px;
}

.builder-panel {
  display: grid;
  gap: 24px;
  padding: 24px;
}

.builder-group h2 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

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

.range-row,
.toggle-row,
.checkout-form label {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-weight: 800;
}

.range-row strong {
  color: var(--ink);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--coral);
}

.toggle-row {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.toggle-row input {
  width: 22px;
  height: 22px;
  accent-color: var(--ink);
}

.builder-summary {
  padding: 22px;
}

.sticker-preview {
  display: grid;
  min-height: 190px;
  place-items: center;
  margin-bottom: 22px;
  border: 2px solid var(--ink);
  background:
    radial-gradient(circle at 22px 22px, rgba(255, 255, 255, 0.35) 0 6px, transparent 7px),
    var(--mint);
  background-size: 32px 32px;
}

.sticker-preview span {
  display: grid;
  width: min(230px, 78%);
  min-height: 86px;
  place-items: center;
  border: 8px solid #fff;
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  color: #fff;
  font-size: 2rem;
  font-weight: 950;
  transform: rotate(-6deg);
}

.builder-summary h2 {
  margin: 0 0 20px;
  font-size: 3rem;
  font-weight: 950;
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 20px 0 0;
}

.material-card {
  min-height: 260px;
  padding: 22px;
}

.material-card p {
  color: var(--muted);
  line-height: 1.55;
}

.material-card strong {
  display: block;
  margin-top: 24px;
}

.swatch {
  display: block;
  width: 74px;
  height: 48px;
  margin-bottom: 24px;
  border: 2px solid var(--ink);
  background: var(--mint);
  box-shadow: 5px 5px 0 var(--ink);
}

.material-card-coral .swatch {
  background: var(--coral);
}

.material-card-yellow .swatch {
  background: var(--yellow);
}

.material-card-blue .swatch {
  background: var(--blue);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 22px;
  align-items: start;
  padding: 70px 0;
}

.cart-panel,
.checkout-form {
  padding: 26px;
}

.cart-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.cart-item h2 {
  margin: 0;
  font-size: 1.1rem;
}

.cart-item p {
  margin: 4px 0 0;
  color: var(--muted);
}

.mini-art {
  width: 64px;
  height: 64px;
  border: 2px solid var(--ink);
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 34px 54px 34px;
  align-items: center;
  text-align: center;
}

.quantity-stepper button {
  height: 34px;
  font-size: 1.1rem;
  font-weight: 900;
}

.quantity-stepper span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.85rem;
  font-weight: 900;
}

.order-summary {
  padding: 22px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  border-top: 2px solid var(--ink);
  padding-top: 18px;
  font-size: 1.2rem;
}

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

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

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 2px solid var(--line);
  background: var(--paper);
  padding: 12px 13px;
  color: var(--ink);
  outline: 0;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: var(--ink);
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 20px 0 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.breadcrumb a {
  color: var(--ink);
}

.catalog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  border-bottom: 2px solid var(--line);
  padding: 26px 0 18px;
}

.catalog-heading h1,
.quote-page h1,
.basket-main h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.quote-page h1 {
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  max-width: 11ch;
}

.catalog-heading p,
.quote-copy p,
.quote-copy ol,
.basket-copy p,
.free-tool-card p {
  max-width: 690px;
  color: var(--muted);
  line-height: 1.6;
}

.sort-select select,
.quote-form select {
  min-height: 44px;
  border: 2px solid var(--line);
  background: #fff;
  padding: 0 42px 0 13px;
  color: var(--ink);
  font-weight: 800;
  outline: 0;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 28px;
  padding-top: 26px;
}

.category-sidebar {
  position: sticky;
  top: 142px;
  align-self: start;
}

.category-sidebar section {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.category-sidebar section > a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  font-size: 0.95rem;
}

.category-sidebar section > a span {
  color: var(--muted);
}

.category-sidebar section > div {
  display: none;
  padding: 0 0 10px 12px;
}

.category-sidebar section.is-active > div {
  display: grid;
  gap: 9px;
}

.category-sidebar section > div a {
  color: var(--muted);
  font-size: 0.92rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px 22px;
}

.catalog-card {
  min-width: 0;
}

.catalog-card h2 {
  margin: 13px 0 0;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
}

.catalog-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
}

.catalog-art {
  position: relative;
  display: grid;
  min-height: 214px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--ink);
  background:
    radial-gradient(circle at 26px 26px, rgba(255, 255, 255, 0.4) 0 7px, transparent 8px),
    #fff;
  background-size: 38px 38px, auto;
  box-shadow: 6px 6px 0 rgba(22, 22, 21, 0.09);
}

.tone-coral {
  background-color: #ffd4cc;
}

.tone-mint {
  background-color: #d9f3ea;
}

.tone-yellow {
  background-color: #ffe7a5;
}

.tone-blue {
  background-color: #cfe0ff;
}

.tone-ink {
  background-color: #e2ded7;
}

.tone-holo {
  background: linear-gradient(135deg, #ffd1e8, #d0f5ff 35%, #fff0a7 65%, #dfd2ff);
}

.social-preview {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: calc(100% - 34px);
  max-width: 210px;
  border: 8px solid #fff;
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  color: #fff;
  padding: 14px;
  transform: rotate(-2deg);
}

.social-preview span {
  display: grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  background: #fff;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.social-preview strong {
  min-width: 0;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.car-preview {
  position: relative;
  display: grid;
  width: 92%;
  min-height: 150px;
  align-content: end;
  border: 2px solid var(--ink);
  border-radius: 26px 26px 6px 6px;
  background: linear-gradient(#fff, #d8d8d8);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.14);
  padding: 14px;
}

.car-window {
  display: grid;
  min-height: 72px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 18px 18px 7px 7px;
  background: #171717;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.car-window span {
  max-width: calc(100% - 14px);
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-align: center;
}

.car-lights::before,
.car-lights::after {
  position: absolute;
  bottom: 39px;
  width: 34px;
  height: 17px;
  border: 2px solid var(--ink);
  background: var(--coral);
  content: "";
}

.car-lights::before {
  left: 20px;
}

.car-lights::after {
  right: 20px;
}

.car-preview strong {
  justify-self: center;
  margin-top: 22px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  padding: 2px 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.82rem;
}

.wall-preview {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 214px;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.94)),
    inherit;
}

.wall-preview span {
  max-width: 80%;
  color: var(--ink);
  font-size: clamp(1.1rem, 2.2vw, 1.9rem);
  font-weight: 900;
  line-height: 1.06;
  overflow-wrap: anywhere;
  text-align: center;
  text-transform: uppercase;
}

.wall-preview i {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  height: 48px;
  border: 2px solid rgba(22, 22, 21, 0.18);
  border-bottom: 0;
}

.decal-preview {
  display: grid;
  width: min(74%, 190px);
  min-height: 132px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(22, 22, 21, 0.13);
  padding: 20px;
  transform: rotate(-4deg);
}

.decal-preview span,
.door-preview span,
.bin-preview span,
.arrow-preview strong {
  max-width: 100%;
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-align: center;
}

.decal-preview span {
  font-size: clamp(1.05rem, 2vw, 1.75rem);
  font-weight: 950;
}

.door-preview {
  position: relative;
  display: grid;
  width: min(76%, 180px);
  min-height: 166px;
  place-items: center;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 8px 8px 0 rgba(22, 22, 21, 0.13);
  padding: 18px 24px;
}

.door-preview span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(1rem, 2vw, 1.7rem);
  font-weight: 950;
  text-transform: uppercase;
}

.door-preview i {
  position: absolute;
  right: 14px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ink);
}

.bin-preview {
  position: relative;
  display: grid;
  width: min(72%, 168px);
  min-height: 154px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 14px 14px 8px 8px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(22, 22, 21, 0.13);
  padding: 22px 18px;
}

.bin-preview::before {
  position: absolute;
  top: -14px;
  left: 18px;
  right: 18px;
  height: 16px;
  border: 2px solid var(--ink);
  background: #fff;
  content: "";
}

.bin-preview span {
  border: 2px solid var(--ink);
  background: var(--yellow);
  padding: 8px 12px;
  font-size: clamp(0.92rem, 1.8vw, 1.35rem);
  font-weight: 950;
  text-transform: uppercase;
}

.arrow-preview {
  display: grid;
  gap: 18px;
  place-items: center;
}

.arrow-preview span {
  width: min(72%, 180px);
  height: 58px;
  clip-path: polygon(0 28%, 62% 28%, 62% 0, 100% 50%, 62% 100%, 62% 72%, 0 72%);
  background: var(--ink);
}

.arrow-preview strong {
  width: min(72%, 180px);
  border: 2px solid var(--ink);
  background: #fff;
  padding: 8px 10px;
  font-size: 0.88rem;
  font-weight: 950;
  text-transform: uppercase;
}

.sheet-preview {
  position: relative;
  display: grid;
  width: 56%;
  min-height: 150px;
  place-items: center;
  transform: rotate(-6deg);
}

.sheet-preview span {
  position: absolute;
  display: grid;
  width: 100%;
  min-height: 126px;
  place-items: center;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(1.15rem, 2.1vw, 2rem);
  font-weight: 950;
  letter-spacing: 0;
  text-align: center;
}

.sheet-preview span:nth-child(1) {
  transform: translate(-16px, -12px) rotate(-8deg);
}

.sheet-preview span:nth-child(2) {
  transform: translate(10px, -4px) rotate(5deg);
}

.sheet-preview span:nth-child(3) {
  transform: translate(0, 12px) rotate(-1deg);
}

.tool-preview {
  display: grid;
  gap: 16px;
  place-items: center;
}

.tool-preview span {
  display: block;
  width: 108px;
  height: 126px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 8px 8px 0 var(--ink);
}

.tool-preview-rakel span {
  height: 76px;
  border-radius: 12px 12px 4px 4px;
  transform: skewX(-14deg) rotate(-8deg);
}

.tool-preview-cleaner span {
  width: 58px;
  border-radius: 22px 22px 9px 9px;
  background: var(--charcoal);
}

.tool-preview-tape span {
  border: 20px solid #d8c89b;
  border-radius: 999px;
  background: #fff;
}

.tool-preview strong {
  max-width: 160px;
  text-align: center;
}

.verified-preview {
  display: grid;
  grid-template-columns: repeat(6, 22px);
  gap: 7px;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 8px 8px 0 rgba(22, 22, 21, 0.12);
  padding: 16px;
  transform: rotate(-5deg);
}

.verified-preview span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 58px;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

.benefit-strip div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  min-height: 86px;
  border-right: 1px solid var(--line);
  padding: 18px;
}

.benefit-strip div:last-child {
  border-right: 0;
}

.benefit-strip span {
  position: relative;
  width: 22px;
  height: 22px;
  margin-top: 3px;
}

.benefit-strip span::before {
  position: absolute;
  width: 20px;
  height: 10px;
  border-bottom: 4px solid var(--coral);
  border-left: 4px solid var(--coral);
  content: "";
  transform: rotate(-45deg);
}

.benefit-strip p {
  margin: 0;
  line-height: 1.45;
}

.quote-page {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 42px;
  align-items: start;
  padding: 64px 0 18px;
}

.quote-copy strong {
  display: block;
  max-width: 420px;
  margin-top: 22px;
  font-size: 1.1rem;
  line-height: 1.55;
}

.quote-copy h2 {
  margin: 30px 0 0;
  font-size: 1.25rem;
}

.quote-copy ol {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
  padding-left: 0;
  list-style-position: inside;
}

.quote-form {
  display: grid;
  gap: 18px;
  border: 2px solid var(--ink);
  background: #fff;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--mint);
  padding: 24px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.quote-form label > span:not(.unit-input):not(.upload-zone) {
  color: var(--coral);
}

.quote-form input,
.quote-form textarea,
.quote-form select,
.coupon-input {
  width: 100%;
  border: 2px solid var(--line);
  background: var(--paper);
  padding: 12px 13px;
  color: var(--ink);
  outline: 0;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus,
.coupon-input:focus {
  border-color: var(--ink);
}

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

.unit-input {
  display: grid;
  grid-template-columns: 1fr auto;
}

.unit-input input {
  border-right: 0;
}

.unit-input em {
  display: grid;
  min-width: 48px;
  place-items: center;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-style: normal;
}

.upload-zone {
  display: grid;
  min-height: 76px;
  place-items: center;
  border: 2px dashed var(--line);
  background: var(--paper);
  color: var(--muted);
  text-align: center;
}

.quote-form small {
  color: var(--muted);
  font-weight: 650;
}

.file-input {
  width: min(100%, 320px);
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.form-status {
  margin: 14px 0 0;
  border: 2px solid var(--ink);
  background: var(--mint);
  box-shadow: 5px 5px 0 rgba(22, 22, 21, 0.1);
  color: var(--ink);
  padding: 12px 14px;
  font-weight: 850;
  line-height: 1.45;
}

.form-status.is-error {
  background: #ffd4cc;
}

.checkout-context {
  margin: 0 0 18px;
  border: 2px solid var(--line);
  background: var(--paper);
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 800;
}

.basket-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
  gap: 60px;
  align-items: start;
  padding: 64px 0 0;
}

.basket-main h1 {
  padding-bottom: 24px;
  border-bottom: 2px solid var(--line);
}

.basket-item {
  position: relative;
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr) auto auto auto;
  gap: 22px;
  align-items: start;
  border-bottom: 2px solid var(--line);
  padding: 24px 0 28px;
}

.remove-button {
  position: absolute;
  top: 18px;
  left: 10px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

.text-sticker-thumb {
  display: grid;
  min-height: 96px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--ink);
  background:
    linear-gradient(45deg, rgba(22, 22, 21, 0.05) 25%, transparent 25% 75%, rgba(22, 22, 21, 0.05) 75%),
    #fff;
  background-size: 18px 18px;
}

.text-sticker-thumb span {
  display: block;
  min-width: 170px;
  padding: 4px 10px;
  background: #fff;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: 0;
}

.basket-copy h2,
.free-tool-card h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 950;
  line-height: 1.15;
}

.basket-copy > strong {
  display: inline-block;
  border: 2px solid var(--ink);
  background: var(--yellow);
  padding: 3px 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.basket-price span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.free-tool-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  border: 2px solid var(--ink);
  background: #fff;
  overflow: hidden;
  box-shadow: 7px 7px 0 rgba(22, 22, 21, 0.1);
  padding: 20px;
}

.tool-thumb {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  background: var(--paper);
}

.tool-thumb span {
  width: 62px;
  height: 42px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
  transform: skewX(-14deg) rotate(-8deg);
}

.free-tool-card small {
  display: inline-block;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 4px 8px;
  color: var(--ink);
  font-weight: 850;
}

.free-tool-card p {
  margin: 0 0 8px;
}

.free-tool-card p strong {
  color: var(--coral);
}

.progress-bar {
  height: 10px;
  overflow: hidden;
  background: var(--line);
}

.progress-bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--blue));
}

.basket-summary {
  position: sticky;
  top: 150px;
  box-shadow: 8px 8px 0 var(--yellow);
}

.coupon-input {
  margin-top: 18px;
}

.text-sticker-builder {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 6px 0 72px;
}

.text-preview-stage {
  position: relative;
  display: grid;
  min-height: 210px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--ink);
  background:
    linear-gradient(45deg, rgba(22, 22, 21, 0.045) 25%, transparent 25% 75%, rgba(22, 22, 21, 0.045) 75%),
    linear-gradient(45deg, rgba(22, 22, 21, 0.045) 25%, transparent 25% 75%, rgba(22, 22, 21, 0.045) 75%),
    #fff;
  background-position: 0 0, 10px 10px;
  background-size: 20px 20px;
  box-shadow: 9px 9px 0 var(--yellow);
  padding: 34px;
}

.text-preview-box {
  position: relative;
  display: grid;
  width: min(780px, 82%);
  min-height: 112px;
  align-items: center;
  border: 2px dashed rgba(22, 22, 21, 0.55);
  padding: 0 18px;
}

.text-preview-box span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-measure {
  position: absolute;
  z-index: 1;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 950;
}

.preview-measure-height {
  top: 50%;
  left: calc(50% - min(390px, 41%));
  writing-mode: vertical-rl;
  transform: translate(-34px, -50%) rotate(180deg);
}

.preview-measure-height::before {
  position: absolute;
  top: -34px;
  bottom: -34px;
  left: -8px;
  border-left: 1px dashed var(--ink);
  content: "";
}

.preview-measure-width {
  right: calc(50% - min(390px, 41%));
  bottom: 18px;
}

.preview-measure-width::before {
  position: absolute;
  top: -6px;
  right: 0;
  left: 0;
  border-top: 1px dashed var(--ink);
  content: "";
}

.text-builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.42fr);
  gap: 22px;
  align-items: start;
  margin-top: 22px;
}

.text-builder-panel,
.text-order-card {
  border: 2px solid var(--ink);
  background: #fff;
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(22, 22, 21, 0.1);
}

.text-builder-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 22px;
}

.text-builder-column {
  display: grid;
  align-content: start;
  gap: 18px;
}

.builder-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.builder-field > span:first-child,
.switch-field > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.builder-field > span:first-child::after,
.switch-field > span::after {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid var(--muted);
  border-radius: 999px;
  color: var(--muted);
  content: "?";
  font-size: 0.68rem;
  font-weight: 900;
}

.builder-field input,
.builder-field textarea,
.builder-field select,
.add-row input {
  width: 100%;
  border: 2px solid var(--line);
  background: var(--paper);
  padding: 12px 13px;
  color: var(--ink);
  outline: 0;
}

.builder-field textarea {
  resize: vertical;
}

.builder-field input:focus,
.builder-field textarea:focus,
.builder-field select:focus,
.add-row input:focus {
  border-color: var(--ink);
}

.builder-field small {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.4;
}

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

.stepper-input {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
}

.stepper-input button {
  border: 2px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
}

.stepper-input button:disabled {
  color: #bbb7b0;
  cursor: not-allowed;
}

.stepper-input input {
  border-right: 0;
  border-left: 0;
  text-align: center;
}

.stepper-input.is-readonly input {
  color: var(--muted);
}

.font-upload,
.upload-zone.font-upload {
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 2px dashed var(--line);
  background: var(--paper);
  color: var(--ink);
  font-weight: 850;
  text-align: center;
}

.switch-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-weight: 850;
}

.switch-field input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch-field i {
  position: relative;
  display: block;
  width: 48px;
  height: 28px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #e3e1dc;
}

.switch-field i::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  content: "";
  transition: transform 160ms ease;
}

.switch-field input:checked + i {
  border-color: var(--ink);
  background: var(--mint);
}

.switch-field input:checked + i::before {
  transform: translateX(20px);
}

.color-palette {
  display: grid;
  grid-template-columns: repeat(9, minmax(24px, 1fr));
  gap: 6px;
}

.color-palette button {
  position: relative;
  min-height: 34px;
  border: 2px solid rgba(22, 22, 21, 0.16);
  box-shadow: inset 0 11px 0 rgba(255, 255, 255, 0.34);
}

.color-palette button.is-active {
  border-color: var(--ink);
  box-shadow: inset 0 11px 0 rgba(255, 255, 255, 0.34), 0 0 0 3px var(--yellow);
}

.color-palette button.is-active::after {
  position: absolute;
  inset: 7px;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  content: "";
  filter: drop-shadow(0 1px 0 var(--ink));
  transform: rotate(-45deg);
}

.text-order-card {
  position: sticky;
  top: 150px;
  padding: 22px;
  box-shadow: 8px 8px 0 var(--yellow);
}

.text-spec-list {
  display: grid;
  gap: 0;
}

.text-spec-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, auto);
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

.text-spec-list dt {
  color: var(--muted);
}

.text-spec-list dd {
  min-width: 0;
  text-align: right;
  font-weight: 900;
}

.unit-price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  border-bottom: 2px solid var(--line);
  padding-bottom: 18px;
}

.unit-price-row span {
  color: var(--muted);
}

.unit-price-row strong {
  font-size: 1.7rem;
  font-weight: 950;
}

.delivery-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 4px 4px 0 rgba(22, 22, 21, 0.08);
  padding: 8px 12px;
}

.delivery-pill span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--mint);
  color: #fff;
  font-weight: 950;
}

.delivery-copy {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.add-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.add-row .primary-button {
  width: 100%;
  margin: 0;
}

.discount-table {
  margin-top: 20px;
  border-top: 2px solid var(--line);
  padding-top: 16px;
}

.discount-table summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 950;
}

.discount-table table {
  width: 100%;
  margin-top: 12px;
  border-collapse: collapse;
  overflow: hidden;
  font-size: 0.92rem;
}

.discount-table th,
.discount-table td {
  border-bottom: 1px solid var(--line);
  padding: 8px;
  text-align: left;
}

.discount-table th:last-child,
.discount-table td:last-child {
  text-align: right;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.5fr 0.5fr;
  gap: 34px;
  margin-top: 80px;
  border-top: 2px solid var(--ink);
  padding: 32px 0 44px;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer a:not(.brand) {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.footer-brand {
  margin-bottom: 14px;
}

.admin-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 86px;
}

.admin-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 24px;
}

.admin-heading h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
}

.admin-heading p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.admin-order-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.admin-order-card {
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 7px 7px 0 rgba(22, 22, 21, 0.1);
  padding: 22px;
}

.admin-order-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.admin-order-top span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-order-top h2 {
  margin: 6px 0;
  font-size: clamp(1.35rem, 2.6vw, 2.25rem);
  font-weight: 930;
  letter-spacing: 0;
  line-height: 1.02;
}

.admin-order-top p,
.admin-notes {
  color: var(--muted);
  line-height: 1.55;
}

.admin-order-top > strong {
  flex: 0 0 auto;
  font-size: 1.45rem;
}

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

.admin-spec-grid div {
  padding: 12px;
  border-right: 1px solid var(--line);
}

.admin-spec-grid div:last-child {
  border-right: 0;
}

.admin-spec-grid dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.admin-spec-grid dd {
  margin-top: 4px;
  font-weight: 900;
}

.admin-personalization {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  border: 2px solid var(--line);
  background: var(--paper);
  padding: 16px;
}

.admin-personalization > strong {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-personalization div {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.admin-personalization span {
  color: var(--ink);
  font-weight: 950;
  overflow-wrap: anywhere;
}

.admin-personalization ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.45;
}

.admin-personalization li {
  overflow-wrap: anywhere;
}

.admin-file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.admin-file-list > span {
  color: var(--muted);
  font-weight: 800;
}

.catalog-product-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-editor-grid,
.track-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: start;
  margin-top: 28px;
}

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

.admin-product-form,
.admin-tracking-form,
.track-form {
  display: grid;
  gap: 16px;
}

.admin-product-form input,
.admin-product-form textarea,
.admin-product-form select,
.admin-tracking-form input,
.admin-tracking-form textarea,
.admin-tracking-form select,
.track-form input {
  width: 100%;
  border: 2px solid var(--line);
  background: var(--paper);
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
}

.admin-product-form textarea,
.admin-tracking-form textarea {
  resize: vertical;
}

.admin-product-form label,
.admin-tracking-form label,
.track-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

.admin-product-index {
  max-height: 880px;
  overflow: auto;
}

.admin-product-list {
  display: grid;
  gap: 0;
  margin-top: 16px;
}

.admin-product-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 12px 0;
}

.admin-product-row strong,
.admin-product-row span {
  display: block;
  min-width: 0;
}

.admin-product-row strong {
  overflow-wrap: anywhere;
}

.admin-product-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.admin-product-preview {
  width: min(220px, 100%);
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 8px;
}

.admin-product-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.admin-tracking-form {
  margin-top: 18px;
  border-top: 2px solid var(--line);
  padding-top: 18px;
}

.admin-tracking-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.checkbox-row {
  display: inline-flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px !important;
}

.checkbox-row input {
  width: auto;
}

.track-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 86px;
}

.track-intro {
  border-bottom: 2px solid var(--ink);
  padding-bottom: 24px;
}

.track-intro h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 6.8rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
}

.track-intro p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
  line-height: 1.6;
}

.track-form,
.track-card,
.track-help {
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 7px 7px 0 rgba(22, 22, 21, 0.1);
  padding: 22px;
}

.track-card {
  box-shadow: 8px 8px 0 var(--yellow);
}

.track-card-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 2px solid var(--line);
  padding-bottom: 18px;
}

.track-card-top span {
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.track-card-top h2 {
  margin: 6px 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
}

.track-card-top p {
  margin: 0;
  color: var(--muted);
}

.track-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 18px 0;
  border: 2px solid var(--line);
}

.track-details div {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px;
}

.track-details div:nth-child(2n) {
  border-right: 0;
}

.track-details dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.track-details dd {
  min-width: 0;
  margin-top: 4px;
  overflow-wrap: anywhere;
  font-weight: 900;
}

.track-note {
  border: 2px solid var(--ink);
  background: var(--mint);
  padding: 12px 14px;
  font-weight: 850;
  line-height: 1.45;
}

.track-timeline {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.track-timeline li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.track-timeline li > span {
  position: relative;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--coral);
}

.track-timeline strong,
.track-timeline time,
.track-timeline p {
  display: block;
}

.track-timeline time {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.track-timeline p,
.track-help p {
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-search,
  .category-nav {
    grid-column: 1 / -1;
  }

  .site-search {
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
  }

  .main-nav,
  .category-nav {
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-section,
  .split-band,
  .spotlight,
  .advice-band,
  .product-detail,
  .product-commerce-layout,
  .product-info-layout,
  .builder-grid,
  .checkout-layout,
  .catalog-heading,
  .catalog-layout,
  .quote-page,
  .basket-layout,
  .text-builder-layout,
  .text-builder-panel,
  .site-footer,
  .admin-editor-grid,
  .track-layout {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-media {
    transform: none;
  }

  .step-strip,
  .product-grid,
  .material-grid,
  .catalog-grid,
  .benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-panel,
  .product-buy-panel,
  .category-sidebar,
  .basket-summary,
  .text-order-card {
    position: static;
  }

  .detail-art {
    min-height: 360px;
  }

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

  .basket-item {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .basket-price,
  .basket-item .quantity-stepper {
    grid-column: 2;
    justify-self: start;
  }

  .text-preview-stage {
    min-height: 180px;
  }

  .text-preview-box {
    width: min(720px, 86%);
  }

  .color-palette {
    grid-template-columns: repeat(6, minmax(28px, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-footer,
  .hero-section,
  .section-block,
  .split-band,
  .spotlight,
  .page-intro,
  .shop-toolbar,
  .product-detail,
  .product-commerce-layout,
  .product-info-layout,
  .detail-lists,
  .builder-grid,
  .checkout-layout,
  .material-grid,
  .advice-band,
  .step-strip,
  .breadcrumb,
  .catalog-heading,
  .catalog-layout,
  .benefit-strip,
  .quote-page,
  .basket-layout,
  .admin-page,
  .track-page,
  .text-sticker-builder {
    width: min(1180px, calc(100% - 22px));
  }

  .site-header {
    padding-inline: 11px;
  }

  .brand small {
    display: none;
  }

  .cart-link {
    padding-inline: 10px;
  }

  .hero-copy h1,
  .page-intro h1,
  .detail-copy h1,
  .checkout-form h1,
  .catalog-heading h1,
  .quote-page h1,
  .basket-main h1 {
    font-size: clamp(2.45rem, 12.5vw, 3.45rem);
    line-height: 0.96;
  }

  .quote-page h1,
  .basket-main h1,
  .catalog-heading h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.15rem);
  }

  .quote-page h1 {
    font-size: clamp(2rem, 8.7vw, 2.45rem);
    max-width: 10.8ch;
  }

  .button-row,
  .shop-toolbar,
  .section-heading,
  .admin-heading,
  .admin-order-top {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .step-strip,
  .product-grid,
  .product-option-grid,
  .admin-spec-grid,
  .detail-lists,
  .option-grid,
  .material-grid,
  .field-grid,
  .field-grid-three,
  .catalog-grid,
  .benefit-strip,
  .category-sidebar,
  .text-builder-panel,
  .dimension-grid,
  .admin-form-grid,
  .track-details {
    grid-template-columns: 1fr;
  }

  .track-details div,
  .track-details div:nth-child(2n) {
    border-right: 0;
  }

  .product-commerce-layout {
    gap: 22px;
    padding-top: 34px;
  }

  .product-gallery-visual,
  .product-gallery-visual.product-art {
    min-height: 300px;
  }

  .product-gallery-visual .social-preview,
  .product-gallery-visual .decal-preview,
  .product-gallery-visual .door-preview,
  .product-gallery-visual .bin-preview,
  .product-gallery-visual .arrow-preview,
  .product-gallery-visual .sheet-preview,
  .product-gallery-visual .verified-preview {
    transform: scale(0.98);
  }

  .product-buy-panel,
  .product-info-copy,
  .product-info-table {
    padding: 20px;
  }

  .product-buy-panel h1 {
    font-size: clamp(1.9rem, 9.5vw, 2.55rem);
  }

  .product-buy-price strong {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .product-color-palette {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .step-strip div:last-child {
    border-bottom: 0;
  }

  .product-card,
  .product-card-compact {
    grid-template-rows: 180px 1fr;
  }

  .product-card-body {
    min-height: auto;
  }

  .split-band,
  .spotlight,
  .advice-band,
  .cart-panel,
  .checkout-form,
  .quote-form {
    padding: 20px;
  }

  .quote-page {
    gap: 24px;
    padding-top: 44px;
  }

  .quote-copy strong,
  .quote-copy p,
  .quote-copy ol,
  .catalog-heading p {
    font-size: 0.98rem;
  }

  .unit-input {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .text-sticker-builder {
    padding-top: 0;
  }

  .text-preview-stage {
    min-height: 148px;
    padding: 22px 14px 30px;
  }

  .text-preview-box {
    width: 84%;
    min-height: 76px;
    padding-inline: 10px;
  }

  .text-preview-box span {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .preview-measure {
    font-size: 0.7rem;
  }

  .preview-measure-height {
    left: 8px;
    transform: translate(-4px, -50%) rotate(180deg);
  }

  .preview-measure-width {
    right: 24px;
    bottom: 8px;
  }

  .text-builder-layout {
    gap: 18px;
  }

  .text-builder-panel,
  .text-order-card {
    padding: 18px;
  }

  .color-palette {
    grid-template-columns: repeat(5, minmax(30px, 1fr));
  }

  .text-spec-list div {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .cart-item {
    grid-template-columns: 58px 1fr;
  }

  .cart-item > strong,
  .quantity-stepper {
    grid-column: 2;
    justify-self: start;
  }

  .catalog-art {
    min-height: 190px;
  }

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

  .benefit-strip div:last-child {
    border-bottom: 0;
  }

  .basket-item {
    grid-template-columns: 1fr;
  }

  .text-sticker-thumb,
  .basket-copy,
  .basket-price,
  .basket-item .quantity-stepper {
    grid-column: 1;
  }

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

  .admin-spec-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .admin-spec-grid div:last-child {
    border-bottom: 0;
  }
}

/* PHP/STRATO compatibility layer: keeps server-rendered pages in the demo style. */
.form-card,
.tracking-card,
.cart-row {
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 7px 7px 0 rgba(22, 22, 21, 0.1);
  padding: 22px;
}

.form-card,
.form-card label,
.tracking-card {
  display: grid;
  gap: 16px;
}

.form-card input,
.form-card textarea,
.form-card select,
.cart-row input {
  width: 100%;
  border: 2px solid var(--line);
  background: var(--paper);
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.narrow {
  width: min(520px, calc(100% - 32px));
  margin: 0 auto 72px;
}

.cart-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 28px;
  align-items: start;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 72px;
}

.cart-list {
  display: grid;
  gap: 14px;
}

.cart-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
}

.cart-row-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.cart-row-copy strong {
  overflow-wrap: anywhere;
  line-height: 1.2;
}

.cart-personalization {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.cart-personalization li {
  overflow-wrap: anywhere;
}

.cart-row > div {
  display: grid;
  min-height: 80px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--paper);
}

.install-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.install-card {
  width: min(560px, calc(100% - 32px));
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 8px 8px 0 var(--mint);
  padding: 28px;
}

.product-buy-panel form {
  display: block;
}

.text-order-card .primary-button {
  width: 100%;
  margin-top: 18px;
}

@media (max-width: 720px) {
  .cart-grid,
  .cart-row {
    grid-template-columns: 1fr;
  }
}

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

.home-category-card {
  display: grid;
  min-height: 230px;
  align-content: space-between;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 7px 7px 0 rgba(22, 22, 21, 0.1);
  padding: 20px;
}

.home-category-card span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--coral);
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
}

.home-category-card.tone-mint span { background: var(--mint); color: var(--ink); }
.home-category-card.tone-yellow span { background: var(--yellow); color: var(--ink); }
.home-category-card.tone-blue span { background: var(--blue); color: #fff; }

.home-category-card strong {
  margin-top: 22px;
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1.05;
}

.home-category-card p,
.home-sticker-note p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.home-sticker-note {
  display: grid;
  width: min(340px, 100%);
  min-height: 250px;
  align-content: center;
  justify-self: end;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--yellow);
  padding: 24px;
  transform: rotate(1deg);
}

.home-sticker-note span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 22px;
  background: var(--ink);
  color: #fff;
  font-weight: 950;
  box-shadow: 5px 5px 0 var(--coral);
}

.home-sticker-note strong {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 950;
  line-height: 1;
}

@media (max-width: 900px) {
  .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-sticker-note {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .home-category-grid {
    grid-template-columns: 1fr;
  }
}

/* Professional CMS product management layout. */
.cms-admin-page .admin-editor-grid {
  grid-template-columns: minmax(360px, 0.82fr) minmax(440px, 1.18fr);
  gap: 28px;
}

.cms-admin-page .admin-order-card {
  background: rgba(255, 255, 255, 0.96);
}

.admin-product-form {
  align-content: start;
}

.admin-product-form .admin-order-top {
  align-items: start;
  border-bottom: 2px solid var(--line);
  padding-bottom: 18px;
}

.admin-product-form .admin-order-top .primary-button {
  flex: 0 0 auto;
  margin-top: 4px;
}

.admin-product-form .admin-form-grid {
  margin-top: 18px;
}

.admin-product-form label {
  min-width: 0;
}

.admin-product-form input,
.admin-product-form textarea {
  min-height: 48px;
  border-radius: 0;
}

.admin-product-form textarea {
  min-height: 150px;
  line-height: 1.55;
}

.admin-upload-field {
  border: 2px dashed var(--line);
  background: var(--paper);
  padding: 16px;
}

.admin-upload-field small {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

.admin-product-preview {
  width: min(260px, 100%);
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 rgba(22, 22, 21, 0.08);
  padding: 8px;
}

.admin-product-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.admin-product-index {
  max-height: min(920px, calc(100vh - 180px));
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.admin-product-index .admin-order-top {
  border-bottom: 2px solid var(--line);
  padding-bottom: 18px;
}

.admin-product-list {
  min-height: 0;
  overflow: auto;
  padding-right: 8px;
}

.admin-product-row {
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.admin-product-row + .admin-product-row {
  border-top: 1px solid var(--line);
}

.admin-product-row strong {
  font-size: 1rem;
  line-height: 1.25;
  overflow-wrap: break-word;
}

.admin-product-row span {
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-product-row .text-link {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .cms-admin-page .admin-editor-grid {
    grid-template-columns: 1fr;
  }

  .admin-product-index {
    max-height: none;
  }
}
