:root {
  --ink: #242729;
  --muted: #646a6d;
  --graphite: #25282a;
  --graphite-dark: #191c1e;
  --accent: #b64031;
  --accent-dark: #8e3025;
  --accent-soft: #f4e8e4;
  --paper: #f3f1ed;
  --paper-dark: #e9e6e0;
  --white: #fff;
  --line: #d9d7d2;
  --line-dark: #b9b6af;
  --success: #386b51;
  --danger: #96362c;
  --shadow: 0 14px 35px rgba(26, 28, 29, .09);
  --radius: 5px;
  --shell: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 16px; line-height: 1.56; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.35rem, 4.6vw, 4.25rem); }
h2 { font-size: clamp(1.7rem, 2.7vw, 2.55rem); }
h3 { font-size: 1.08rem; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.content-narrow { max-width: 850px; }
.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; z-index: 9999; top: 12px; left: 16px; padding: 10px 16px; color: #fff; background: var(--graphite); border-radius: 2px; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.eyebrow { display: inline-flex; margin-bottom: 12px; align-items: center; gap: 9px; color: var(--accent); font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.eyebrow::before { width: 22px; height: 2px; content: ""; background: currentColor; }
.button { display: inline-flex; min-height: 48px; padding: 11px 20px; align-items: center; justify-content: center; gap: 8px; color: #fff; background: var(--accent); border: 1px solid var(--accent); border-radius: 3px; font-size: .9rem; font-weight: 700; transition: color .16s, background .16s, border-color .16s; }
.button:hover, .button:focus-visible { background: var(--accent-dark); border-color: var(--accent-dark); }
:where(a, button, input, select, summary):focus-visible { outline: 3px solid rgba(182, 64, 49, .38); outline-offset: 3px; }
.button-ghost { color: var(--graphite); background: transparent; border-color: var(--graphite); }
.button-ghost:hover { color: #fff; background: var(--graphite); border-color: var(--graphite); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-dark); font-size: .9rem; font-weight: 700; }
.text-link span { transition: transform .16s; }
.text-link:hover span { transform: translateX(3px); }

.site-header { position: relative; z-index: 200; background: #fff; }
.header-main { position: relative; display: grid; min-height: 102px; grid-template-columns: 410px minmax(320px, 620px) 44px; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; min-width: 0; align-items: center; }
.brand img { width: 400px; height: auto; }
.site-search { position: relative; display: flex; width: 100%; min-width: 0; }
.site-search input { width: 100%; min-width: 0; height: 48px; padding: 0 58px 0 16px; color: var(--ink); background: #f5f5f3; border: 1px solid #d5d5d1; border-radius: 3px; outline: none; }
.site-search input::placeholder { color: #858a8c; }
.site-search input:focus { background: #fff; border-color: #8c8f90; box-shadow: 0 0 0 3px rgba(36,39,41,.08); }
.site-search button { position: absolute; top: 4px; right: 4px; display: grid; width: 40px; height: 40px; padding: 0; place-items: center; color: #fff; background: var(--accent); border: 0; border-radius: 2px; }
.site-search button:hover { background: var(--accent-dark); }
.site-search button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.header-search-toggle { display: none; width: 42px; height: 42px; padding: 0; place-items: center; color: var(--accent); background: #fff; border: 1px solid var(--line); border-radius: 2px; }
.header-search-toggle:hover, .header-search-toggle[aria-expanded="true"] { color: #fff; background: var(--accent); border-color: var(--accent); }
.header-search-toggle svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.search-suggestions { position: absolute; z-index: 100; top: calc(100% + 6px); left: 0; width: 100%; max-height: min(70vh, 650px); padding: 6px; overflow-y: auto; background: #fff; border: 1px solid var(--line-dark); border-radius: 3px; box-shadow: var(--shadow); }
.suggestion-group + .suggestion-group { margin-top: 4px; padding-top: 5px; border-top: 1px solid var(--line); }
.suggestion-heading { display: block; padding: 5px 8px 4px; color: var(--accent-dark); font-size: .64rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.suggestion-correction { padding: 7px 9px; color: #4f5557; background: var(--accent-soft); border-radius: 2px; font-size: .74rem; font-weight: 700; }
.suggestion { display: grid; min-height: 62px; padding: 7px; grid-template-columns: 58px minmax(0,1fr) auto; align-items: center; gap: 11px; border-radius: 2px; }
.suggestion:hover, .suggestion:focus, .suggestion.is-active { background: var(--paper); }
.suggestion img, .suggestion-placeholder { width: 58px; height: 48px; object-fit: contain; background: #fff; border: 1px solid #ecebe8; border-radius: 1px; }
.suggestion img { padding: 3px; }
.suggestion-category { background: #faf9f7; }
.suggestion-category img { border-color: #e1ddd7; }
.suggestion-category-placeholder { display: grid; place-items: center; color: #fff; background: var(--accent); font-size: 1rem; font-weight: 800; }
.suggestion strong { display: block; overflow: hidden; font-size: .82rem; white-space: nowrap; text-overflow: ellipsis; }
.suggestion small { display: block; overflow: hidden; color: var(--muted); font-size: .7rem; white-space: nowrap; text-overflow: ellipsis; }
.suggestion-price { font-size: .82rem; font-weight: 700; white-space: nowrap; }
.suggestion-open { padding-right: 7px; color: var(--accent); font-size: 1.1rem; font-weight: 800; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; background: #fff; border: 1px solid var(--line); border-radius: 2px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--graphite); }
.main-nav { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; min-height: 44px; align-items: stretch; justify-content: space-between; gap: 13px; }
.nav-inner a { color: #303436; font-size: .82rem; font-weight: 700; }
.nav-direct, .nav-category-heading > a { position: relative; display: flex; min-height: 44px; padding: 11px 0 10px; align-items: center; white-space: nowrap; }
.nav-direct::after, .nav-category-heading > a::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 3px; content: ""; background: var(--accent); transform: scaleX(0); transition: transform .16s; }
.nav-direct:hover::after, .nav-direct:focus-visible::after, .nav-direct[aria-current="page"]::after, .nav-category:hover .nav-category-heading > a::after, .nav-category:focus-within .nav-category-heading > a::after, .nav-category.is-current .nav-category-heading > a::after { transform: scaleX(1); }
.nav-category { position: relative; }
.nav-category-heading { display: flex; height: 100%; align-items: center; gap: 3px; }
.nav-submenu-toggle { display: grid; width: 23px; height: 30px; padding: 0; place-items: center; color: #717577; background: transparent; border: 0; }
.nav-submenu-toggle span[aria-hidden] { font-size: .9rem; line-height: 1; transition: transform .16s; }
.nav-category.is-expanded .nav-submenu-toggle span[aria-hidden] { transform: rotate(180deg); }
.nav-dropdown { position: absolute; z-index: 90; top: calc(100% - 1px); left: -15px; display: none; width: 320px; max-height: min(72vh, 620px); padding: 9px; overflow-y: auto; background: #fff; border: 1px solid var(--line-dark); box-shadow: 0 16px 34px rgba(25,28,29,.15); }
.nav-category:hover > .nav-dropdown, .nav-category:focus-within > .nav-dropdown, .nav-category.is-expanded > .nav-dropdown { display: block; }
.nav-dropdown a { display: block; padding: 8px 10px; white-space: normal; line-height: 1.3; }
.nav-dropdown a:hover, .nav-dropdown a:focus-visible { color: var(--accent-dark); background: var(--paper); }
.nav-all { margin-bottom: 5px; color: var(--accent-dark) !important; border-bottom: 1px solid var(--line); font-weight: 800 !important; }
.nav-child.has-children > a { font-weight: 800; }
.nav-grandchildren { margin: 0 5px 5px 11px; padding-left: 8px; border-left: 2px solid var(--accent-soft); }
.nav-depth-2 > a { color: #626769; font-size: .7rem; font-weight: 600; }

.home-catalog { padding: 25px 0 31px; background: var(--paper); border-bottom: 1px solid var(--line); }
.home-catalog-heading { display: flex; margin-bottom: 19px; align-items: end; justify-content: space-between; gap: 30px; }
.home-catalog-heading .eyebrow { margin-bottom: 5px; }
.home-catalog-heading h1 { margin-bottom: 0; font-size: clamp(2rem,3vw,3rem); }
.home-catalog-intro { max-width: 790px; margin: 8px 0 0; color: var(--muted); font-size: .98rem; line-height: 1.58; }
.home-catalog-links { display: flex; padding-bottom: 5px; align-items: center; gap: 25px; }
.home-catalog-links a { display: inline-flex; min-height: 42px; align-items: center; gap: 7px; color: var(--accent-dark); font-size: .9rem; font-weight: 700; white-space: nowrap; }
.home-catalog-links a span { transition: transform .16s; }
.home-catalog-links a:hover span { transform: translateX(3px); }
.surface-selector { padding: 17px 0; background: #fff; border-bottom: 1px solid var(--line); }
.surface-selector-inner { display: flex; align-items: center; gap: 22px; }
.surface-selector h2 { margin: 0; flex: 0 0 auto; font-size: 1.05rem; }
.surface-selector nav { display: flex; min-width: 0; flex-wrap: wrap; gap: 6px; }
.surface-selector a { display: inline-flex; min-height: 36px; padding: 7px 10px; align-items: center; gap: 9px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 2px; font-size: .78rem; font-weight: 700; }
.surface-selector a span { color: var(--accent-dark); }
.surface-selector a:hover, .surface-selector a:focus-visible { color: var(--accent-dark); border-color: var(--accent); }

.section { padding-top: 78px; padding-bottom: 78px; }
.section-heading { display: flex; margin-bottom: 31px; align-items: end; justify-content: space-between; gap: 50px; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading > p { max-width: 445px; margin-bottom: 2px; color: var(--muted); }
.category-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.category-grid-main { grid-template-columns: repeat(5,minmax(0,1fr)); gap: 9px; }
.category-tile { position: relative; display: flex; min-height: 126px; padding: 13px 35px 13px 11px; align-items: center; gap: 13px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 2px; transition: border-color .16s, box-shadow .16s, transform .16s; }
.category-tile:hover { border-color: #aaa8a2; box-shadow: 0 7px 18px rgba(31,33,34,.07); transform: translateY(-1px); }
.category-photo { display: grid; width: 82px; height: 86px; flex: 0 0 auto; place-items: center; overflow: hidden; background: #fafafa; border: 1px solid #ebe9e5; }
.category-photo img { width: auto; height: auto; max-width: 100%; max-height: 100%; padding: 0; object-fit: contain; }
.category-photo > span { display: grid; width: 34px; height: 34px; place-items: center; color: var(--accent); background: var(--accent-soft); border-radius: 50%; font-weight: 700; }
.empty-state > span svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.category-copy { display: grid; min-width: 0; }
.category-copy strong { margin-bottom: 5px; font-size: 1.05rem; line-height: 1.28; }
.category-copy small { color: var(--muted); font-size: .84rem; line-height: 1.45; }
.category-copy em { margin-top: 7px; color: var(--accent-dark); font-size: .8rem; line-height: 1.35; font-style: normal; font-weight: 700; }
.tile-arrow { position: absolute; right: 13px; top: 50%; color: #777c7e; font-weight: 700; transform: translateY(-50%); }
.category-grid-main .category-tile { min-height: 130px; padding: 11px 30px 11px 9px; gap: 12px; }
.category-grid-main .category-photo { width: 88px; height: 104px; }
.category-grid-main .category-photo img { padding: 0; }
.category-grid-main .category-copy small { display: none; }
.category-grid-main .category-copy strong { margin-bottom: 5px; font-size: 1rem; line-height: 1.3; }
.category-grid-main .category-copy em { margin-top: 0; font-size: .8rem; }
.featured-products { background: var(--paper); border-top: 1px solid var(--line); }
.home-products { padding-top: 49px; padding-bottom: 61px; background: #fff; }
.section-heading-compact { margin-bottom: 22px; }
.section-heading-compact h2 { font-size: 1.8rem; }
.brand-callout { padding: 56px 0; color: #fff; background: var(--graphite); border-top: 4px solid var(--accent); }
.brand-callout-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.brand-callout h2 { margin-bottom: 10px; color: #fff; }
.brand-callout p { max-width: 760px; margin-bottom: 0; color: #c6c8c8; }
.brand-callout .eyebrow { color: #ef9a8e; }

.product-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); align-items: stretch; gap: 17px; }
.product-card { display: flex; min-width: 0; height: 100%; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid #d5d2cc; border-radius: 7px; box-shadow: 0 3px 12px rgba(28,31,32,.045); transition: transform .18s, border-color .18s, box-shadow .18s; }
.product-card:hover { border-color: #aaa59d; box-shadow: 0 12px 28px rgba(28,31,32,.1); transform: translateY(-2px); }
.product-image { position: relative; display: grid; width: 100%; aspect-ratio: 1/1; place-items: center; overflow: hidden; background: #fff; border-bottom: 1px solid #e4e2dd; }
.availability-badge { position: absolute; right: 8px; bottom: 8px; padding: 4px 7px; color: #fff; background: rgba(37,40,42,.9); border-radius: 2px; font-size: .6rem; font-weight: 700; }
.discount-badge { position: absolute; top: 11px; left: 11px; z-index: 2; padding: 5px 8px; color: #fff; background: var(--accent); border-radius: 3px; font-size: .68rem; font-weight: 800; }
.product-image img { position: absolute; inset: 20px; width: calc(100% - 40px); height: calc(100% - 40px); object-fit: contain; object-position: center; transition: transform .22s; }
.product-card:hover .product-image img { transform: scale(1.025); }
.image-placeholder { display: grid; width: 70px; height: 70px; place-items: center; color: var(--accent); background: var(--accent-soft); border: 1px solid #e5c9c2; border-radius: 50%; font-size: 1.8rem; font-weight: 700; }
.product-card-body { display: flex; min-height: 246px; padding: 17px; flex: 1; flex-direction: column; }
.product-card-meta { display: flex; min-height: 22px; align-items: flex-start; justify-content: space-between; gap: 7px; }
.product-brand { display: inline-block; width: fit-content; margin-bottom: 6px; color: var(--accent-dark); font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.product-measurement { flex: 0 0 auto; padding: 2px 6px; color: #555b5d; background: var(--paper); border: 1px solid var(--line); border-radius: 2px; font-size: .65rem; font-weight: 800; white-space: nowrap; }
.product-card h3 { display: -webkit-box; overflow: hidden; margin-bottom: 12px; font-size: 1.02rem; line-height: 1.4; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.product-card h3 a:hover { color: var(--accent-dark); }
.product-availability { margin: auto 0 0; color: var(--success); font-size: .78rem; font-weight: 700; }
.product-card-price { display: flex; min-height: 48px; margin-top: 13px; padding-top: 13px; align-items: baseline; flex-wrap: wrap; gap: 5px 8px; border-top: 1px solid #ebeae7; }
.price-prefix { color: var(--muted); font-size: .74rem; font-weight: 700; }
.product-card-price del { color: var(--muted); font-size: .75rem; }
.product-card-price small { width: 100%; color: var(--muted); font-size: .72rem; font-weight: 700; }
.price { font-size: 1.15rem; white-space: nowrap; }
.product-card-actions { display: grid; margin-top: 9px; gap: 7px; }
.button-buy { width: 100%; min-height: 46px; padding: 10px 13px; font-size: .9rem; }
.button-buy span, .button-shop span { transition: transform .16s; }
.button-buy:hover span, .button-shop:hover span { transform: translateX(3px); }
.product-more { color: #555b5d; font-size: .78rem; font-weight: 700; text-align: center; text-decoration: underline; text-decoration-color: #c5c1bb; text-underline-offset: 3px; }
.product-more:hover { color: var(--accent-dark); }
.load-more-wrap { display: grid; margin-top: 34px; justify-items: center; gap: 10px; }
.button-load { min-width: 260px; }
.button-load.is-loading { pointer-events: none; opacity: .65; }
.load-status { color: var(--muted); font-size: .78rem; }
.empty-state { padding: 66px 24px; text-align: center; background: var(--paper); border: 1px solid var(--line); border-radius: 2px; }
.empty-state > span { display: grid; width: 66px; height: 66px; margin: 0 auto 18px; place-items: center; color: var(--accent); background: #fff; border: 1px solid var(--line); border-radius: 50%; }
.empty-state h2 { font-size: 1.55rem; }
.empty-state p { color: var(--muted); }
.empty-suggestions { display: flex; max-width: 720px; margin: 19px auto 25px; justify-content: center; flex-wrap: wrap; gap: 7px; }
.empty-suggestions a { padding: 8px 10px; background: #fff; border: 1px solid var(--line); border-radius: 2px; font-size: .82rem; font-weight: 700; }
.empty-suggestions a:hover { color: var(--accent-dark); border-color: var(--accent); }
.empty-suggestions small { color: var(--muted); }

.breadcrumbs { padding-top: 14px; padding-bottom: 14px; }
.breadcrumbs ol { display: flex; margin: 0; padding: 0; align-items: center; gap: 8px; overflow: hidden; list-style: none; font-size: .72rem; white-space: nowrap; }
.breadcrumbs li { display: flex; min-width: 0; align-items: center; color: var(--muted); }
.breadcrumbs li:not(:last-child)::after { margin-left: 8px; color: #aaa7a1; content: "/"; }
.breadcrumbs li:last-child { overflow: hidden; color: var(--ink); text-overflow: ellipsis; }
.breadcrumbs a:hover { color: var(--accent-dark); }
.category-hero, .page-hero { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.category-hero-inner { display: grid; min-height: 224px; padding-top: 35px; padding-bottom: 35px; grid-template-columns: minmax(0,1fr) 260px; align-items: center; gap: 60px; }
.category-hero-inner > div { max-width: 840px; }
.category-hero h1, .page-hero h1 { margin-bottom: 17px; font-size: clamp(2.15rem,3.6vw,3.55rem); }
.category-hero p, .page-hero p { max-width: 760px; margin-bottom: 0; color: var(--muted); font-size: 1.03rem; }
.category-hero-fact { padding: 7px 0 7px 28px; border-left: 3px solid var(--accent); }
.category-hero-fact strong, .category-hero-fact span, .category-hero-fact small { display: block; }
.category-hero-fact strong { margin-bottom: -3px; color: var(--ink); font-size: 2.15rem; line-height: 1.1; }
.category-hero-fact span { font-size: .88rem; font-weight: 700; }
.category-hero-fact small { margin-top: 9px; color: var(--muted); font-size: .73rem; line-height: 1.45; }
.category-context { margin-top: -33px; padding-bottom: 68px; }
.category-context h2 { margin-bottom: 9px; font-size: 1.18rem; }
.category-context p { max-width: 900px; margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.65; }
.subcategory-section { padding-top: 38px; }
.subcategory-section > h2 { margin-bottom: 20px; font-size: 1.38rem; }
.category-grid-compact { grid-template-columns: repeat(3,minmax(0,1fr)); }
.category-grid-compact .category-tile { min-height: 94px; padding: 9px 38px 9px 9px; align-items: center; border-left: 3px solid var(--paper-dark); }
.category-grid-compact .category-tile:hover { border-left-color: var(--accent); }
.category-grid-compact .category-photo { width: 72px; height: 72px; }
.category-grid-compact .category-copy small { display: none; }
.category-grid-compact .category-copy strong { margin-bottom: 3px; }
.page-hero .shell { padding-top: 40px; padding-bottom: 40px; }
.listing-section { padding-top: 58px; }
.brand-listing { padding-top: 42px; }
.listing-heading { display: flex; margin-bottom: 19px; align-items: end; justify-content: space-between; gap: 25px; }
.listing-heading h2 { margin-bottom: 0; font-size: 2rem; }
.listing-heading p { margin-bottom: 2px; color: var(--muted); }
.listing-heading p strong { color: var(--ink); }
.filter-toolbar { display: none; }
.filters { display: flex; margin-bottom: 17px; padding: 14px; align-items: end; flex-wrap: wrap; gap: 10px; background: var(--paper); border: 1px solid var(--line); border-radius: 2px; }
.filters label { display: grid; min-width: 185px; flex: 1; gap: 4px; }
.filters label span { color: var(--muted); font-size: .66rem; font-weight: 700; text-transform: uppercase; }
.filters select, .filters input { width: 100%; height: 42px; padding: 0 36px 0 11px; color: var(--ink); background: #fff; border: 1px solid #cac8c3; border-radius: 2px; }
.filters input { padding-right: 10px; }
.price-filter { display: flex; min-width: 220px; margin: 0; padding: 0; flex: 1.1; gap: 7px; border: 0; }
.price-filter legend { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.price-filter label { min-width: 95px; }
.filter-actions { display: flex; align-items: center; gap: 12px; }
.filters-mobile-heading { display: none; }
.button-filter { min-height: 42px; padding: 8px 18px; }
.clear-filters { align-self: center; color: var(--accent-dark); font-size: .76rem; font-weight: 700; white-space: nowrap; }
.active-filters { display: flex; margin: -4px 0 27px; flex-wrap: wrap; gap: 6px; }
.active-filters a { display: inline-flex; min-height: 34px; padding: 6px 9px; align-items: center; gap: 7px; color: #4b5153; background: #fff; border: 1px solid var(--line); border-radius: 18px; font-size: .74rem; font-weight: 700; }
.active-filters a:hover { color: var(--accent-dark); border-color: var(--accent); }
.active-filters a span { color: var(--accent); font-size: 1rem; line-height: 1; }
.active-filters .active-filters-clear { color: var(--accent-dark); background: transparent; border-color: transparent; }
.content-section { padding: 72px 0 84px; background: var(--paper); border-top: 1px solid var(--line); }
.content-section h2 { font-size: 2.05rem; }
.content-section p { color: #53595b; font-size: 1rem; }
.faq-list { display: grid; margin-top: 32px; gap: 7px; }
.faq-list details { padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: 2px; }
.faq-list summary { cursor: pointer; font-weight: 700; }
.faq-list details p { margin: 12px 0 0; font-size: .92rem; }

.product-detail { padding-top: 18px; padding-bottom: 76px; }
.product-detail-grid { display: grid; grid-template-columns: minmax(0,1.04fr) minmax(390px,.96fr); align-items: start; gap: 62px; }
.product-detail-image { position: relative; display: grid; aspect-ratio: 1/1; place-items: center; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 7px; cursor: pointer; }
.product-detail-image img { position: absolute; inset: 40px; width: calc(100% - 80px); height: calc(100% - 80px); object-fit: contain; object-position: center; transition: transform .22s; }
.product-detail-image:hover img { transform: scale(1.018); }
.product-detail-image .image-placeholder { width: 130px; height: 130px; }
.image-shop-hint { position: absolute; right: 13px; bottom: 13px; left: 13px; display: flex; min-height: 38px; padding: 8px 12px; align-items: center; justify-content: center; gap: 8px; color: #fff; background: rgba(25,28,30,.86); border-radius: 3px; font-size: .72rem; font-weight: 700; opacity: 0; transform: translateY(5px); transition: opacity .18s,transform .18s; }
.product-detail-image:hover .image-shop-hint, .product-detail-image:focus-visible .image-shop-hint { opacity: 1; transform: none; }
.product-detail-info { min-width: 0; padding-top: 13px; }
.product-detail-info h1 { max-width: 100%; margin-bottom: 15px; overflow-wrap: anywhere; font-size: clamp(1.95rem,3.2vw,3.25rem); }
.detail-category { display: inline-block; margin-bottom: 25px; color: var(--accent-dark); font-size: .82rem; font-weight: 700; }
.product-variants { margin: -8px 0 22px; }
.product-variants > strong { display: block; margin-bottom: 7px; color: #555b5d; font-size: .72rem; letter-spacing: .02em; }
.product-variants > div { display: flex; flex-wrap: wrap; gap: 6px; }
.product-variants a { display: grid; min-width: 78px; min-height: 48px; padding: 6px 10px; place-content: center; color: var(--ink); background: #fff; border: 1px solid var(--line-dark); border-radius: 3px; text-align: center; }
.product-variants a:hover { color: var(--accent-dark); border-color: var(--accent); }
.product-variants a[aria-current="page"] { color: #fff; background: var(--graphite); border-color: var(--graphite); }
.product-variants a span { font-size: .8rem; font-weight: 800; }
.product-variants a small { font-size: .65rem; }
.offer-box { padding: 23px; background: var(--paper); border: 1px solid #cac8c3; border-top: 4px solid var(--accent); border-radius: 2px; }
.offer-box > div:first-child { display: flex; align-items: baseline; gap: 11px; }
.offer-box > div > span { display: block; width: 100%; margin-bottom: 3px; color: var(--muted); font-size: .69rem; font-weight: 700; text-transform: uppercase; }
.offer-box > div:first-child span { position: absolute; width: auto; transform: translateY(-17px); }
.offer-box > div:first-child strong { font-size: 1.9rem; }
.offer-box del { color: var(--muted); }
.offer-meta { margin: 21px 0 15px; padding-top: 15px; border-top: 1px solid var(--line); }
.offer-meta strong, .offer-meta small { display: block; }
.offer-meta small { color: var(--muted); }
.offer-terms { display: grid; margin: -2px 0 16px; gap: 5px; }
.offer-terms span { position: relative; padding-left: 17px; color: #4f5658; font-size: .72rem; font-weight: 700; line-height: 1.4; }
.offer-terms span::before { position: absolute; top: .44em; left: 1px; width: 7px; height: 7px; content: ""; background: var(--success); border-radius: 50%; }
.button-wide { width: 100%; }
.button-shop { min-height: 64px; margin-top: 2px; font-size: 1.12rem; font-weight: 850; letter-spacing: .01em; box-shadow: 0 11px 26px rgba(142,48,37,.3); }
.shop-hint { margin: 9px 0 0; color: var(--muted); font-size: .7rem; line-height: 1.44; text-align: center; }
.product-offers { margin-top: 19px; border: 1px solid var(--line); border-radius: 2px; }
.product-offers-heading { display: flex; min-height: 48px; padding: 10px 13px; align-items: center; justify-content: space-between; gap: 15px; background: var(--paper); border-bottom: 1px solid var(--line); }
.product-offers-heading h2 { margin: 0; font-size: 1rem; }
.product-offers-heading span { color: var(--muted); font-size: .68rem; font-weight: 700; }
.product-offer-list { display: grid; }
.product-offer { display: grid; min-height: 76px; padding: 10px 12px; grid-template-columns: minmax(0,1fr) auto auto; align-items: center; gap: 13px; border-bottom: 1px solid var(--line); }
.product-offer:last-child { border-bottom: 0; }
.product-offer > div { display: grid; min-width: 0; gap: 2px; }
.product-offer > div strong { overflow: hidden; font-size: .78rem; white-space: nowrap; text-overflow: ellipsis; }
.product-offer > div small { overflow: hidden; color: var(--success); font-size: .65rem; white-space: nowrap; text-overflow: ellipsis; }
.product-offer-terms { display: flex !important; margin-top: 3px; flex-wrap: wrap; gap: 3px 10px !important; }
.product-offer-terms span { color: var(--muted); font-size: .61rem; font-weight: 600; line-height: 1.35; }
.product-offer-terms span + span::before { margin-right: 10px; color: #aaa6a0; content: "·"; }
.product-offer > span { font-size: .84rem; font-weight: 800; white-space: nowrap; }
.product-offer > a { min-height: 40px; padding: 9px 13px; align-content: center; color: #fff; background: var(--accent); border: 1px solid var(--accent-dark); border-radius: 2px; font-size: .76rem; font-weight: 850; text-align: center; white-space: nowrap; box-shadow: 0 5px 12px rgba(142,48,37,.18); }
.product-offer > a:hover { color: #fff; background: var(--accent-dark); border-color: var(--accent-dark); }
.product-info-grid { display: grid; margin-top: 64px; grid-template-columns: minmax(0,1fr) 350px; gap: 76px; }
.product-info-grid article h2, .product-info-grid aside h2 { font-size: 1.58rem; }
.product-copy { max-width: 780px; }
.product-copy-section + .product-copy-section { margin-top: 27px; padding-top: 23px; border-top: 1px solid var(--line); }
.product-copy-section h3 { margin-bottom: 12px; color: var(--ink); font-size: 1.08rem; }
.product-copy-section p { margin-bottom: 13px; color: #4e5557; font-size: .96rem; line-height: 1.75; }
.product-copy-section p:last-child { margin-bottom: 0; }
.product-copy-section ul { display: grid; margin: 0; padding: 0; gap: 8px; list-style: none; }
.product-copy-section li { position: relative; padding-left: 21px; color: #454b4d; font-size: .92rem; line-height: 1.55; }
.product-copy-section li::before { position: absolute; top: .68em; left: 1px; width: 7px; height: 7px; content: ""; background: var(--accent); border-radius: 50%; }
.product-copy-bullets { padding: 19px 20px; background: #faf9f7; border: 1px solid #e2dfda; border-radius: 4px; }
.product-copy-bullets + .product-copy-section { margin-top: 18px; }
.button-more-info { display: inline-flex; min-height: 52px; margin-top: 28px; padding: 13px 21px; align-items: center; justify-content: center; gap: 12px; color: #fff; background: var(--accent); border: 1px solid var(--accent-dark); border-radius: 3px; font-size: .94rem; font-weight: 850; box-shadow: 0 8px 20px rgba(142,48,37,.22); }
.button-more-info:hover { color: #fff; background: var(--accent-dark); }
.product-info-grid aside { padding: 22px; background: var(--paper); border: 1px solid var(--line); }
.product-info-grid dl { margin: 0; }
.product-info-grid dl > div { display: grid; padding: 9px 0; grid-template-columns: 115px 1fr; gap: 14px; border-bottom: 1px solid var(--line); }
.product-info-grid dl > div:last-child { border: 0; }
.product-info-grid dt { color: var(--muted); font-size: .78rem; }
.product-info-grid dd { margin: 0; overflow-wrap: anywhere; font-size: .83rem; font-weight: 700; }
.product-info-grid dd a { color: var(--accent-dark); }
.related-section { background: var(--paper); border-top: 1px solid var(--line); }
.recently-viewed-section { background: #fff; border-top: 1px solid var(--line); }
.recently-viewed-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.recent-product { min-width: 0; background: #fff; border: 1px solid var(--line); border-radius: 4px; }
.recent-product a { display: grid; height: 100%; padding: 12px; grid-template-rows: 130px auto auto auto; gap: 5px; }
.recent-product a > span { display: grid; place-items: center; overflow: hidden; }
.recent-product img { width: 100%; height: 100%; object-fit: contain; }
.recent-product strong { font-size: .9rem; line-height: 1.35; }
.recent-product small { color: var(--muted); font-size: .7rem; }
.recent-product b { margin-top: 4px; font-size: .9rem; }
.mobile-shop-bar { display: none; }

.brand-index { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 9px; }
.brand-index a { display: flex; min-height: 76px; padding: 15px 17px; flex-direction: column; justify-content: center; background: #fff; border: 1px solid var(--line); border-left: 3px solid transparent; border-radius: 2px; transition: border-color .16s, background .16s; }
.brand-index a:hover { background: #faf9f7; border-left-color: var(--accent); }
.brand-index span { color: var(--muted); font-size: .74rem; }
.brand-hero { background: var(--paper); }
.topic-pills { display: flex; margin-top: 22px; flex-wrap: wrap; gap: 6px; }
.topic-pills span, .topic-pills a { padding: 7px 10px; background: #fff; border: 1px solid var(--line); border-radius: 2px; color: var(--ink); font-size: .76rem; font-weight: 700; text-decoration: none; }
.topic-pills a:hover, .topic-pills a:focus-visible { border-color: var(--accent); color: var(--accent-dark); }
.topic-pills small { color: var(--accent-dark); font-size: .72em; }

.static-body { padding-top: 58px; padding-bottom: 82px; }
.static-body section { padding: 27px 0; border-bottom: 1px solid var(--line); }
.static-body section:first-child { padding-top: 0; }
.static-body h2 { font-size: 1.55rem; }
.static-body p { max-width: 760px; color: #4e5557; }
.static-body a { color: var(--accent-dark); font-weight: 700; }
.not-found { padding-top: 90px; padding-bottom: 110px; text-align: center; }
.not-found > span { color: var(--accent); font-size: 5.5rem; font-weight: 700; line-height: 1; }
.not-found h1 { margin: 14px auto; font-size: 2.2rem; }
.not-found p { color: var(--muted); }
.not-found .site-search { max-width: 550px; margin: 24px auto 18px; }

.site-footer { padding-top: 62px; color: #c6c8c8; background: var(--graphite-dark); border-top: 4px solid var(--accent); }
.footer-grid { display: grid; padding-bottom: 48px; grid-template-columns: 1.4fr repeat(3,1fr); gap: 55px; }
.footer-grid h2 { margin-bottom: 15px; color: #fff; font-size: .82rem; letter-spacing: .03em; }
.footer-grid > div:not(.footer-about) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a { margin: 4px 0; color: #bfc1c1; font-size: .8rem; }
.footer-grid a:hover { color: #f09b8f; }
.footer-about img { width: 270px; margin-bottom: 17px; }
.footer-about p { max-width: 310px; color: #a9acac; font-size: .82rem; }
.footer-note { margin-top: 14px; color: #868a8a; font-size: .67rem; }
.footer-bottom { display: flex; min-height: 58px; align-items: center; justify-content: space-between; color: #858989; border-top: 1px solid #373b3d; font-size: .7rem; }

@media (max-width: 1120px) {
  .header-main { grid-template-columns: 340px minmax(280px,1fr) 42px; gap: 20px; }
  .brand img { width: 330px; }
  .nav-inner { justify-content: space-between; gap: 7px; }
  .nav-inner a { font-size: .76rem; }
  .category-grid-main { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .category-grid, .category-grid-compact { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.3fr repeat(3,1fr); gap: 28px; }
}

@media (max-width: 820px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .header-main { display: grid; min-height: 78px; grid-template-columns: minmax(0,1fr) 42px 42px; gap: 8px; }
  .brand img { width: min(320px, 100%); }
  .header-search-toggle { display: grid; grid-column: 2; }
  .header-main > .site-search { position: absolute; z-index: 120; top: calc(100% - 3px); right: 0; left: 0; display: none; padding: 10px; background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 28px rgba(25,28,29,.16); }
  .header-main > .site-search.is-open { display: flex; }
  .header-main > .site-search button { top: 14px; right: 14px; }
  .header-main > .site-search .search-suggestions { top: calc(100% + 5px); }
  .menu-toggle { display: block; }
  .main-nav { position: relative; }
  .nav-inner { display: none; height: auto; max-height: 70vh; padding: 8px 14px 14px; flex-direction: column; align-items: stretch; overflow-y: auto; }
  .nav-inner.is-open { display: flex; }
  .nav-direct, .nav-category-heading > a { min-height: 40px; padding: 8px 4px; }
  .nav-category-heading { justify-content: space-between; }
  .nav-category-heading > a { flex: 1 1 auto; }
  .nav-submenu-toggle { width: 42px; height: 40px; border-left: 1px solid var(--line); }
  .nav-dropdown { position: static; display: none; width: auto; max-height: none; padding: 3px 4px 8px 13px; overflow: visible; border: 0; border-left: 2px solid var(--accent-soft); box-shadow: none; }
  .nav-category:hover > .nav-dropdown { display: none; }
  .nav-category.is-expanded > .nav-dropdown { display: block; }
  .nav-dropdown a { padding: 7px 9px; }
  .nav-grandchildren { margin-left: 8px; }
  .nav-inner a { font-size: .92rem; }
  .nav-depth-2 > a { font-size: .84rem; }
  .suggestion-heading { font-size: .72rem; }
  .suggestion strong, .suggestion-price { font-size: .9rem; }
  .suggestion small { font-size: .76rem; }
  .home-catalog-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .home-catalog-heading > div { width: 100%; min-width: 0; }
  .category-grid-main { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .section { padding-top: 62px; padding-bottom: 62px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 13px; }
  .brand-callout-inner { align-items: flex-start; flex-direction: column; gap: 24px; }
  .category-hero-inner { grid-template-columns: 1fr 230px; gap: 42px; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-detail-image { max-height: 570px; }
  .product-info-grid { grid-template-columns: 1fr; gap: 32px; }
  .brand-index { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-about { grid-column: 1/-1; }
}

@media (max-width: 600px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.7rem; }
  .header-main { min-height: 70px; }
  .brand img { width: min(292px, 100%); }
  .site-search input { height: 46px; }
  .site-search button { width: 38px; height: 38px; }
  .home-catalog { padding-top: 19px; padding-bottom: 23px; }
  .home-catalog-heading { margin-bottom: 15px; }
  .home-catalog-heading h1 { font-size: 1.85rem; }
  .home-catalog-intro { font-size: 1rem; line-height: 1.58; }
  .home-catalog-links { width: 100%; padding-bottom: 0; justify-content: space-between; gap: 10px; }
  .home-catalog-links a { min-height: 42px; font-size: .88rem; }
  .surface-selector { padding: 15px 0 13px; }
  .surface-selector-inner { display: block; }
  .surface-selector h2 { margin-bottom: 9px; font-size: 1rem; }
  .surface-selector nav { margin-right: -16px; padding-right: 16px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: thin; }
  .surface-selector a { flex: 0 0 auto; min-height: 40px; font-size: .84rem; }
  .category-grid { grid-template-columns: 1fr; }
  .category-grid-main, .category-grid-compact { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px; }
  .category-tile { min-height: 98px; padding: 9px 35px 9px 9px; }
  .category-grid-main .category-tile { min-height: 110px; padding: 7px 23px 7px 6px; gap: 7px; }
  .category-grid-main .category-photo { width: 64px; height: 84px; }
  .category-grid-main .category-copy strong { overflow-wrap: anywhere; font-size: .88rem; line-height: 1.28; }
  .category-grid-main .category-copy em { font-size: .75rem; line-height: 1.35; }
  .category-grid-main .tile-arrow { right: 8px; font-size: 1rem; }
  .category-grid-compact .category-photo { width: 60px; height: 66px; }
  .category-copy strong { font-size: .94rem; }
  .category-copy small { font-size: .8rem; }
  .category-copy em { font-size: .75rem; }
  .home-products { padding-top: 37px; padding-bottom: 46px; }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .product-image img { inset: 12px; width: calc(100% - 24px); height: calc(100% - 24px); }
  .availability-badge, .discount-badge { font-size: .72rem; }
  .product-card-body { min-height: 256px; padding: 13px; }
  .product-card h3 { font-size: .92rem; line-height: 1.4; -webkit-line-clamp: 4; }
  .product-brand { font-size: .72rem; }
  .product-availability { font-size: .76rem; }
  .product-card-price { min-height: 48px; }
  .product-card-price del { font-size: .8rem; }
  .product-card-price small { font-size: .72rem; }
  .button-buy { min-height: 44px; padding-inline: 9px; font-size: .88rem; }
  .product-more { min-height: 38px; font-size: .78rem; }
  .price { font-size: 1.08rem; }
  .text-link { min-height: 42px; align-items: center; font-size: .95rem; }
  .category-hero-inner { min-height: 0; padding-top: 25px; padding-bottom: 27px; grid-template-columns: 1fr; gap: 17px; }
  .category-hero h1, .page-hero h1 { margin-bottom: 12px; font-size: 2.05rem; }
  .category-hero p, .page-hero p { font-size: .94rem; }
  .category-hero-fact { display: flex; padding: 8px 0 8px 14px; align-items: center; flex-wrap: wrap; column-gap: 8px; }
  .category-hero-fact strong { font-size: 1.8rem; }
  .category-hero-fact span { font-size: .94rem; }
  .category-hero-fact small { width: 100%; margin-top: 2px; font-size: .8rem; }
  .category-context { margin-top: -28px; padding-bottom: 51px; }
  .category-context p { font-size: .96rem; }
  .subcategory-section { padding-top: 29px; }
  .subcategory-section > h2 { margin-bottom: 15px; }
  .page-hero .shell { padding-top: 29px; padding-bottom: 31px; }
  .brand-hero .shell { padding-top: 23px; padding-bottom: 23px; }
  .brand-hero .eyebrow { margin-bottom: 8px; }
  .brand-hero h1 { margin-bottom: 10px; }
  .brand-hero p { line-height: 1.5; }
  .topic-pills { margin-top: 15px; gap: 5px; }
  .topic-pills span, .topic-pills a { font-size: .82rem; }
  .brand-listing { padding-top: 27px; }
  .brand-listing-heading { margin-bottom: 15px; align-items: baseline; flex-direction: row; gap: 12px; }
  .brand-listing-heading h2 { font-size: 1.55rem; }
  .brand-listing-heading p { white-space: nowrap; }
  .listing-heading { align-items: flex-start; flex-direction: column; gap: 6px; }
  .filter-toolbar { display: flex; min-height: 46px; margin-bottom: 14px; align-items: center; justify-content: space-between; gap: 12px; }
  .filter-toolbar > span { color: var(--muted); font-size: .78rem; white-space: nowrap; }
  .filter-toggle { display: inline-flex; min-height: 44px; padding: 8px 13px; align-items: center; gap: 9px; color: var(--ink); background: #fff; border: 1px solid var(--line-dark); border-radius: 3px; font-weight: 800; }
  .filter-toggle b { display: grid; width: 22px; height: 22px; place-items: center; color: #fff; background: var(--accent); border-radius: 50%; font-size: .72rem; }
  body.filters-open { overflow: hidden; }
  body.filters-open::before { position: fixed; z-index: 450; inset: 0; content: ""; background: rgba(20,23,24,.48); }
  .filters { position: fixed; z-index: 500; right: 0; bottom: 0; left: 0; display: none; max-height: min(86vh, 760px); margin: 0; padding: 15px 16px calc(18px + env(safe-area-inset-bottom)); align-items: stretch; flex-direction: column; flex-wrap: nowrap; overflow-y: auto; background: #fff; border: 0; border-top: 4px solid var(--accent); border-radius: 10px 10px 0 0; box-shadow: 0 -18px 42px rgba(20,23,24,.18); }
  .filters.is-open { display: flex; }
  .filters-mobile-heading { display: flex; min-height: 42px; align-items: center; justify-content: space-between; }
  .filters-mobile-heading strong { font-size: 1.1rem; }
  .filters-mobile-heading button { width: 40px; height: 40px; padding: 0; color: var(--ink); background: transparent; border: 0; font-size: 1.7rem; }
  .filters label { min-width: 0; }
  .filters label span { font-size: .75rem; }
  .filters select, .filters input { font-size: 1rem; }
  .price-filter { min-width: 0; flex: 0 0 auto; }
  .price-filter label { min-width: 0; }
  .filter-actions { position: sticky; bottom: calc(-18px - env(safe-area-inset-bottom)); margin: 5px -16px calc(-18px - env(safe-area-inset-bottom)); padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); flex-direction: column; background: #fff; border-top: 1px solid var(--line); }
  .button-filter { width: 100%; }
  .clear-filters { min-height: 40px; padding: 8px; align-self: center; font-size: .88rem; }
  .active-filters { margin-top: -4px; margin-bottom: 20px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: thin; }
  .active-filters a { flex: 0 0 auto; }
  .product-detail { padding-top: 8px; }
  .product-detail-grid, .product-detail-info, .product-info-grid, .product-info-grid > * { min-width: 0; }
  .product-detail-grid { gap: 18px; }
  .product-detail-info { padding-top: 0; }
  .product-detail-image { width: 100%; height: clamp(260px,58vw,310px); max-height: none; aspect-ratio: auto; }
  .product-detail-info h1 { font-size: clamp(1.7rem,8.2vw,2.25rem); line-height: 1.08; }
  .product-detail-image img { inset: 18px; width: calc(100% - 36px); height: calc(100% - 36px); }
  .image-shop-hint { display: none; }
  .detail-category { font-size: .92rem; }
  .product-variants { margin-top: -5px; }
  .product-variants a { min-height: 52px; }
  .offer-box { padding: 19px; }
  .offer-box > div > span { font-size: .76rem; }
  .offer-box > div:first-child strong { font-size: 1.55rem; }
  .offer-terms span { font-size: .8rem; }
  .shop-hint { font-size: .78rem; }
  .product-offers-heading span { font-size: .76rem; }
  .product-offer { padding: 10px; grid-template-columns: minmax(0,1fr) auto; gap: 8px; }
  .product-offer > div strong { font-size: .88rem; }
  .product-offer > div small { font-size: .75rem; }
  .product-offer-terms span { font-size: .72rem; }
  .product-offer > span { font-size: .94rem; }
  .product-offer > a { min-height: 52px; grid-column: 1 / -1; align-content: center; font-size: 1rem; text-align: center; }
  .product-copy-section p { font-size: 1rem; line-height: 1.68; }
  .product-copy-section li { font-size: .95rem; }
  .button-more-info { width: 100%; min-height: 56px; margin-top: 24px; font-size: 1rem; }
  .product-info-grid dl > div { grid-template-columns: 92px 1fr; }
  .product-info-grid dt { font-size: .84rem; }
  .product-info-grid dd { font-size: .9rem; }
  .recently-viewed-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .recent-product a { padding: 9px; grid-template-rows: 105px auto auto auto; }
  .mobile-shop-bar { position: fixed; z-index: 400; right: 0; bottom: 0; left: 0; min-height: 82px; padding: 11px 14px calc(11px + env(safe-area-inset-bottom)); align-items: center; justify-content: space-between; gap: 12px; background: rgba(255,255,255,.99); border-top: 2px solid var(--accent); box-shadow: 0 -10px 28px rgba(20,23,24,.18); }
  .mobile-shop-bar.is-visible { display: flex; }
  .mobile-shop-bar > span { display: grid; }
  .mobile-shop-bar small { color: var(--muted); font-size: .74rem; font-weight: 700; }
  .mobile-shop-bar strong { font-size: 1.12rem; }
  .mobile-shop-bar .button { min-height: 54px; padding: 11px 19px; font-size: 1rem; font-weight: 850; box-shadow: 0 7px 18px rgba(142,48,37,.28); }
  .brand-index { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .brand-index span { font-size: .82rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-about { grid-column: auto; }
  .footer-grid h2 { font-size: .95rem; }
  .footer-grid a, .footer-about p { font-size: .9rem; }
  .footer-note, .footer-bottom { font-size: .78rem; }
  .footer-bottom { padding: 16px 0; align-items: flex-start; flex-direction: column; justify-content: center; gap: 2px; }
}

@media (max-width: 430px) {
  .home-catalog-heading h1 { font-size: 1.72rem; }
  .category-grid-main { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .category-grid-compact { grid-template-columns: 1fr; }
  .category-grid-main .category-tile { min-height: 112px; padding-left: 5px; gap: 6px; }
  .category-grid-main .category-photo { width: 60px; height: 84px; }
  .category-grid-main .category-copy strong { font-size: .88rem; }
  .category-grid-main .category-copy em { font-size: .75rem; }
}

@media (max-width: 360px) {
  .product-grid { grid-template-columns: 1fr; }
  .brand-index { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
