:root {
  --ink: #111315;
  --ink-soft: #2b2e30;
  --paper: #f4f2ed;
  --white: #ffffff;
  --line: rgba(17, 19, 21, 0.16);
  --muted: #696c6d;
  --ice: #c8d8de;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: white; color: black; padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }

.announcement {
  min-height: 32px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: rgba(255,255,255,.78);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .4rem 1rem;
}
.site-header {
  height: 84px;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  background: rgba(244,242,237,.92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
}
.brand { font-size: 1.2rem; font-weight: 800; letter-spacing: .2em; justify-self: start; }
.brand span { font-size: .45em; vertical-align: top; margin-left: .12rem; }
.site-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.2vw, 2.6rem); }
.site-nav a { font-size: .78rem; letter-spacing: .05em; position: relative; white-space: nowrap; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.35rem; height: 1px; background: currentColor; transition: right .25s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.header-cta { justify-self: end; font-size: .76rem; letter-spacing: .05em; border-bottom: 1px solid; padding-bottom: .15rem; }
.header-tools { justify-self: end; display: flex; align-items: center; gap: .2rem; }
.header-tool-button { position: relative; width: 40px; height: 40px; padding: 0; display: grid; place-items: center; border: 0; border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; transition: background .2s ease, transform .2s ease; }
.header-tool-button:hover { background: rgba(17,19,21,.07); transform: translateY(-1px); }
.header-tool-button:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.header-tool-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.header-cart-count { position: absolute; top: 3px; right: 2px; min-width: 16px; height: 16px; padding: 0 4px; display: grid; place-items: center; border-radius: 50px; background: var(--ink); color: white; font-size: .58rem; font-weight: 700; line-height: 1; }
.header-cart-count[hidden] { display: none; }
.menu-toggle { display: none; background: transparent; border: 0; padding: .5rem; }
.menu-toggle > span:not(.sr-only) { display: block; width: 22px; height: 1px; margin: 5px 0; background: currentColor; }

.utility-scrim { position: fixed; inset: 0; z-index: 80; background: rgba(17,19,21,.38); backdrop-filter: blur(2px); }
.utility-scrim[hidden] { display: none; }
.utility-drawer { position: fixed; z-index: 90; top: 0; right: 0; bottom: 0; width: min(430px, 100vw); padding: 1.5rem; overflow-y: auto; background: #fbfaf7; box-shadow: -18px 0 48px rgba(17,19,21,.16); transform: translateX(105%); visibility: hidden; transition: transform .26s ease, visibility .26s ease; }
.utility-drawer.is-open { transform: translateX(0); visibility: visible; }
.utility-drawer-header { min-height: 46px; padding-bottom: 1.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); }
.utility-drawer-header h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; font-weight: 400; letter-spacing: -.025em; }
.utility-drawer-close { width: 38px; height: 38px; padding: 0; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; font-size: 1.55rem; font-weight: 300; line-height: 1; }
.utility-drawer-close:hover { border-color: var(--ink); }
.utility-drawer-close:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
body.utility-drawer-open { overflow: hidden; }

.site-search-label { display: block; margin: 1.6rem 0 .55rem; color: var(--muted); font-size: .78rem; }
.site-search-input { width: 100%; min-height: 52px; padding: .75rem 1rem; border: 1px solid #888c8e; border-radius: 6px; background: white; color: var(--ink); font-size: .95rem; }
.site-search-input:focus { border-color: var(--ink); outline: 2px solid rgba(17,19,21,.14); outline-offset: 1px; }
.site-search-results { margin-top: 1.2rem; border-top: 1px solid var(--line); }
.search-result { display: block; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.search-result:hover .search-result-title, .search-result:focus-visible .search-result-title { text-decoration: underline; text-underline-offset: .18em; }
.search-result-title { display: block; font-size: .95rem; font-weight: 700; }
.search-result-meta { display: block; margin-top: .26rem; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.search-empty { margin: 1.25rem 0 0; color: var(--muted); font-size: .9rem; }

.cart-items { min-height: 80px; }
.cart-empty { margin: 1.4rem 0; color: var(--muted); font-size: .9rem; }
.cart-item { padding: 1rem 0; display: grid; grid-template-columns: 1fr auto; gap: .75rem; border-bottom: 1px solid var(--line); }
.cart-item-title { margin: 0; font-size: .88rem; line-height: 1.42; }
.cart-item-meta { margin: .35rem 0 0; color: var(--muted); font-size: .76rem; }
.cart-item-price { margin: .25rem 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 1rem; }
.cart-item-controls { align-self: start; display: grid; justify-items: end; gap: .5rem; }
.cart-quantity-stepper { min-height: 34px; display: grid; grid-template-columns: 34px 38px 34px; align-items: stretch; overflow: hidden; border: 1px solid var(--line); background: white; }
.cart-quantity-stepper button { padding: 0; border: 0; background: transparent; color: var(--ink); cursor: pointer; font: inherit; font-size: 1rem; line-height: 1; }
.cart-quantity-stepper button:hover:not(:disabled), .cart-quantity-stepper button:focus-visible { background: var(--ink); color: white; outline: none; }
.cart-quantity-stepper button:disabled { color: #b5b7b8; cursor: not-allowed; }
.cart-quantity-stepper output { display: grid; place-items: center; border-left: 1px solid var(--line); border-right: 1px solid var(--line); font-size: .82rem; }
.cart-item-remove { align-self: start; padding: .1rem 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; font-size: .72rem; }
.cart-item-remove:hover { color: var(--ink); border-color: var(--ink); }
.cart-summary { margin-top: 1.25rem; padding-top: 1.1rem; display: flex; align-items: baseline; justify-content: space-between; border-top: 1px solid var(--ink); font-size: .9rem; }
.cart-summary strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; font-weight: 400; }
.cart-checkout-link { width: 100%; margin-top: 1rem; }
.cart-checkout-link[hidden] { display: none; }
.cart-note, .member-note { margin: 1rem 0 0; color: var(--muted); font-size: .76rem; line-height: 1.5; }

.member-intro { margin: 1.5rem 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.member-form { display: grid; gap: .55rem; }
.member-form label { font-size: .8rem; font-weight: 700; }
.member-form input { min-height: 50px; padding: .75rem .9rem; border: 1px solid #888c8e; border-radius: 6px; background: white; color: var(--ink); }
.member-form input:focus { border-color: var(--ink); outline: 2px solid rgba(17,19,21,.14); outline-offset: 1px; }
.member-form .button { width: 100%; margin-top: .4rem; cursor: pointer; }
.member-message { min-height: 1.25rem; margin: 1rem 0 0; color: var(--muted); font-size: .82rem; }

.hero { min-height: calc(100svh - 116px); position: relative; display: flex; align-items: flex-end; overflow: hidden; background: #333; color: white; }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,9,10,.78) 0%, rgba(7,9,10,.34) 48%, rgba(7,9,10,.06) 78%), linear-gradient(0deg, rgba(7,9,10,.42), transparent 48%); }
.hero-copy { position: relative; z-index: 2; width: min(760px, 70vw); padding: clamp(3rem, 8vw, 8rem) clamp(1.25rem, 7vw, 7rem); }
.eyebrow { margin: 0 0 1.4rem; font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow.dark { color: var(--muted); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 1.6rem; font-size: clamp(3.5rem, 7.3vw, 7.8rem); line-height: .91; letter-spacing: -.055em; font-weight: 500; }
.hero-lede { max-width: 520px; color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.5vw, 1.25rem); }
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.25rem; }
.button { min-height: 52px; padding: 0 1.55rem; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; font-size: .77rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-light { background: white; color: var(--ink); }
.button-dark { background: var(--ink); color: white; }
.text-link { display: inline-flex; gap: .8rem; align-items: center; font-size: .82rem; border-bottom: 1px solid; padding-bottom: .25rem; }
.text-link-light { color: white; }
.hero-note { position: absolute; z-index: 2; right: clamp(1.25rem, 4vw, 4.5rem); bottom: 3.2rem; display: flex; gap: 1rem; align-items: flex-start; font-size: .75rem; letter-spacing: .06em; }
.hero-note > span { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: .6rem; }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); background: #f8f7f3; padding: 0 clamp(1.25rem, 4vw, 4.5rem); }
.trust-strip > div { min-height: 145px; padding: 1.8rem clamp(1rem, 2.5vw, 2.5rem); border-right: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; align-content: center; column-gap: 1rem; }
.trust-strip > div:first-child { border-left: 1px solid var(--line); }
.trust-strip span { grid-row: 1 / 3; font-size: .65rem; color: var(--muted); }
.trust-strip strong { font-size: .85rem; font-weight: 600; }
.trust-strip small { color: var(--muted); margin-top: .15rem; }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 5vw, 5.5rem); }
.intro { display: grid; grid-template-columns: 1.35fr .65fr; gap: 10vw; align-items: end; }
.intro h2, .finder h2, .craft h2, .size-guide h2, .support h2, .installation h2 { margin-bottom: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.8rem, 5vw, 5.4rem); line-height: .98; letter-spacing: -.04em; font-weight: 400; }
.intro > p { max-width: 490px; margin: 0 0 .35rem; color: var(--muted); font-size: 1.05rem; }

.collection-grid { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 3vw, 3rem) clamp(5rem, 10vw, 10rem); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: minmax(360px, 1fr); gap: 1.2rem; }
.collection-card { min-height: 360px; position: relative; overflow: hidden; color: white; background: #343638; }
.collection-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.collection-card:hover img { transform: scale(1.025); }
.collection-arched img { object-position: center; }
.collection-gy img { transform: scale(1.04); object-position: center; }
.collection-gy:hover img { transform: scale(1.07); }
.collection-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,8,9,.72), transparent 62%); }
.collection-copy { position: absolute; left: clamp(1.5rem, 4vw, 4rem); right: clamp(1.5rem, 4vw, 4rem); bottom: clamp(1.8rem, 4vw, 4rem); }
.collection-copy > p { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; opacity: .72; }
.collection-copy h3 { margin-bottom: .4rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.1rem, 2.7vw, 3.25rem); line-height: 1; font-weight: 400; }
.collection-copy > span { display: block; color: rgba(255,255,255,.72); }
.collection-copy a { display: inline-flex; gap: .9rem; margin-top: 1.5rem; padding-bottom: .2rem; border-bottom: 1px solid; font-size: .78rem; }

.catalog { padding-top: 1rem; }
.catalog-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; margin-bottom: 4rem; }
.catalog-heading h2 { margin-bottom: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.8rem, 5vw, 5.2rem); line-height: .98; letter-spacing: -.04em; font-weight: 400; }
.catalog-heading > p { max-width: 520px; margin: 0; color: var(--muted); }
.product-lines { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.product-line { min-width: 0; padding: clamp(1.5rem, 3vw, 2.75rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.38); }
.product-line-top { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); font-size: .76rem; letter-spacing: .04em; }
.product-line-top strong { color: var(--ink); white-space: nowrap; }
.product-line h3 { margin: 2rem 0 .8rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 2.6vw, 2.7rem); line-height: 1.05; font-weight: 400; }
.product-line > p { min-height: 4.5rem; color: var(--muted); font-size: .9rem; }
.variant-group { margin-top: 1.6rem; }
.variant-label { display: block; margin-bottom: .7rem; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.color-options, .size-options { display: flex; flex-wrap: wrap; gap: .45rem; }
.color-options button, .size-options button { min-height: 42px; padding: .55rem .75rem; display: inline-flex; align-items: center; gap: .55rem; border: 1px solid var(--line); background: transparent; color: var(--ink); cursor: pointer; font-size: .78rem; transition: border-color .2s, background .2s, color .2s; }
.color-options button:hover, .size-options button:hover, .color-options button:focus-visible, .size-options button:focus-visible { border-color: var(--ink); }
.color-options button.is-selected, .size-options button.is-selected { background: var(--ink); border-color: var(--ink); color: white; }
.swatch { width: 14px; height: 14px; border: 1px solid rgba(17,19,21,.25); border-radius: 50%; background: #151719; box-shadow: 0 0 0 1px rgba(255,255,255,.25) inset; }
.swatch-silver { background: linear-gradient(135deg, #f1f2f2, #929697); }
.swatch-brushed-black { background: linear-gradient(135deg, #242628, #060708); }
.swatch-frameless { background: linear-gradient(135deg, #f9fbfc 0 46%, #9eb8c3 47% 53%, #f9fbfc 54%); }
.variant-summary { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: end; }
.variant-summary small { display: block; margin-bottom: .25rem; color: var(--muted); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.variant-summary strong { display: block; overflow-wrap: anywhere; font-size: .82rem; }
.variant-summary > div:last-child { text-align: right; }
.variant-summary > div:last-child strong { font-family: Georgia, serif; font-size: 1.35rem; font-weight: 400; white-space: nowrap; }
.product-preview-link { margin-top: 1.35rem; padding-bottom: .2rem; display: inline-flex; align-items: center; gap: .75rem; border-bottom: 1px solid var(--ink); font-size: .76rem; font-weight: 700; letter-spacing: .04em; }
.product-preview-link span { transition: transform .2s ease; }
.product-preview-link:hover span, .product-preview-link:focus-visible span { transform: translateX(.25rem); }

.product-main { max-width: var(--max); margin: 0 auto; padding: clamp(2rem, 5vw, 5rem) clamp(1.25rem, 4vw, 4.5rem) clamp(6rem, 10vw, 10rem); }
.breadcrumb { margin-bottom: clamp(2rem, 4vw, 4rem); display: flex; align-items: center; gap: .65rem; color: var(--muted); font-size: .75rem; }
.breadcrumb a { border-bottom: 1px solid transparent; }
.breadcrumb a:hover, .breadcrumb a:focus-visible { border-color: currentColor; }
.product-detail { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.product-gallery { min-width: 0; position: sticky; top: 118px; }
.product-gallery-main { position: relative; margin: 0; aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; background: white; border: 1px solid var(--line); }
.product-gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.product-gallery-arrow { position: absolute; z-index: 2; top: 50%; width: 48px; height: 70px; padding: 0; display: grid; place-items: center; border: 1px solid rgba(17,19,21,.18); border-radius: 8px; background: rgba(255,255,255,.88); color: var(--ink); cursor: pointer; box-shadow: 0 8px 24px rgba(17,19,21,.12); transform: translateY(-50%); transition: background .2s, border-color .2s, transform .2s; backdrop-filter: blur(6px); }
.product-gallery-arrow:hover { border-color: rgba(17,19,21,.42); background: white; transform: translateY(-50%) scale(1.04); }
.product-gallery-arrow:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.product-gallery-arrow[hidden] { display: none; }
.product-gallery-previous { left: 14px; }
.product-gallery-next { right: 14px; }
.product-gallery-arrow span { width: .65rem; height: .65rem; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; }
.product-gallery-previous span { transform: rotate(135deg); margin-left: .25rem; }
.product-gallery-next span { transform: rotate(-45deg); margin-right: .25rem; }
.product-thumbnails { margin-top: .7rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(64px, 1fr)); gap: .55rem; }
.product-thumbnail { aspect-ratio: 1; padding: 0; overflow: hidden; border: 1px solid transparent; background: white; cursor: pointer; }
.product-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnail:hover, .product-thumbnail:focus-visible { border-color: var(--muted); outline: none; }
.product-thumbnail.is-active { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.product-info { min-width: 0; }
.product-info .eyebrow { margin-bottom: 1rem; }
.product-info h1 { margin: 0; max-width: 760px; font-size: clamp(1.45rem, 2.15vw, 2rem); font-weight: 700; line-height: 1.18; letter-spacing: -.022em; }
.product-brand-line { margin: .8rem 0 0; color: var(--muted); font-size: .83rem; }
.product-brand-line strong { color: var(--ink); text-decoration: underline; text-underline-offset: .18em; }
.product-rating-link { width: fit-content; margin-top: .75rem; display: inline-flex; align-items: center; gap: .42rem; color: var(--ink); font-size: .86rem; line-height: 1.2; }
.product-rating-link:hover, .product-rating-link:focus-visible { text-decoration: underline; text-underline-offset: .18em; }
.product-rating-link:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
.product-rating-stars { color: #f5b400; font-size: 1rem; letter-spacing: .05em; line-height: 1; }
.product-rating-link strong { font-weight: 700; }
.product-rating-count { color: var(--muted); }
.product-intro { max-width: 640px; margin: 1.5rem 0 0; color: var(--muted); }
.product-purchase { margin-top: 1.7rem; border-top: 1px solid var(--line); }
.product-price-row { padding: 1.2rem 0 1.3rem; display: flex; align-items: end; justify-content: space-between; gap: 2rem; border-bottom: 1px solid var(--line); }
.product-price-row small, .product-choice-label { display: block; margin-bottom: .35rem; color: var(--muted); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.product-price { font-family: Georgia, serif; font-size: 2rem; font-weight: 400; }
.product-choice, .product-size-selector, .product-color-selector { padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.product-color-choice { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.product-color-choice .product-choice-label { margin: 0; }
.product-color-choice strong { font-size: .95rem; }
.product-size-selector .product-choice-label, .product-color-selector .product-choice-label { margin-bottom: .7rem; }
.product-size-dropdown, .product-color-dropdown { position: relative; }
.product-size-toggle, .product-color-toggle { width: 100%; min-height: 52px; padding: .8rem 1.15rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border: 1px solid #777b7e; border-radius: 8px; background: white; color: var(--ink); cursor: pointer; font: inherit; font-size: 1rem; text-align: left; transition: border-color .2s, box-shadow .2s; }
.product-size-toggle:hover, .product-color-toggle:hover { border-color: var(--ink); }
.product-size-toggle:focus-visible, .product-color-toggle:focus-visible, .product-size-dropdown.is-open .product-size-toggle, .product-color-dropdown.is-open .product-color-toggle { border-color: #1769e0; outline: none; box-shadow: 0 0 0 2px rgba(23,105,224,.24); }
.product-size-chevron, .product-color-chevron { width: .55rem; height: .55rem; flex: 0 0 auto; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translate(-2px, -2px); transition: transform .2s ease; }
.product-size-dropdown.is-open .product-size-chevron, .product-color-dropdown.is-open .product-color-chevron { transform: rotate(225deg) translate(-2px, -2px); }
.product-size-options, .product-color-options { position: absolute; z-index: 30; top: calc(100% + .35rem); left: 0; right: 0; max-height: 260px; padding: .25rem; overflow-y: auto; border: 1px solid #a7aaac; border-radius: 8px; background: white; box-shadow: 0 16px 34px rgba(17,19,21,.16); }
.product-size-options[hidden], .product-color-options[hidden] { display: none; }
.product-size-option, .product-color-option { width: 100%; min-height: 50px; padding: .8rem .9rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border: 0; border-radius: 5px; background: transparent; color: var(--ink); cursor: pointer; font: inherit; font-size: .95rem; text-align: left; }
.product-size-option:hover, .product-size-option:focus-visible, .product-color-option:hover, .product-color-option:focus-visible { background: #f2f3f3; outline: none; }
.product-size-option.is-selected, .product-color-option.is-selected { font-weight: 700; }
.product-size-check { opacity: 0; font-size: 1.1rem; }
.product-size-option.is-selected .product-size-check, .product-color-option.is-selected .product-size-check { opacity: 1; }
.product-delivery { margin-top: 1rem; padding: 1rem 1.05rem; border: 1px solid var(--line); background: rgba(255,255,255,.45); }
.product-delivery strong { display: block; font-size: .92rem; }
.product-delivery small { display: block; margin-top: .35rem; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.product-quantity { padding-top: 1rem; }
.product-quantity .product-choice-label { margin-bottom: .65rem; }
.product-quantity-stepper { width: fit-content; min-height: 48px; display: grid; grid-template-columns: 48px 58px 48px; align-items: stretch; overflow: hidden; border: 1px solid #777b7e; border-radius: 7px; background: white; }
.product-quantity-stepper button { padding: 0; border: 0; background: transparent; color: var(--ink); cursor: pointer; font-size: 1.25rem; line-height: 1; transition: background .2s ease, color .2s ease; }
.product-quantity-stepper button:hover:not(:disabled) { background: var(--ink); color: white; }
.product-quantity-stepper button:focus-visible { position: relative; z-index: 1; outline: 2px solid #1769e0; outline-offset: -2px; }
.product-quantity-stepper button:disabled { color: #a9acad; cursor: not-allowed; }
.product-quantity-stepper output { display: grid; place-items: center; border-left: 1px solid var(--line); border-right: 1px solid var(--line); font-size: .95rem; }
.product-add-to-cart { width: 100%; min-height: 60px; margin-top: 1rem; cursor: pointer; font-family: inherit; }
.product-add-to-cart:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.product-cart-status { min-height: 1.15rem; margin: .65rem 0 0; color: var(--muted); font-size: .78rem; }
.product-cart-status:empty { display: none; }
.product-features-inline { margin-top: 2.75rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.product-features-inline h2 { margin: 0 0 .85rem; font-size: 1.05rem; line-height: 1.3; }
.product-bullets { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.product-bullets li { padding: .9rem 0; border-bottom: 1px solid var(--line); }
.product-bullets p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.58; }
.product-bullets p strong { color: var(--ink); font-weight: 700; }
.product-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
.product-reviews { margin-top: clamp(4.5rem, 8vw, 8rem); padding: clamp(1.5rem, 3.2vw, 2rem); border: 1px solid var(--line); background: rgba(255,255,255,.42); }
.review-overview { display: grid; grid-template-columns: minmax(170px, .52fr) minmax(260px, .9fr) auto; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.review-overview-score { padding-right: clamp(1.4rem, 3vw, 2.5rem); border-right: 1px solid var(--line); }
.review-overview-score h2 { margin: 0 0 .75rem; font-size: 1.25rem; line-height: 1.25; letter-spacing: 0; }
.review-overview-stars { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; }
.review-overview-stars strong { color: var(--ink); font-size: .78rem; font-weight: 700; }
.review-overview-score p { margin: .25rem 0 0; color: var(--ink-soft); font-size: .82rem; line-height: 1.4; }
.review-stars { display: inline-flex; color: #f5b400; font-size: .92rem; letter-spacing: .1em; }
.review-breakdown { display: grid; gap: .34rem; max-width: 320px; }
.review-breakdown-row { display: grid; grid-template-columns: 82px minmax(92px, 1fr) 38px 36px; gap: .35rem; align-items: center; color: var(--ink-soft); font-size: .72rem; line-height: 1; }
.review-breakdown-stars { color: #f5b400; letter-spacing: .08em; white-space: nowrap; }
.review-breakdown-track { height: 12px; overflow: hidden; border: 1px solid var(--line); background: rgba(255,255,255,.72); }
.review-breakdown-fill { display: block; height: 100%; background: #f5b400; }
.review-breakdown-percent, .review-breakdown-count { white-space: nowrap; }
.review-write-button { align-self: start; min-height: 36px; padding: .45rem .8rem; border: 1px solid var(--ink); background: transparent; color: var(--ink); cursor: pointer; font: inherit; font-size: .82rem; }
.review-write-button:hover, .review-write-button:focus-visible { background: var(--ink); color: white; }
.review-toolbar { margin-top: 2rem; padding: 1rem 0 1.2rem; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.review-sort-button { min-height: 32px; padding: .4rem .75rem; border: 1px solid var(--line); background: rgba(255,255,255,.62); color: var(--ink); cursor: pointer; font: inherit; font-size: .78rem; }
.review-list { display: block; }
.review-row { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 1rem; padding: 1.05rem 0 1.25rem; border-bottom: 1px solid var(--line); }
.review-avatar { width: 52px; height: 52px; border-radius: 999px; display: grid; place-items: center; background: rgba(17,19,21,.06); color: var(--ink-soft); font-size: .82rem; }
.review-content { min-width: 0; }
.review-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; color: var(--ink-soft); font-size: .82rem; }
.review-meta strong { color: var(--ink); font-weight: 700; }
.review-row h3 { margin: .7rem 0 .55rem; font-size: .94rem; line-height: 1.35; }
.review-row p { max-width: 1180px; margin: 0; color: var(--ink-soft); font-size: .88rem; line-height: 1.68; }
.product-specs { margin-top: clamp(4.5rem, 8vw, 8rem); padding-top: clamp(3rem, 6vw, 6rem); border-top: 1px solid var(--line); display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 9vw, 9rem); }
.product-specs h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.4rem, 4vw, 4.2rem); font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.spec-grid { border-top: 1px solid var(--line); }
.spec-row { display: grid; grid-template-columns: .7fr 1.3fr; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); font-size: .86rem; }
.spec-row span:first-child { color: var(--muted); }

.checkout-main { max-width: var(--max); margin: 0 auto; padding: clamp(2rem, 5vw, 5rem) clamp(1.25rem, 4vw, 4.5rem) clamp(6rem, 10vw, 10rem); }
.checkout-heading { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.checkout-heading h1 { margin: .8rem 0 1rem; font-size: clamp(2.4rem, 5vw, 5.4rem); line-height: .96; letter-spacing: -.05em; }
.checkout-heading p { max-width: 620px; margin: 0; color: var(--muted); font-size: 1rem; }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .72fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.checkout-form { display: grid; gap: 1.4rem; }
.checkout-panel { padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid var(--line); background: rgba(255,255,255,.45); }
.checkout-panel h2 { margin: 0 0 1.2rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.7rem; font-weight: 400; letter-spacing: -.02em; }
.checkout-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; }
.checkout-field { display: grid; gap: .38rem; }
.checkout-field-full { grid-column: 1 / -1; }
.checkout-field label { color: var(--ink-soft); font-size: .78rem; font-weight: 700; }
.checkout-field input, .checkout-field select, .checkout-field textarea { width: 100%; min-height: 50px; padding: .75rem .9rem; border: 1px solid #888c8e; border-radius: 6px; background: white; color: var(--ink); font: inherit; font-size: .95rem; }
.checkout-field textarea { min-height: 104px; resize: vertical; }
.checkout-field input:focus, .checkout-field select:focus, .checkout-field textarea:focus { border-color: var(--ink); outline: 2px solid rgba(17,19,21,.14); outline-offset: 1px; }
.checkout-delivery-option, .checkout-payment-option { padding: 1rem; border: 1px solid var(--line); background: rgba(255,255,255,.65); }
.checkout-delivery-option strong, .checkout-payment-option strong { display: block; font-size: .95rem; }
.checkout-delivery-option span, .checkout-payment-option span { display: block; margin-top: .3rem; color: var(--muted); font-size: .82rem; line-height: 1.45; }
.checkout-payment-option { display: grid; grid-template-columns: auto 1fr; gap: .75rem; align-items: start; }
.checkout-payment-option input { margin-top: .2rem; accent-color: var(--ink); }
.checkout-submit { width: 100%; min-height: 58px; cursor: pointer; }
.checkout-submit:disabled { opacity: .45; cursor: not-allowed; }
.checkout-secure-note { margin: .85rem 0 0; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.checkout-confirmation { padding: 1rem 1.1rem; border: 1px solid #7d9b78; background: #edf5ea; color: #20341f; }
.checkout-confirmation[hidden] { display: none; }
.checkout-confirmation strong, .checkout-confirmation span { display: block; }
.checkout-confirmation span { margin-top: .35rem; font-size: .86rem; line-height: 1.5; }
.checkout-sidebar { position: sticky; top: 116px; }
.checkout-summary-card { padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid var(--line); background: #fbfaf7; }
.checkout-summary-card h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.75rem; font-weight: 400; letter-spacing: -.02em; }
.checkout-count { margin: .2rem 0 1.2rem; color: var(--muted); font-size: .8rem; }
.checkout-items { border-top: 1px solid var(--line); }
.checkout-item { padding: 1rem 0; display: grid; grid-template-columns: 1fr auto; gap: .9rem; border-bottom: 1px solid var(--line); }
.checkout-item-title { margin: 0; font-size: .88rem; line-height: 1.42; }
.checkout-item-meta { margin: .35rem 0 0; color: var(--muted); font-size: .76rem; }
.checkout-item strong { font-family: Georgia, "Times New Roman", serif; font-size: 1rem; font-weight: 400; white-space: nowrap; }
.checkout-totals { margin-top: 1.2rem; }
.checkout-total-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-top: .65rem; color: var(--muted); font-size: .88rem; }
.checkout-total-row strong { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 1.1rem; font-weight: 400; }
.checkout-total-final { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--ink); color: var(--ink); font-size: 1rem; }
.checkout-total-final strong { font-size: 1.65rem; }
.checkout-summary-note { margin: 1rem 0 0; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.checkout-empty { padding: 2rem; border: 1px solid var(--line); background: rgba(255,255,255,.5); }
.checkout-empty h2 { margin: 0 0 .6rem; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.checkout-empty p { color: var(--muted); }
.checkout-empty[hidden], .checkout-content[hidden] { display: none; }

.finder { max-width: none; background: var(--ink); color: white; display: grid; grid-template-columns: minmax(260px, .8fr) minmax(520px, 1.2fr); gap: clamp(3rem, 9vw, 10rem); padding-left: max(clamp(1.25rem, 7vw, 7rem), calc((100vw - var(--max)) / 2 + 5rem)); padding-right: max(clamp(1.25rem, 7vw, 7rem), calc((100vw - var(--max)) / 2 + 5rem)); }
.finder-copy > p:not(.eyebrow) { max-width: 500px; color: rgba(255,255,255,.66); }
.finder-copy h2 { margin-bottom: 2rem; }
.finder-footnote { margin-top: 3rem; font-size: .75rem; border-left: 1px solid rgba(255,255,255,.34); padding-left: 1rem; }
.finder-panel { align-self: center; }
.finder-panel fieldset { border: 0; padding: 0; margin: 0 0 2.2rem; }
.finder-panel legend { width: 100%; margin-bottom: 1rem; font-size: .8rem; letter-spacing: .04em; }
.finder-panel legend span { color: rgba(255,255,255,.4); margin-right: .8rem; }
.choice-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); }
.choice-grid.two { grid-template-columns: repeat(2, 1fr); }
.choice-grid.three { grid-template-columns: repeat(3, 1fr); }
.choice-grid button { min-height: 58px; background: var(--ink); color: white; border: 0; cursor: pointer; transition: background .2s, color .2s; font-size: .82rem; }
.choice-grid button:hover, .choice-grid button:focus-visible { background: #2b2e31; }
.choice-grid button.is-selected { background: white; color: var(--ink); }
.finder-result { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.18); display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; }
.finder-result small { display: block; color: rgba(255,255,255,.54); font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; }
.finder-result strong { display: block; margin-top: .3rem; font-family: Georgia, serif; font-size: 2rem; font-weight: 400; }
.finder-result #result-sku { display: block; margin-top: .4rem; color: rgba(255,255,255,.55); font-size: .75rem; letter-spacing: .06em; }

.craft { display: grid; grid-template-columns: 1fr 1fr; max-width: var(--max); margin: 0 auto; }
.craft-image { min-height: 860px; }
.craft-image img { height: 100%; object-fit: cover; }
.craft-content { padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 7rem); background: #ece9e2; display: flex; flex-direction: column; justify-content: center; }
.craft h2 { margin-bottom: 3rem; }
.feature-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-list li { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; padding: 1.45rem 0; border-bottom: 1px solid var(--line); }
.feature-list li > span { color: var(--muted); font-size: .68rem; }
.feature-list h3 { margin-bottom: .35rem; font-size: .92rem; }
.feature-list p { margin: 0; color: var(--muted); font-size: .88rem; }

.size-guide { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.size-guide h2 { font-size: clamp(2.6rem, 4vw, 4.2rem); }
.size-table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
th { padding: 0 1rem 1rem; text-align: left; color: var(--muted); font-size: .67rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 500; }
td { padding: 1.4rem 1rem; border-top: 1px solid var(--line); font-size: .88rem; }
tr.featured td { background: var(--ink); color: white; border-color: var(--ink); }

.installation { max-width: var(--max); margin: 0 auto; background: #253239; color: white; padding: clamp(4rem, 8vw, 8rem); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(4rem, 10vw, 10rem); }
.installation-copy > p:not(.eyebrow) { max-width: 500px; margin: 2rem 0; color: rgba(255,255,255,.65); }
.installation-steps { display: grid; align-content: center; }
.installation-steps > div { display: grid; grid-template-columns: 50px 100px 1fr; gap: 1rem; align-items: baseline; padding: 1.7rem 0; border-top: 1px solid rgba(255,255,255,.18); }
.installation-steps > div:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.installation-steps span { font-size: .65rem; color: rgba(255,255,255,.45); }
.installation-steps strong { font-size: .9rem; }
.installation-steps p { margin: 0; color: rgba(255,255,255,.58); font-size: .85rem; }

.support { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 9vw, 9rem); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; padding: 1.6rem 0; display: flex; justify-content: space-between; gap: 2rem; font-size: .95rem; }
summary::-webkit-details-marker { display: none; }
summary span { transition: transform .2s; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 650px; color: var(--muted); padding: 0 3rem 1.8rem 0; font-size: .9rem; }

.closing-cta { min-height: 70svh; padding: clamp(5rem, 10vw, 10rem) 1.25rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--ink); color: white; }
.closing-cta > p { font-size: .65rem; letter-spacing: .24em; }
.closing-cta h2 { margin: 1.3rem 0 2.5rem; font-size: clamp(3.6rem, 8vw, 8.5rem); line-height: .86; letter-spacing: -.06em; font-weight: 500; }
.closing-cta h2 em { font-family: Georgia, serif; font-weight: 400; }

footer { background: #090a0b; color: white; padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 5vw, 5rem) 2rem; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; }
.brand-light { color: white; }
.footer-brand p { max-width: 430px; margin-top: 1.5rem; color: rgba(255,255,255,.52); font-size: .85rem; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; font-size: .8rem; }
.footer-column strong { margin-bottom: .5rem; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.footer-column a { color: rgba(255,255,255,.74); }
.footer-column a:hover { color: white; }
.footer-bottom { grid-column: 1 / -1; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; color: rgba(255,255,255,.42); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: .35rem; height: 72px; }
  .header-cta { display: none; }
  .header-tools { grid-column: 2; grid-row: 1; }
  .menu-toggle { display: block; grid-column: 3; grid-row: 1; justify-self: end; }
  .site-nav { position: absolute; left: 0; right: 0; top: 72px; padding: 1.5rem 1.25rem 2rem; display: none; flex-direction: column; align-items: flex-start; background: var(--paper); border-bottom: 1px solid var(--line); }
  .site-nav.is-open { display: flex; }
  .hero { min-height: calc(100svh - 104px); }
  .hero-copy { width: 88vw; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip > div:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .trust-strip > div:nth-child(4) { border-top: 1px solid var(--line); }
  .collection-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: minmax(330px, auto); }
  .collection-card { min-height: 340px; }
  .catalog-heading { grid-template-columns: 1fr; gap: 2rem; }
  .product-lines { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .review-overview { grid-template-columns: 1fr; }
  .review-overview-score { padding-right: 0; padding-bottom: 1.1rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .review-write-button { justify-self: start; }
  .product-specs { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-sidebar { position: static; }
  .finder { grid-template-columns: 1fr; }
  .craft { grid-template-columns: 1fr; }
  .craft-image { min-height: 70vw; max-height: 760px; }
  .size-guide, .support { grid-template-columns: 1fr; }
  .installation { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .announcement { min-height: 29px; font-size: .58rem; }
  .site-header { height: 66px; padding-inline: .75rem; }
  .brand { font-size: 1rem; letter-spacing: .17em; }
  .header-tool-button { width: 32px; height: 34px; }
  .header-tool-button svg { width: 18px; height: 18px; }
  .header-cart-count { top: 0; right: 0; }
  .utility-drawer { width: min(400px, 100vw); padding: 1.25rem; }
  .site-nav { top: 66px; }
  .hero { min-height: 760px; align-items: flex-end; }
  .hero-media { object-position: 58% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(7,9,10,.88) 0%, rgba(7,9,10,.42) 60%, rgba(7,9,10,.1)); }
  .hero-copy { width: 100%; padding: 3rem 1.25rem 5.4rem; }
  h1 { font-size: clamp(3.5rem, 16vw, 5.1rem); }
  .hero-lede { max-width: 88%; font-size: .95rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.25rem; }
  .hero-note { display: none; }
  .trust-strip { grid-template-columns: 1fr; padding: 0 1.25rem; }
  .trust-strip > div, .trust-strip > div:first-child, .trust-strip > div:nth-child(3) { min-height: 105px; border-left: 0; border-right: 0; border-top: 1px solid var(--line); }
  .trust-strip > div:first-child { border-top: 0; }
  .intro { grid-template-columns: 1fr; gap: 2rem; }
  .intro h2, .finder h2, .craft h2, .size-guide h2, .support h2, .installation h2 { font-size: clamp(2.7rem, 13vw, 4.1rem); }
  .collection-grid { grid-template-columns: 1fr; padding-left: 0; padding-right: 0; gap: 1px; }
  .collection-grid { grid-auto-rows: auto; }
  .collection-card { min-height: 130vw; }
  .collection-copy { left: 1.4rem; right: 1.4rem; bottom: 2rem; }
  .catalog { padding-top: 0; }
  .catalog-heading { margin-bottom: 2.5rem; }
  .product-line > p { min-height: 0; }
  .variant-summary { grid-template-columns: 1fr; }
  .variant-summary > div:last-child { text-align: left; }
  body[data-product-data] { background: #fff; }
  body[data-product-data] .product-main { padding: 0 0 4.5rem; }
  body[data-product-data] .breadcrumb { display: none; }
  body[data-product-data] .product-detail { display: flex; flex-direction: column; gap: 0; }
  body[data-product-data] .product-gallery { width: 100%; }
  body[data-product-data] .product-gallery-main { aspect-ratio: 1; border: 0; border-bottom: 1px solid #e6e4e1; }
  body[data-product-data] .product-gallery-arrow { width: 38px; height: 38px; border-radius: 999px; box-shadow: 0 3px 12px rgba(17,19,21,.14); }
  body[data-product-data] .product-gallery-previous { left: 10px; }
  body[data-product-data] .product-gallery-next { right: 10px; }
  body[data-product-data] .product-thumbnails { margin: 0; padding: .65rem 1rem .75rem; display: flex; gap: .5rem; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; }
  body[data-product-data] .product-thumbnails::-webkit-scrollbar { display: none; }
  body[data-product-data] .product-thumbnail { flex: 0 0 64px; border-radius: 4px; scroll-snap-align: start; }
  body[data-product-data] .product-info { padding: .65rem 1rem 0; }
  body[data-product-data] .product-info .eyebrow { display: none; }
  body[data-product-data] .product-info h1 { font-size: 1.25rem; font-weight: 700; line-height: 1.2; letter-spacing: 0; }
  body[data-product-data] .product-brand-line { margin-top: .55rem; font-size: .875rem; }
  body[data-product-data] .product-rating-link { margin-top: .55rem; gap: .35rem; font-size: .875rem; }
  body[data-product-data] .product-rating-stars { font-size: .95rem; }
  body[data-product-data] .product-purchase { margin-top: 1rem; padding-top: 0; display: grid; grid-template-columns: max-content minmax(0, 1fr); column-gap: .75rem; border-top: 0; }
  body[data-product-data] .product-price-row { grid-column: 1 / -1; padding: .25rem 0 .75rem; align-items: flex-start; flex-direction: column; gap: .35rem; border-bottom: 0; }
  body[data-product-data] .product-price-row small { display: none; }
  body[data-product-data] .product-price { font-family: inherit; font-size: 1.375rem; font-weight: 500; line-height: 1; }
  body[data-product-data] .product-choice,
  body[data-product-data] .product-size-selector,
  body[data-product-data] .product-color-selector { grid-column: 1 / -1; padding: .55rem 0; border-bottom: 0; }
  body[data-product-data] .product-price-row small,
  body[data-product-data] .product-choice-label { margin-bottom: .45rem; color: var(--ink); font-size: .875rem; font-weight: 600; letter-spacing: 0; text-transform: none; }
  body[data-product-data] .product-color-choice { display: block; }
  body[data-product-data] .product-color-choice .product-choice-label { margin-bottom: .45rem; }
  body[data-product-data] .product-color-choice strong { width: fit-content; min-width: 84px; min-height: 42px; padding: .55rem .9rem; display: flex; align-items: center; justify-content: center; border: 2px solid var(--ink); border-radius: 4px; font-size: .875rem; }
  body[data-product-data] .product-size-selector .product-choice-label,
  body[data-product-data] .product-color-selector .product-choice-label { margin-bottom: .45rem; }
  body[data-product-data] .product-size-toggle,
  body[data-product-data] .product-color-toggle { min-height: 48px; padding: .7rem .9rem; border-color: #55585a; border-radius: 4px; font-size: .9375rem; }
  body[data-product-data] .product-size-option,
  body[data-product-data] .product-color-option { min-height: 48px; font-size: .9375rem; }
  body[data-product-data] .product-delivery { grid-column: 1 / -1; margin: .65rem 0 .55rem; padding: .85rem .9rem; border-radius: 4px; background: #fff; }
  body[data-product-data] .product-delivery .product-choice-label { margin-bottom: .25rem; color: #24713b; font-size: .75rem; }
  body[data-product-data] .product-delivery strong { font-size: .875rem; }
  body[data-product-data] .product-delivery small { font-size: .75rem; }
  body[data-product-data] .product-quantity { grid-column: 1; padding-top: .65rem; }
  body[data-product-data] .product-quantity .product-choice-label { margin-bottom: .4rem; }
  body[data-product-data] .product-quantity-stepper { min-height: 48px; grid-template-columns: 42px 46px 42px; border-radius: 999px; }
  body[data-product-data] .product-add-to-cart { grid-column: 2; align-self: end; min-height: 48px; margin: 0; border-radius: 999px; font-size: .9375rem; letter-spacing: 0; }
  body[data-product-data] .product-cart-status { grid-column: 1 / -1; min-height: 0; }
  body[data-product-data] .product-features-inline { margin: 1.55rem -1rem 0; padding: 1.2rem 1rem 0; border-top: 8px solid #f1f1f1; }
  body[data-product-data] .product-features-inline h2 { margin-bottom: .8rem; font-size: 1.125rem; }
  body[data-product-data] .product-bullets p { color: #36383a; font-size: .9375rem; line-height: 1.55; }
  body[data-product-data] .product-bullets li { padding: .85rem 0; }
  body[data-product-data] .product-actions { margin: 1.25rem 0 1.5rem; gap: .7rem 1.1rem; font-size: .875rem; }
  body[data-product-data] .product-reviews { margin: 0; padding: 1.25rem 1rem 1.5rem; border: 0; border-top: 8px solid #f1f1f1; background: #fff; }
  body[data-product-data] .review-overview { gap: 1rem; }
  body[data-product-data] .review-overview-score h2 { font-size: 1.125rem; }
  body[data-product-data] .review-toolbar { margin-top: 1.25rem; }
  body[data-product-data] .review-row { grid-template-columns: 42px minmax(0, 1fr); gap: .75rem; }
  body[data-product-data] .review-avatar { width: 42px; height: 42px; }
  body[data-product-data] .review-meta { font-size: .75rem; }
  body[data-product-data] .review-row h3 { font-size: .9375rem; }
  body[data-product-data] .review-row p { font-size: .875rem; line-height: 1.58; }
  body[data-product-data] .product-specs { margin: 0; padding: 1.25rem 1rem 0; border-top: 8px solid #f1f1f1; gap: 1rem; }
  body[data-product-data] .product-specs h2 { font-family: inherit; font-size: 1.25rem; font-weight: 700; line-height: 1.25; letter-spacing: 0; }
  body[data-product-data] .spec-row { padding: .9rem 0; font-size: .875rem; }
  .spec-row { grid-template-columns: 1fr; gap: .25rem; }
  .checkout-heading h1 { font-size: clamp(2.6rem, 13vw, 4.2rem); }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-panel, .checkout-summary-card, .checkout-empty { padding: 1.2rem; }
  .finder { padding-top: 5rem; padding-bottom: 5rem; }
  .choice-grid { grid-template-columns: repeat(3, 1fr); }
  .choice-grid.three { grid-template-columns: 1fr; }
  .choice-grid button { min-height: 54px; }
  .finder-result { align-items: flex-start; flex-direction: column; }
  .craft-image { min-height: 110vw; }
  .craft-content { padding: 4.5rem 1.25rem; }
  .installation { padding: 4rem 1.25rem; }
  .installation-steps > div { grid-template-columns: 34px 70px 1fr; }
  footer { grid-template-columns: 1fr 1fr; gap: 3rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
}

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