:root {
  --ink: #121212;
  --muted: #6f706d;
  --line: #dedfdc;
  --soft: #f3f4f1;
  --paper: #ffffff;
  --orange: #f45b0b;
  --orange-dark: #d84900;
  --radius: 4px;
  --shell: min(1420px, calc(100% - 48px));
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.5; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 12px 16px; background: var(--orange); color: white; font-weight: 800; }
.skip-link:focus { top: 16px; }

.topbar { background: var(--ink); color: #fff; font-size: .78rem; letter-spacing: .02em; }
.topbar__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar__links { display: flex; gap: 26px; color: #d7d7d7; }
.topbar button, .topbar a { background: none; border: 0; padding: 0; cursor: pointer; color: inherit; }
.topbar button:hover, .topbar a:hover { color: var(--orange); }

.header { position: sticky; top: 0; z-index: 80; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.header__main { min-height: 82px; display: grid; grid-template-columns: 310px minmax(280px, 1fr) auto; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.brand__mark { width: 47px; height: 47px; display: grid; place-items: center; color: white; background: var(--orange); font-size: .87rem; font-weight: 900; transform: skew(-7deg); }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1rem; line-height: 1.1; letter-spacing: .04em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: .64rem; font-weight: 600; letter-spacing: .08em; }
.search-wrap { min-width: 0; position: relative; z-index: 5; margin: 0; }
.search { height: 48px; display: flex; align-items: center; gap: 11px; padding: 0 14px; background: var(--soft); border: 1px solid transparent; border-radius: var(--radius); transition: .2s; }
.search:focus-within { background: white; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(18,18,18,.08); }
.search svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.search input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; font-size: .9rem; }
.search input::-webkit-search-cancel-button { display: none; }
.search-clear { width: 28px; height: 28px; flex: 0 0 auto; display: grid; place-items: center; padding: 0; color: var(--muted); background: white; border: 1px solid var(--line); border-radius: 50%; font-size: 1.1rem; line-height: 1; cursor: pointer; }
.search-clear:hover { color: white; background: var(--orange); border-color: var(--orange); }
.search kbd { padding: 2px 7px; color: #8b8b89; border: 1px solid #d5d6d3; border-radius: 3px; font: 700 .75rem Inter, sans-serif; }
.search-suggestions { position: absolute; inset: calc(100% + 7px) 0 auto; z-index: 30; max-height: min(560px, calc(100vh - 140px)); overflow-y: auto; background: white; border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.search-suggestions__label { padding: 11px 14px; color: var(--muted); background: #fafaf8; border-bottom: 1px solid var(--line); font-size: .75rem; font-weight: 800; }
.search-suggestion { min-width: 0; display: grid; grid-template-columns: 58px minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 10px 14px; border-bottom: 1px solid var(--line); }
.search-suggestion:hover, .search-suggestion:focus { background: var(--soft); outline: 0; }
.search-suggestion__image { width: 58px; height: 52px; display: grid; place-items: center; padding: 5px; overflow: hidden; background: var(--soft); }
.search-suggestion__image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.search-suggestion__copy { min-width: 0; display: grid; gap: 3px; }
.search-suggestion__copy strong { overflow: hidden; font-size: .8rem; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.search-suggestion__copy small { overflow: hidden; color: var(--muted); font-size: .75rem; text-overflow: ellipsis; white-space: nowrap; }
.search-suggestion > b { font-size: .8rem; white-space: nowrap; }
.search-suggestions__all { width: 100%; min-height: 46px; display: flex; align-items: center; justify-content: center; gap: 9px; color: white; background: var(--ink); border: 0; font-size: .8rem; font-weight: 800; cursor: pointer; }
.search-suggestions__all:hover, .search-suggestions__all:focus { background: var(--orange); outline: 0; }
.search-suggestions__empty { min-height: 108px; display: grid; place-content: center; gap: 4px; padding: 20px; text-align: center; }
.search-suggestions__empty strong { font-size: .9rem; }
.search-suggestions__empty span { color: var(--muted); font-size: .75rem; }
.header__actions { display: flex; align-items: center; gap: 7px; }
.icon-button { min-height: 50px; position: relative; display: grid; grid-template-columns: auto auto; grid-template-rows: 1fr 1fr; column-gap: 8px; align-items: center; padding: 7px 9px; background: white; border: 0; cursor: pointer; font-size: .73rem; }
.icon-button svg { grid-row: 1 / 3; width: 23px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.icon-button span { align-self: end; color: var(--muted); }
.icon-button b { align-self: start; font-size: .78rem; }
.icon-button:hover { color: var(--orange); }
.menu-button { display: none; width: 46px; height: 46px; padding: 12px; background: var(--ink); border: 0; }
.menu-button span { display: block; height: 2px; margin: 4px 0; background: white; }

.nav { border-top: 1px solid #ececea; }
.nav__inner { height: 56px; display: flex; align-items: stretch; gap: 0; overflow-x: auto; scrollbar-width: none; }
.nav__inner::-webkit-scrollbar { display: none; }
.nav button { flex: 0 0 auto; padding: 0 22px; background: none; border: 0; border-right: 1px solid #ececea; font-size: .82rem; font-weight: 700; cursor: pointer; white-space: nowrap; }
.nav button:hover { color: var(--orange); }
.nav .catalog-trigger { display: flex; align-items: center; gap: 11px; padding-left: 0; padding-right: 28px; }
.catalog-trigger svg { width: 20px; fill: none; stroke: var(--orange); stroke-width: 2; }
.nav .nav__sale { margin-left: auto; color: var(--orange); border-right: 0; }

.hero { display: grid; grid-template-columns: minmax(0, 2fr) minmax(310px, .78fr); gap: 16px; padding-block: 28px 18px; }
.hero__primary { min-height: 500px; position: relative; display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; background: var(--ink); color: white; }
.hero__primary::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 72% 48%, rgba(244,91,11,.15), transparent 38%), linear-gradient(120deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: auto, 34px 34px; }
.hero__copy { position: relative; z-index: 2; align-self: center; padding: clamp(36px, 5vw, 74px); padding-right: 12px; }
.eyebrow { display: block; margin-bottom: 18px; color: var(--orange); font-size: .73rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow--dark { margin-bottom: 9px; }
.hero h1 { max-width: 680px; margin: 0; font-size: clamp(2.6rem, 5vw, 5.4rem); line-height: .94; letter-spacing: -.065em; text-transform: uppercase; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero__copy > p { max-width: 590px; margin: 24px 0 30px; color: #c9cac7; font-size: 1.02rem; }
.hero__buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 20px; border: 1px solid transparent; border-radius: 2px; font-weight: 800; font-size: .86rem; cursor: pointer; transition: transform .18s, background .18s, color .18s; }
.button:hover { transform: translateY(-2px); }
.button--orange { background: var(--orange); color: white; }
.button--orange:hover { background: var(--orange-dark); }
.button--ghost { background: transparent; color: white; border-color: #5d5d5a; }
.button--ghost:hover { border-color: white; }
.button--dark { background: var(--ink); color: white; }
.button--full { width: 100%; }
.hero__product { position: relative; z-index: 1; display: grid; place-items: center; min-width: 0; }
.hero__product img { position: relative; z-index: 2; width: 108%; max-width: none; padding: 24px; background: #f3f4f1; clip-path: polygon(9% 2%, 100% 8%, 92% 98%, 0 90%); filter: contrast(1.04) saturate(1.05); transform: rotate(-4deg) translateX(-3%); }
.hero__halo { position: absolute; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.hero__label { position: absolute; right: 24px; bottom: 24px; z-index: 3; padding: 8px 10px; background: var(--orange); color: white; font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.hero__side { display: grid; grid-template-rows: 1.25fr .75fr; gap: 16px; }
.promo { position: relative; overflow: hidden; padding: 34px; }
.promo--light { display: flex; flex-direction: column; align-items: flex-start; background: var(--soft); }
.promo--light::after { content: "?"; position: absolute; right: -7px; bottom: -66px; color: white; font-size: 14rem; font-weight: 900; line-height: 1; }
.promo__tag { position: relative; z-index: 1; color: var(--orange); font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.promo h2 { position: relative; z-index: 1; margin: 20px 0 12px; font-size: clamp(1.5rem, 2.2vw, 2.25rem); line-height: 1.08; letter-spacing: -.04em; }
.promo p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: .9rem; }
.promo button { position: relative; z-index: 1; margin-top: auto; padding: 18px 0 0; background: none; border: 0; border-bottom: 2px solid var(--ink); font-size: .82rem; font-weight: 900; cursor: pointer; }
.promo button span { color: var(--orange); margin-left: 8px; }
.promo--orange { display: flex; align-items: center; gap: 22px; background: var(--orange); color: white; }
.promo--orange .promo__icon { flex: 0 0 auto; width: 74px; height: 74px; display: grid; place-items: center; border: 2px solid white; border-radius: 50%; font-weight: 900; font-size: 1.5rem; }
.promo--orange .promo__icon::after { content: "/7"; font-size: .65rem; }
.promo--orange h2 { margin: 0 0 7px; font-size: 1.35rem; }
.promo--orange p { color: #ffe1d1; }

.benefits { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.benefits > div { min-height: 96px; display: flex; align-items: center; gap: 15px; padding: 20px 26px; border-right: 1px solid var(--line); }
.benefits > div:last-child { border-right: 0; }
.benefit-icon { flex: 0 0 auto; width: 36px; height: 36px; display: grid; place-items: center; color: var(--orange); border: 1px solid #d9d9d5; font-weight: 900; }
.benefits p { margin: 0; }
.benefits strong, .benefits small { display: block; }
.benefits strong { font-size: .84rem; }
.benefits small { margin-top: 4px; color: var(--muted); font-size: .72rem; }

.categories, .catalog { padding-top: 96px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -.06em; text-transform: uppercase; }
.section-heading > a { padding-bottom: 6px; border-bottom: 2px solid var(--ink); font-size: .82rem; font-weight: 900; }
.section-heading > a span { margin-left: 8px; color: var(--orange); }
.category-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 12px; }
.category-card { min-height: 340px; position: relative; display: flex; align-items: flex-start; overflow: hidden; padding: 28px; text-align: left; background: #eceeeb; border: 0; cursor: pointer; }
.category-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.58), transparent 58%); }
.category-card span { position: relative; z-index: 2; max-width: 62%; }
.category-card small, .category-card strong, .category-card em { display: block; }
.category-card small { color: var(--orange); font-size: .7rem; font-weight: 900; }
.category-card strong { margin-top: 12px; font-size: 1.45rem; line-height: 1.05; }
.category-card em { margin-top: 9px; color: var(--muted); font-size: .76rem; font-style: normal; }
.category-card img { position: absolute; width: 74%; max-width: 390px; right: -12%; bottom: -4%; mix-blend-mode: multiply; transition: transform .3s ease; }
.category-card b { position: absolute; z-index: 2; left: 28px; bottom: 28px; width: 38px; height: 38px; display: grid; place-items: center; background: white; font-size: 1.1rem; }
.category-card:hover img { transform: scale(1.06) translateX(-2%); }
.category-card:hover b { background: var(--orange); color: white; }
.category-card--wide img { width: 84%; right: -20%; bottom: 5%; }
.category-card--dark { color: white; background: var(--ink); }
.category-card--dark::before { background: radial-gradient(circle at 78% 68%, rgba(244,91,11,.18), transparent 35%); }
.category-card--dark em { color: #aaa; }
.category-card--dark img { mix-blend-mode: screen; }

.catalog { padding-bottom: 100px; }
.catalog__heading { margin-bottom: 24px; }
.catalog__heading > p { color: var(--muted); font-size: .83rem; }
.catalog__tools { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; border-block: 1px solid var(--line); }
.catalog__source { max-width: 920px; margin: -8px 0 24px; color: var(--muted); font-size: .78rem; }
.catalog-directory__title { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin: 30px 0 13px; }
.catalog-directory__title strong { font-size: 1rem; }
.catalog-directory__title span { color: var(--muted); font-size: .75rem; }
.catalog-directory { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 30px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.catalog-category { min-width: 0; position: relative; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.catalog-category::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: transparent; }
.catalog-category.is-active::before { background: var(--orange); }
.catalog-category__heading { width: 100%; min-height: 76px; display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; align-items: center; gap: 10px; padding: 14px 17px; background: var(--soft); border: 0; text-align: left; cursor: pointer; }
.catalog-category__heading:hover, .catalog-category.is-active .catalog-category__heading { background: var(--ink); color: white; }
.catalog-category__heading > span { color: var(--orange); font-size: .75rem; font-weight: 900; }
.catalog-category__heading > strong { font-size: .875rem; line-height: 1.25; }
.catalog-category__heading > b { min-width: 30px; height: 30px; display: grid; place-items: center; padding-inline: 6px; color: var(--ink); background: white; font-size: .75rem; }
.catalog-category__subcategories { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 8px 0; }
.catalog-category__subcategories button:first-child { grid-column: 1 / -1; }
.catalog-category__subcategories button { min-height: 39px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 17px; color: #4f504d; background: white; border: 0; font-size: .8rem; text-align: left; cursor: pointer; }
.catalog-category__subcategories button:hover { color: var(--orange); background: #fafaf8; }
.catalog-category__subcategories button.is-active { color: white; background: var(--orange); font-weight: 800; }
.catalog-category__subcategories button b { color: var(--muted); font-size: .75rem; }
.catalog-category__subcategories button.is-active b { color: white; }
.chips { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.chip { flex: 0 0 auto; padding: 10px 14px; background: transparent; border: 0; font-size: .78rem; font-weight: 800; cursor: pointer; }
.chip:hover, .chip.is-active { background: var(--ink); color: white; }
.sort { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .74rem; white-space: nowrap; }
.sort select { padding: 9px 30px 9px 10px; background: white; border: 1px solid var(--line); font-size: .78rem; font-weight: 700; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.product-card { min-width: 0; position: relative; display: flex; flex-direction: column; overflow: hidden; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; transition: box-shadow .2s, transform .2s; }
.product-card:hover { z-index: 2; box-shadow: 0 16px 40px rgba(15,15,15,.12); transform: translateY(-3px); }
.product-card__top { min-height: 27px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.badge { display: inline-flex; min-height: 24px; align-items: center; padding: 0 8px; color: white; background: var(--orange); font-size: .62rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.badge--dark { background: var(--ink); }
.badge--unavailable { background: #9d3b2d; }
.compare-check { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: .67rem; cursor: pointer; }
.compare-check input { accent-color: var(--orange); }
.product-card__image { position: relative; width: 100%; height: 225px; min-width: 0; min-height: 0; flex: 0 0 225px; display: block; overflow: hidden; padding: 0; background: var(--soft); border: 0; cursor: pointer; isolation: isolate; }
.product-card__image img { position: absolute; inset: 14px; width: calc(100% - 28px); height: calc(100% - 28px); min-width: 0; min-height: 0; max-width: calc(100% - 28px); max-height: calc(100% - 28px); object-fit: contain; object-position: center; mix-blend-mode: multiply; transition: transform .25s; }
.product-card__image.is-missing::after { content: "Зображення оновлюється"; position: absolute; inset: 0; display: grid; place-items: center; padding: 20px; color: var(--muted); font-size: .75rem; font-weight: 700; text-align: center; }
.product-image-placeholder { position: absolute; inset: 14px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 4px; padding: 20px; overflow: hidden; color: var(--ink); background: linear-gradient(145deg, #fafbf8 0 58%, #eceee9 58%); text-align: left; }
.product-image-placeholder::before { content: ""; position: absolute; width: 120px; height: 120px; top: -52px; right: -35px; border: 22px solid rgba(244,91,11,.12); border-radius: 50%; }
.product-image-placeholder small { position: relative; color: var(--orange); font-size: .68rem; font-weight: 900; letter-spacing: .13em; }
.product-image-placeholder strong { position: relative; max-width: 100%; font-size: 1.18rem; line-height: 1.05; overflow-wrap: anywhere; }
.product-image-placeholder em { position: relative; color: var(--muted); font-size: .64rem; font-style: normal; font-weight: 700; }
.product-image-placeholder--large { position: relative; inset: auto; width: 100%; height: 330px; justify-content: center; padding: 36px; }
.product-image-placeholder--large strong { font-size: clamp(1.6rem, 4vw, 2.7rem); }
.product-card:hover .product-card__image img { transform: scale(1.045); }
.product-card__category { color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.product-card h3 { min-height: 48px; margin: 8px 0 13px; font-size: 1rem; line-height: 1.3; cursor: pointer; }
.product-card h3:hover { color: var(--orange); }
.product-card__meta { min-height: 38px; margin-bottom: 12px; color: var(--muted); font-size: .72rem; }
.availability { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; color: #387a22; font-size: .68rem; font-weight: 700; }
.availability::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.availability--unavailable { color: #9d3b2d; }
.button:disabled, .add-button:disabled { cursor: not-allowed; opacity: .52; filter: grayscale(.35); }
.product-card__bottom { min-height: 50px; margin-top: auto; display: flex; align-items: end; justify-content: space-between; gap: 10px; }
.price { display: block; font-size: 1.12rem; font-weight: 900; white-space: nowrap; }
.price small { display: block; margin-bottom: 2px; color: var(--muted); font-size: .66rem; font-weight: 500; }
.add-button { width: 46px; height: 46px; flex: 0 0 auto; display: grid; place-items: center; color: white; background: var(--ink); border: 0; cursor: pointer; transition: .18s; }
.add-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.add-button:hover { background: var(--orange); }
.add-button.added { background: #397b24; }
.empty-state { padding: 70px 20px; text-align: center; background: var(--soft); }
.empty-state span { font-size: 3rem; color: var(--orange); }
.empty-state h3 { margin: 10px 0 4px; font-size: 1.5rem; }
.empty-state p { margin: 0 0 22px; color: var(--muted); }
.catalog__more { display: flex; justify-content: center; padding-top: 28px; }
.catalog__more .button { min-width: 220px; }

.expert { min-height: 285px; display: grid; grid-template-columns: 210px minmax(0, 1fr) auto; align-items: center; gap: clamp(30px, 5vw, 78px); margin-bottom: 100px; padding: 42px clamp(34px, 5vw, 74px); overflow: hidden; background: var(--ink); color: white; }
.expert__accent { width: 190px; height: 190px; display: grid; place-items: center; background: var(--orange); transform: rotate(-7deg); }
.expert__accent span { font-size: 3.1rem; font-weight: 900; letter-spacing: -.08em; transform: rotate(7deg); }
.expert__copy h2 { max-width: 750px; margin: 0; font-size: clamp(1.8rem, 3.4vw, 3rem); line-height: 1.05; letter-spacing: -.05em; }
.expert__copy p { max-width: 780px; margin: 18px 0 0; color: #aaa; font-size: .9rem; }
.expert > .button { min-width: 190px; }

.stores { padding-bottom: 100px; }
.stores__heading { align-items: end; }
.stores__heading > p { max-width: 390px; margin: 0 0 5px; color: var(--muted); font-size: .86rem; }
.stores__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.store-card { min-width: 0; padding: clamp(26px, 4vw, 48px); background: var(--soft); border-top: 5px solid var(--orange); }
.store-card--dark { color: white; background: var(--ink); }
.store-card__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.store-card__number { color: var(--orange); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.store-card h3 { margin: 32px 0 8px; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -.055em; text-transform: uppercase; }
.store-card__address { display: inline-block; max-width: 500px; color: var(--muted); font-size: 1rem; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px; }
.store-card--dark .store-card__address { color: #b8b8b5; }
.store-card__address:hover { color: var(--orange); text-decoration-color: currentColor; }
.store-card__details { max-width: 430px; margin: 30px 0; }
.store-card__details div { display: flex; justify-content: space-between; gap: 24px; padding: 9px 0; border-bottom: 1px solid rgba(120,120,116,.25); font-size: .8rem; }
.store-card__details dt { color: var(--muted); }
.store-card--dark .store-card__details dt { color: #9d9d99; }
.store-card__details dd { margin: 0; font-weight: 800; }
.store-card__phone { display: inline-block; margin-bottom: 30px; font-size: clamp(1.7rem, 3.3vw, 2.7rem); font-weight: 900; letter-spacing: -.045em; }
.store-card__phone:hover { color: var(--orange); }
.store-card__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.store-card--dark .button--ghost { color: white; border-color: #555; }
.store-card--dark .button--ghost:hover { background: white; color: var(--ink); }
.store-card__map { margin-left: auto; padding: 13px 0; border-bottom: 2px solid currentColor; font-size: .78rem; font-weight: 900; }
.store-card__map span { margin-left: 7px; color: var(--orange); }
.stores__email { margin: 18px 0 0; color: var(--muted); font-size: .8rem; text-align: center; }
.stores__email a { color: var(--ink); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.footer { padding-top: 70px; color: white; background: #0e0e0e; }
.footer__grid { display: grid; grid-template-columns: 1.5fr .8fr .8fr 1fr; gap: 70px; padding-bottom: 64px; }
.brand--footer .brand__mark { width: 50px; height: 50px; }
.brand--footer small { color: #8a8a88; }
.footer__grid > div > p { max-width: 390px; color: #8f8f8d; font-size: .83rem; }
.footer h3 { margin: 0 0 20px; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.footer__grid > div > a, .footer__grid > div > button { display: block; margin: 11px 0; padding: 0; color: #a7a7a4; background: none; border: 0; font-size: .78rem; text-align: left; cursor: pointer; }
.footer__grid > div > a:hover, .footer__grid > div > button:hover { color: var(--orange); }
.footer__contact { padding: 24px; border: 1px solid #333; }
.footer__contact .button { width: 100%; margin-top: 18px; color: white; text-align: center; }
.footer__contact p a { color: #d5d5d2; }
.footer__contact p a:hover { color: var(--orange); }
.footer__bottom { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #757573; border-top: 1px solid #292929; font-size: .68rem; }

.overlay { position: fixed; inset: 0; z-index: 120; background: rgba(0,0,0,.58); backdrop-filter: blur(2px); }
.drawer { position: fixed; top: 0; right: 0; z-index: 130; width: min(480px, 100%); height: 100dvh; display: flex; flex-direction: column; background: white; transform: translateX(105%); visibility: hidden; transition: transform .28s ease, visibility .28s; }
.drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer__header { min-height: 102px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 26px; border-bottom: 1px solid var(--line); }
.drawer__header .eyebrow { margin-bottom: 4px; }
.drawer__header h2 { margin: 0; font-size: 2rem; letter-spacing: -.05em; }
.close-button { width: 42px; height: 42px; display: grid; place-items: center; padding: 0; background: var(--soft); border: 0; font-size: 1.6rem; cursor: pointer; }
.close-button:hover { color: white; background: var(--orange); }
.drawer__body { flex: 1; overflow-y: auto; padding: 18px 26px; }
.drawer__footer { padding: 20px 26px 26px; border-top: 1px solid var(--line); }
.drawer__footer small { display: block; margin-top: 10px; color: var(--muted); font-size: .68rem; text-align: center; }
.cart-row { display: grid; grid-template-columns: 80px 1fr auto; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-row img { width: 80px; height: 72px; object-fit: contain; mix-blend-mode: multiply; }
.mini-placeholder { width: 80px; height: 72px; display: grid; place-items: center; color: var(--orange); background: var(--soft); font-size: .67rem; font-weight: 900; letter-spacing: .08em; }
.cart-row h3 { margin: 0 0 5px; font-size: .84rem; }
.cart-row p { margin: 0; color: var(--muted); font-size: .68rem; }
.cart-row__price { margin-top: 7px; font-size: .82rem; font-weight: 900; }
.remove-item { align-self: start; padding: 4px; color: var(--muted); background: none; border: 0; cursor: pointer; }
.remove-item:hover { color: var(--orange); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 16px; }
.cart-total strong { font-size: 1.25rem; }
.drawer-empty { display: grid; place-items: center; min-height: 55vh; text-align: center; }
.drawer-empty span { display: grid; place-items: center; width: 64px; height: 64px; margin-inline: auto; color: var(--orange); background: var(--soft); font-size: 1.6rem; }
.drawer-empty h3 { margin: 17px 0 5px; }
.drawer-empty p { max-width: 270px; margin: 0; color: var(--muted); font-size: .82rem; }
.compare-row { display: grid; grid-template-columns: 78px 1fr auto; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.compare-row img { width: 78px; height: 72px; object-fit: contain; mix-blend-mode: multiply; }
.compare-row .mini-placeholder { width: 78px; }
.compare-row h3 { margin: 0 0 8px; font-size: .86rem; }
.compare-row p { margin: 0; color: var(--muted); font-size: .72rem; }

.modal { position: fixed; inset: 50% auto auto 50%; z-index: 140; width: min(930px, calc(100% - 32px)); max-height: calc(100dvh - 32px); overflow-y: auto; padding: 42px; background: white; transform: translate(-50%, -46%) scale(.97); opacity: 0; visibility: hidden; transition: .2s ease; }
.modal.is-open { transform: translate(-50%, -50%) scale(1); opacity: 1; visibility: visible; }
.modal__close { position: absolute; top: 16px; right: 16px; z-index: 2; }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.product-detail__image { min-width: 0; min-height: 390px; display: grid; place-items: center; overflow: hidden; padding: 24px; background: var(--soft); }
.product-detail__image img { width: 100%; height: 330px; min-width: 0; min-height: 0; max-width: 100%; max-height: 330px; object-fit: contain; object-position: center; mix-blend-mode: multiply; }
.product-detail__copy { align-self: center; padding-right: 14px; }
.product-detail__copy h2 { margin: 0 0 13px; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -.055em; }
.product-detail__copy > p { color: var(--muted); }
.specs { display: grid; gap: 8px; margin: 24px 0; }
.specs div { display: flex; justify-content: space-between; gap: 15px; padding-bottom: 8px; border-bottom: 1px solid var(--line); font-size: .76rem; }
.specs span { color: var(--muted); }
.product-detail__price { margin: 20px 0; font-size: 1.7rem; font-weight: 900; }
.contact-modal { width: min(620px, calc(100% - 32px)); }
.contact-modal__top h2 { margin: 0; font-size: clamp(2rem, 4vw, 3rem); line-height: 1; letter-spacing: -.05em; }
.contact-modal__top p { color: var(--muted); }
.contact-modal form { display: grid; gap: 14px; margin-top: 26px; }
.contact-modal label { display: grid; gap: 6px; font-size: .73rem; font-weight: 800; }
.contact-modal input, .contact-modal textarea, .contact-modal select { width: 100%; padding: 13px 14px; background: var(--soft); border: 1px solid transparent; outline: 0; resize: vertical; }
.contact-modal input:focus, .contact-modal textarea:focus, .contact-modal select:focus { background: white; border-color: var(--ink); }
.contact-modal form > small { color: var(--muted); font-size: .65rem; text-align: center; }
.contact-modal__channels { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.contact-modal__channels > span { display: block; margin-bottom: 10px; color: var(--muted); font-size: .7rem; font-weight: 800; text-align: center; text-transform: uppercase; }
.contact-modal__channels > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.contact-modal__channels a { padding: 9px 12px; background: var(--soft); font-size: .74rem; font-weight: 800; }
.contact-modal__channels a:hover { color: white; background: var(--ink); }
.success { padding: 40px 0 12px; text-align: center; }
.success > span { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 18px; color: white; background: #387a22; border-radius: 50%; font-size: 1.8rem; }
.success h3 { margin: 0; font-size: 1.7rem; }
.success p { color: var(--muted); }
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 200; min-width: 260px; padding: 13px 18px; color: white; background: var(--ink); box-shadow: 0 12px 40px rgba(0,0,0,.2); font-size: .8rem; font-weight: 700; text-align: center; transform: translate(-50%, 130%); opacity: 0; transition: .25s; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }
body.has-modal { overflow: hidden; }

/* Product page */
.product-body { background: #fff; }
.product-header__inner { min-height: 82px; display: grid; grid-template-columns: 310px 1fr auto; align-items: center; gap: 28px; }
.product-header__catalog { justify-self: start; color: var(--muted); font-size: .875rem; font-weight: 800; }
.product-header__catalog span { margin-right: 7px; color: var(--orange); }
.product-header__catalog:hover { color: var(--ink); }
.product-search-wrap { min-width: 260px; position: relative; z-index: 5; }
.product-search { width: 100%; height: 46px; display: flex; align-items: center; gap: 10px; padding-left: 13px; overflow: hidden; background: var(--soft); border: 1px solid transparent; }
.product-search:focus-within { background: white; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(18,18,18,.08); }
.product-search svg { width: 19px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; }
.product-search input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; font-size: .85rem; }
.product-search button { height: 100%; flex: 0 0 auto; padding: 0 18px; color: white; background: var(--ink); border: 0; font-size: .8rem; font-weight: 800; cursor: pointer; }
.product-search button:hover { background: var(--orange); }
.product-header__actions { display: flex; align-items: center; gap: 24px; }
.product-header__phone { display: grid; text-align: right; }
.product-header__phone small { color: var(--muted); font-size: .75rem; }
.product-header__phone strong { font-size: .9rem; }
.product-cart-indicator { min-width: 66px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 12px; background: var(--soft); font-size: .8rem; font-weight: 800; }
.product-cart-indicator b { width: 21px; height: 21px; display: grid; place-items: center; color: white; background: var(--orange); border-radius: 50%; font-size: .75rem; }
.breadcrumbs { min-height: 68px; display: flex; align-items: center; gap: 10px; overflow: hidden; color: var(--muted); font-size: .78rem; white-space: nowrap; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs > span:last-child { overflow: hidden; color: var(--ink); text-overflow: ellipsis; }
.product-loading { min-height: 480px; display: grid; place-items: center; color: var(--muted); font-size: .875rem; }
.product-page { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: clamp(38px, 6vw, 90px); padding: 16px 0 90px; }
.product-gallery { min-width: 0; align-self: start; }
.product-gallery__main { position: relative; height: clamp(420px, 48vw, 610px); display: grid; place-items: center; overflow: hidden; background: var(--soft); }
.product-gallery__main img { position: absolute; inset: 7%; width: 86%; height: 86%; max-width: none; max-height: none; object-fit: contain; object-position: 50% 50%; mix-blend-mode: multiply; }
.product-gallery__main img.is-portrait { inset: 8% 12%; width: 76%; height: 84%; }
.product-gallery__main img.is-landscape { inset: 12% 6%; width: 88%; height: 76%; }
.product-gallery__placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--muted); text-align: center; }
.product-gallery__placeholder small { color: var(--orange); font-size: .8rem; font-weight: 900; letter-spacing: .14em; }
.product-gallery__placeholder strong { color: var(--ink); font-size: clamp(1.6rem, 4vw, 3rem); line-height: 1; }
.product-gallery__placeholder span { font-size: .75rem; }
.product-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; }
.product-thumbs:empty { display: none; }
.product-thumbs button { width: 92px; height: 78px; flex: 0 0 auto; display: grid; place-items: center; padding: 7px; background: white; border: 1px solid var(--line); cursor: pointer; }
.product-thumbs button:hover, .product-thumbs button.is-active { border-color: var(--orange); box-shadow: inset 0 0 0 1px var(--orange); }
.product-thumbs img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product-summary { align-self: center; }
.product-summary .eyebrow { margin-bottom: 13px; }
.product-summary h1 { max-width: 720px; margin: 0; font-size: clamp(2.15rem, 4.5vw, 4.5rem); line-height: .98; letter-spacing: -.058em; }
.product-summary__sku { margin: 18px 0 12px; color: var(--muted); font-size: .85rem; }
.product-summary__sku strong { color: var(--ink); font-weight: 800; }
.product-summary__availability { margin: 0 0 22px; font-size: .8rem; }
.product-summary__price { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; letter-spacing: -.045em; }
.product-summary__note { max-width: 520px; margin: 6px 0 24px; color: var(--muted); font-size: .78rem; }
.product-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.product-actions .button { min-width: 190px; }
.product-actions .button.is-added { background: #397b24; }
.product-whatsapp { width: fit-content; display: inline-flex; gap: 10px; margin: 14px 0 30px; color: #2f7420; font-size: .85rem; font-weight: 800; }
.product-whatsapp:hover { color: var(--orange); }
.product-benefits { display: grid; gap: 0; border-top: 1px solid var(--line); }
.product-benefits > div { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.product-benefits b { width: 30px; height: 30px; display: grid; place-items: center; color: var(--orange); background: var(--soft); font-size: .75rem; }
.product-benefits span { display: grid; }
.product-benefits strong { font-size: .85rem; }
.product-benefits small { margin-top: 2px; color: var(--muted); font-size: .75rem; }
.product-information { display: grid; grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr); gap: clamp(44px, 8vw, 120px); padding: 80px clamp(28px, 6vw, 86px); background: var(--soft); }
.product-information .eyebrow { margin-bottom: 9px; }
.product-information h2 { margin: 0 0 24px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.05em; }
.product-description > p { margin: 0; color: #565754; line-height: 1.75; }
.product-description ul { display: grid; gap: 11px; margin: 30px 0 0; padding: 0; list-style: none; }
.product-description li { position: relative; padding-left: 28px; font-size: .875rem; font-weight: 700; }
.product-description li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--orange); font-weight: 900; }
.product-spec-table { margin: 0; background: white; }
.product-spec-table > div { min-height: 50px; display: grid; grid-template-columns: minmax(150px, .9fr) minmax(180px, 1.1fr); align-items: center; gap: 20px; padding: 11px 16px; border-bottom: 1px solid var(--line); }
.product-spec-table > div:last-child { border-bottom: 0; }
.product-spec-table dt { color: var(--muted); font-size: .8rem; }
.product-spec-table dd { margin: 0; font-size: .85rem; font-weight: 800; }
.product-spec-note { margin: 14px 0 0; color: var(--muted); font-size: .75rem; }
.related { padding: 100px 0; }
.related .section-heading { margin-bottom: 34px; }
.related-products { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.related-card { min-width: 0; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.related-card__image { height: 190px; display: grid; place-items: center; margin-bottom: 14px; padding: 16px; overflow: hidden; background: var(--soft); }
.related-card__image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .22s; }
.related-card:hover .related-card__image img { transform: scale(1.04); }
.related-card > span { color: var(--muted); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.related-card h3 { min-height: 46px; margin: 7px 0 14px; font-size: .9rem; line-height: 1.32; }
.related-card h3 a:hover { color: var(--orange); }
.related-card > strong { font-size: 1rem; }
.product-not-found { min-height: 570px; padding: 110px 20px; text-align: center; }
.product-not-found > span { color: var(--orange); font-size: 1rem; font-weight: 900; letter-spacing: .15em; }
.product-not-found h1 { margin: 10px 0; font-size: clamp(2.5rem, 7vw, 5rem); letter-spacing: -.06em; }
.product-not-found p { margin: 0 0 26px; color: var(--muted); }
.product-contact-strip { color: white; background: var(--ink); }
.product-contact-strip > .shell { min-height: 270px; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.product-contact-strip .eyebrow { margin-bottom: 8px; }
.product-contact-strip h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -.055em; }
.product-contact-strip p { margin: 12px 0 0; color: #aaa; }
.product-contact-strip__actions { display: grid; gap: 8px; flex: 0 0 auto; }
.product-contact-strip__actions a { min-width: 220px; padding: 14px 18px; color: white; background: var(--orange); font-size: 1rem; font-weight: 900; text-align: center; }
.product-contact-strip__actions a:hover { background: var(--orange-dark); }
.product-footer { padding: 0; }
.product-footer__inner { min-height: 170px; display: grid; grid-template-columns: 1.1fr 1fr 1fr; align-items: center; gap: 50px; }
.product-footer__inner > div { display: grid; gap: 5px; }
.product-footer__inner > div strong { font-size: .8rem; }
.product-footer__inner > div span { max-width: 360px; color: #858583; font-size: .75rem; }

@media (max-width: 980px) {
  .product-header__inner { grid-template-columns: 1fr auto; }
  .product-header__catalog { display: none; }
  .product-search-wrap { grid-column: 1 / -1; grid-row: 2; margin-bottom: 12px; }
  .product-page { grid-template-columns: 1fr; gap: 42px; }
  .product-gallery__main { height: min(650px, 78vw); }
  .product-summary { max-width: 720px; }
  .product-information { grid-template-columns: 1fr; }
  .related-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-footer__inner { grid-template-columns: 1fr 1fr; padding: 44px 0; }
  .product-footer__inner .brand { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .product-header__inner { min-height: 70px; gap: 10px; }
  .product-header__phone { display: none; }
  .product-header__actions { gap: 0; }
  .product-cart-indicator > span { display: none; }
  .product-cart-indicator { min-width: 42px; padding: 8px; background: transparent; }
  .breadcrumbs { min-height: 54px; }
  .product-page { padding: 4px 0 64px; }
  .product-gallery__main { height: 82vw; min-height: 310px; }
  .product-gallery__main img { inset: 6%; width: 88%; height: 88%; }
  .product-gallery__main img.is-portrait { inset: 7% 10%; width: 80%; height: 86%; }
  .product-gallery__main img.is-landscape { inset: 10% 5%; width: 90%; height: 80%; }
  .product-thumbs button { width: 72px; height: 62px; }
  .product-summary h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .product-summary__price { margin-top: 4px; }
  .product-actions { display: grid; grid-template-columns: 1fr; }
  .product-actions .button { width: 100%; }
  .product-information { margin-inline: calc((100vw - var(--shell)) / -2); padding: 58px calc((100vw - var(--shell)) / 2); }
  .product-information h2 { margin-bottom: 18px; }
  .product-spec-table > div { grid-template-columns: 1fr; gap: 3px; padding: 12px; }
  .product-spec-table dd { font-size: .78rem; }
  .related { padding: 70px 0; }
  .related-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-card { padding: 11px; }
  .related-card__image { height: 140px; padding: 10px; }
  .related-card h3 { min-height: 58px; font-size: .75rem; }
  .product-contact-strip > .shell { min-height: 360px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 28px; }
  .product-contact-strip__actions { width: 100%; }
  .product-contact-strip__actions a { min-width: 0; width: 100%; }
  .product-footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .product-footer__inner .brand { grid-column: auto; }
}

@media (max-width: 1180px) {
  :root { --shell: min(100% - 32px, 1120px); }
  .header__main { grid-template-columns: 270px minmax(220px, 1fr) auto; gap: 15px; }
  .icon-button span { display: none; }
  .icon-button { grid-template-columns: auto auto; grid-template-rows: 1fr; }
  .icon-button svg { grid-row: auto; }
  .hero { grid-template-columns: 1fr; }
  .hero__side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .promo { min-height: 230px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1.2fr .8fr .8fr; gap: 40px; }
  .footer__contact { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  :root { --shell: calc(100% - 28px); }
  .topbar__links a { display: none; }
  .header__main { min-height: 70px; grid-template-columns: 1fr auto; }
  .brand__mark { width: 42px; height: 42px; }
  .search-wrap { grid-column: 1 / -1; grid-row: 2; margin-bottom: 12px; }
  .menu-button { display: block; }
  .nav { display: none; }
  .nav.is-open { display: block; }
  .nav__inner { height: auto; max-height: 70vh; flex-direction: column; align-items: stretch; padding: 8px 0 14px; overflow-y: auto; }
  .nav button, .nav .catalog-trigger { justify-content: flex-start; min-height: 48px; padding: 0 14px; border-right: 0; border-bottom: 1px solid var(--line); text-align: left; }
  .nav .nav__sale { margin-left: 0; }
  .hero__primary { grid-template-columns: 1fr; min-height: 650px; }
  .hero__copy { align-self: start; padding: 42px 32px; }
  .hero__product { position: absolute; inset: auto 0 0 38%; height: 300px; }
  .hero__product img { width: 116%; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .benefits > div:nth-child(2) { border-right: 0; }
  .benefits > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .category-card--wide { grid-column: 1 / -1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-directory { display: flex; margin-right: calc((100vw - var(--shell)) / -2); padding-right: calc((100vw - var(--shell)) / 2); overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: thin; }
  .catalog-category { width: min(360px, 84vw); flex: 0 0 min(360px, 84vw); scroll-snap-align: start; }
  .catalog-category__subcategories { grid-template-columns: 1fr; }
  .catalog-category__subcategories button:first-child { grid-column: auto; }
  .expert { grid-template-columns: 130px 1fr; }
  .expert__accent { width: 130px; height: 130px; }
  .expert__accent span { font-size: 2.3rem; }
  .expert > .button { grid-column: 2; justify-self: start; }
  .store-card__actions { align-items: stretch; }
  .store-card__map { width: 100%; margin-left: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__contact { grid-column: auto; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 22px); }
  .topbar__inner { min-height: 32px; font-size: .68rem; }
  .topbar__links { gap: 12px; }
  .brand strong { font-size: .84rem; }
  .brand small { font-size: .57rem; }
  .icon-button { padding-inline: 5px; }
  .icon-button svg { width: 21px; }
  .search { padding-inline: 11px; }
  .search kbd { display: none; }
  .search-suggestion { grid-template-columns: 52px minmax(0, 1fr); gap: 9px; padding-inline: 10px; }
  .search-suggestion__image { width: 52px; height: 48px; }
  .search-suggestion > b { grid-column: 2; margin-top: -4px; color: var(--orange); }
  .hero { padding-top: 16px; }
  .hero__primary { min-height: 620px; }
  .hero__copy { padding: 34px 23px; }
  .hero h1 { font-size: clamp(2.4rem, 13.5vw, 4.1rem); }
  .hero__copy > p { max-width: 92%; font-size: .91rem; }
  .hero__product { inset: auto -5% 0 28%; height: 250px; }
  .hero__label { right: 20px; bottom: 18px; }
  .hero__side { grid-template-columns: 1fr; }
  .promo { min-height: 220px; padding: 28px 24px; }
  .benefits { grid-template-columns: 1fr; }
  .benefits > div { min-height: 82px; border-right: 0; border-bottom: 1px solid var(--line); }
  .benefits > div:last-child { border-bottom: 0; }
  .categories, .catalog { padding-top: 70px; }
  .section-heading { align-items: flex-start; }
  .section-heading > a { display: none; }
  .section-heading h2 { font-size: 2.25rem; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card--wide { grid-column: auto; }
  .category-card { min-height: 285px; }
  .catalog__tools { align-items: stretch; flex-direction: column; padding-block: 12px; }
  .catalog-directory__title { align-items: flex-start; flex-direction: column; gap: 2px; }
  .sort { justify-content: space-between; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card { padding: 13px; }
  .product-card__image { height: 160px; flex-basis: 160px; }
  .product-card__image img { inset: 10px; width: calc(100% - 20px); height: calc(100% - 20px); max-width: calc(100% - 20px); max-height: calc(100% - 20px); }
  .compare-check span { display: none; }
  .product-card h3 { min-height: 61px; font-size: .84rem; }
  .product-card__meta { display: none; }
  .product-card__bottom { align-items: center; }
  .price { font-size: .94rem; white-space: normal; }
  .add-button { width: 40px; height: 40px; }
  .expert { grid-template-columns: 1fr; gap: 25px; margin-bottom: 70px; padding: 32px 24px; }
  .expert__accent { width: 96px; height: 96px; }
  .expert__accent span { font-size: 1.8rem; }
  .expert > .button { grid-column: auto; justify-self: stretch; }
  .stores { padding-bottom: 70px; }
  .stores__heading { display: block; }
  .stores__heading > p { margin-top: 14px; }
  .stores__grid { grid-template-columns: 1fr; }
  .store-card h3 { margin-top: 25px; }
  .store-card__actions .button { flex: 1 1 120px; }
  .footer__grid { grid-template-columns: 1fr; gap: 38px; }
  .footer__bottom { align-items: flex-start; flex-direction: column; padding-block: 18px; }
  .modal { padding: 50px 22px 26px; }
  .product-detail { grid-template-columns: 1fr; gap: 24px; }
  .product-detail__image { min-height: 240px; }
  .product-detail__image img { height: 220px; }
}

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


/* Checkout + reliable backend forms */
.cart-quantity { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; padding: 3px; background: var(--soft); }
.cart-quantity button { width: 28px; height: 28px; border: 0; background: white; font-size: 1rem; font-weight: 900; cursor: pointer; }
.cart-quantity button:hover { background: var(--ink); color: white; }
.cart-quantity strong { min-width: 20px; text-align: center; font-size: .76rem; }
.checkout-modal { width: min(680px, calc(100% - 32px)); }
.checkout-summary { display: grid; gap: 8px; margin: 22px 0 8px; padding: 16px; background: var(--soft); }
.checkout-summary__row, .checkout-summary__total { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; font-size: .76rem; }
.checkout-summary__row span { color: var(--muted); }
.checkout-summary__row small { color: var(--muted); font-weight: 700; }
.checkout-summary__total { margin-top: 6px; padding-top: 12px; border-top: 1px solid var(--line); font-size: .9rem; font-weight: 900; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-optional { color: var(--muted); font-weight: 500; }
.form-status { min-height: 1.1em; color: var(--muted); font-size: .72rem; font-weight: 700; text-align: center; }
.form-status:not(:empty) { padding: 10px 12px; background: var(--soft); }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.checkout-success { margin-top: 24px; padding: 24px; background: var(--soft); text-align: center; }
.checkout-success strong { display: block; margin-bottom: 10px; font-size: 1.25rem; }
.checkout-success p { margin: 0 0 18px; color: var(--muted); line-height: 1.55; }

@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
  .checkout-summary__row, .checkout-summary__total { gap: 10px; }
}
