:root { --accent: #d62828; --accent-dark: color-mix(in srgb, var(--accent) 78%, black); --accent-soft: color-mix(in srgb, var(--accent) 9%, white); --ink: #14181d; --muted: #5b6470; --line: #e3e6ea; --dark: #14171c; color-scheme: light; }
* { box-sizing: border-box; }
body { margin: 0; background: #f2f3f5; color: var(--ink); font: 400 16px/1.45 'Inter', system-ui, sans-serif; -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
.load { display: grid; place-items: center; min-height: 60vh; } .spin { width: 30px; height: 30px; border-radius: 50%; border: 3px solid #d9dde2; border-top-color: var(--accent); animation: r .7s linear infinite; } @keyframes r { to { transform: rotate(360deg); } }
header.top { background: var(--dark); color: #fff; padding: 22px 16px 26px; position: relative; overflow: hidden; }
header.top::after { content: ''; position: absolute; right: -50px; top: -20px; bottom: -20px; width: 130px; background: var(--accent); transform: skewX(-18deg); }
header.top::before { content: ''; position: absolute; right: 90px; top: -20px; bottom: -20px; width: 10px; background: var(--accent); opacity: .5; transform: skewX(-18deg); z-index: 1; }
.wrap { max-width: 860px; margin: 0 auto; padding: 0 16px; position: relative; z-index: 2; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.brand .mark { width: 46px; height: 46px; border-radius: 11px; background: var(--accent); display: grid; place-items: center; overflow: hidden; flex: none; } .brand .mark img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.brand b { display: block; font: 800 24px/1 'Barlow Condensed'; letter-spacing: .07em; text-transform: uppercase; } .brand small { display: block; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: #a6aeb8; margin-top: 3px; }
h1 { font: 800 34px/1 'Barlow Condensed'; text-transform: uppercase; letter-spacing: .03em; margin: 22px 0 4px; }
.sub { color: #c4cbd3; font-size: 14px; }
.searchwrap { background: #f2f3f5; padding: 14px 0 10px; position: sticky; top: 0; z-index: 20; }
.lab { font: 700 12px 'Inter'; letter-spacing: .16em; color: var(--muted); margin: 0 2px 6px; }
.search { position: relative; } .search svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; stroke: #8a929c; fill: none; stroke-width: 2; stroke-linecap: round; }
.search input { width: 100%; min-height: 56px; padding: 0 46px 0 48px; border-radius: 16px; border: 2px solid transparent; background: #fff; font: 500 17px 'Inter'; box-shadow: 0 2px 10px rgba(0, 0, 0, .08); outline: none; }
.search input:focus { border-color: var(--accent); }
.search button { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border: 0; background: none; font-size: 22px; color: var(--muted); }
.chips { display: flex; gap: 8px; overflow-x: auto; padding: 10px 0 2px; scrollbar-width: none; } .chips::-webkit-scrollbar { display: none; }
.chip { flex: none; padding: 8px 14px; border-radius: 99px; border: 1.5px solid var(--line); background: #fff; font: 600 14px 'Inter'; color: var(--muted); text-decoration: none; cursor: pointer; white-space: nowrap; }
.chip.on { background: var(--dark); border-color: var(--dark); color: #fff; }
main { padding: 6px 0 40px; }
.cat { margin: 14px 0; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 1px 2px rgba(0, 0, 0, .05), 0 4px 14px rgba(0, 0, 0, .05); scroll-margin-top: 150px; }
.cat h2 { margin: 0; padding: 14px 16px; font: 800 21px/1 'Barlow Condensed'; text-transform: uppercase; letter-spacing: .05em; display: flex; align-items: center; gap: 10px; border-bottom: 3px solid var(--accent); }
.cat h2 svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cat .cd { padding: 10px 16px 0; color: var(--muted); font-size: 14px; }
.item { display: grid; grid-template-columns: 1fr auto; gap: 4px 14px; padding: 14px 16px; border-top: 1px solid #eef0f2; align-items: start; }
.item:first-of-type { border-top: 0; }
.item .n { font-weight: 600; } .item .d { grid-column: 1; color: var(--muted); font-size: 14px; }
.item .p { grid-row: 1; grid-column: 2; text-align: right; font-weight: 800; font-size: 18px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.p .pre { display: block; font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; line-height: 1.1; }
.p .un { font-size: 12px; font-weight: 500; color: var(--muted); } .p .old { display: block; text-decoration: line-through; color: #9aa1aa; font-weight: 500; font-size: 13px; }
.p.promo { color: var(--accent-dark); } .p .tag { display: inline-block; background: var(--accent); color: #fff; font-size: 10px; letter-spacing: .06em; padding: 2px 6px; border-radius: 4px; margin-right: 4px; vertical-align: 2px; }
.p .sp { font-size: 14px; font-weight: 600; color: var(--muted); } .p .vat { display: block; font-size: 11px; font-weight: 500; color: var(--muted); }
.item .q { grid-column: 1 / -1; margin-top: 6px; }
.wa { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 0 16px; border-radius: 11px; background: #fff; border: 1.5px solid #1fa855; color: #12803f; font: 700 13px 'Inter'; letter-spacing: .04em; text-decoration: none; }
.wa:hover { background: #e9f8ef; } .wa svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.brand .mark svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
mark { background: #ffe9a8; border-radius: 3px; color: inherit; }
.empty { text-align: center; padding: 34px 16px; color: var(--muted); }
.foot { background: var(--dark); color: #c4cbd3; padding: 26px 0 40px; font-size: 14px; } .foot a { color: #fff; }
.foot .notes { margin: 0 0 18px; padding: 0; list-style: none; display: grid; gap: 6px; font-size: 13px; color: #a6aeb8; } .foot .notes li::before { content: '•'; color: var(--accent); margin-right: 8px; }
.foot .contacts { display: grid; gap: 8px; margin-bottom: 16px; }
.btns { display: flex; gap: 10px; flex-wrap: wrap; } .btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px; border-radius: 12px; background: var(--accent); color: #fff !important; font-weight: 700; text-decoration: none; border: 0; } .btn.alt { background: transparent; border: 1.5px solid #4a515b; }
.upd { color: #8a929c; font-size: 12px; margin-top: 14px; }
.err { text-align: center; padding: 60px 20px; }
@media (min-width: 700px) { h1 { font-size: 44px; } .item { padding: 14px 20px; } }
