:root {
  --ink: #101419;
  --ink-2: #1b2229;
  --ink-3: #2a343e;
  --paper: #ffffff;
  --surface: #f4f6f7;
  --surface-2: #eaedef;
  --line: #dfe4e7;
  --muted: #68737d;
  --accent: #c7f737;
  --accent-deep: #a9d51d;
  --success: #209765;
  --danger: #d54242;
  --sale: #c9343c;
  --sale-soft: #fff0f1;
  --warning: #d98614;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 45px rgba(16, 20, 25, .09);
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Manrope, Arial, sans-serif; color: var(--ink); background: var(--paper); line-height: 1.5; -webkit-font-smoothing: antialiased; }
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
:focus-visible { outline: 3px solid rgba(139, 176, 24, .52); outline-offset: 3px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.site-shell { overflow: clip; }
.eyebrow { display: inline-block; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-weight: 800; font-size: 11px; }
.eyebrow--light { color: rgba(255,255,255,.62); }
.button { border: 0; border-radius: 11px; min-height: 48px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 800; transition: transform .18s ease, background .18s ease, opacity .18s ease; }
.button:hover { transform: translateY(-1px); }
.button:disabled, .button.is-disabled { opacity: .48; pointer-events: none; }
.button--primary { background: var(--ink); color: #fff; }
.button--primary:hover { background: var(--ink-3); }
.button--accent { background: var(--accent); color: var(--ink); }
.button--accent:hover { background: #d6ff5f; }
.button--ghost { background: var(--surface); color: var(--ink); }
.button--full { width: 100%; }
.button--grow { flex: 1; }
.button--large { min-height: 56px; }
.button--small { min-height: 36px; padding: 0 13px; font-size: 12px; }

.topbar { background: #080b0e; color: rgba(255,255,255,.72); font-size: 12px; }
.topbar__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; }
.topbar__links { display: flex; gap: 24px; }
.topbar a:hover { color: #fff; }
.header { background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 30; box-shadow: 0 8px 24px rgba(16,20,25,.035); backdrop-filter: blur(14px); }
.header__inner { min-height: 82px; display: flex; align-items: center; gap: 42px; }
.brand { flex: 0 0 auto; }
.brand img { width: 192px; }
.nav { display: flex; align-items: center; gap: 28px; margin-right: auto; }
.nav a { font-size: 14px; font-weight: 700; position: relative; }
.nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--accent-deep); transition: right .2s; }
.nav a:hover::after { right: 0; }
.header__actions { display: flex; align-items: center; gap: 18px; }
.phone-link { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.25; }
.phone-link__label { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.phone-link strong { font-size: 14px; }
.cart-button { border: 0; min-height: 44px; padding: 0 14px; border-radius: 10px; background: var(--surface); display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; }
.cart-button:hover { background: var(--surface-2); }
.cart-button svg { width: 21px; height: 21px; }
.cart-count { display: grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 20px; background: var(--accent); font-size: 11px; }
.menu-button { display: none; border: 0; padding: 8px; background: transparent; }
.menu-button span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px; }

.hero { position: relative; background: var(--ink); color: #fff; min-height: 620px; }
.hero::before { content: ''; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(90deg, #000, transparent 72%); }
.hero__grid { min-height: 620px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; position: relative; }
.hero__content { padding: 76px 0 118px; position: relative; z-index: 2; }
.hero h1 { margin: 14px 0 24px; font-size: clamp(50px, 6vw, 86px); line-height: .98; letter-spacing: -.055em; max-width: 760px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__content > p { margin: 0; max-width: 580px; color: rgba(255,255,255,.68); font-size: 18px; line-height: 1.7; }
.hero__actions { margin-top: 34px; display: flex; align-items: center; gap: 28px; }
.hero-phone { display: flex; flex-direction: column; }
.hero-phone span { color: rgba(255,255,255,.55); font-size: 12px; }
.hero-phone strong { font-size: 17px; }
.hero__stats { display: flex; gap: 42px; margin-top: 56px; }
.hero__stats div { display: flex; flex-direction: column; gap: 2px; }
.hero__stats strong { font-size: 21px; }
.hero__stats span { color: rgba(255,255,255,.5); font-size: 11px; }
.hero__visual { min-height: 620px; position: relative; display: grid; place-items: center; }
.hero__visual > img { width: 690px; max-width: none; position: absolute; z-index: 2; right: -62px; top: -25px; filter: drop-shadow(0 40px 50px rgba(0,0,0,.42)); }
.hero__orb { width: 530px; height: 530px; border-radius: 50%; background: radial-gradient(circle at 35% 28%, #d6ff5f 0, #b2df28 32%, #6e8a12 65%, transparent 66%); position: absolute; opacity: .95; right: -20px; }
.hero__floating { position: absolute; z-index: 3; padding: 14px 18px; min-width: 198px; background: rgba(255,255,255,.94); color: var(--ink); border-radius: 12px; box-shadow: var(--shadow); backdrop-filter: blur(12px); display: flex; flex-direction: column; }
.hero__floating span { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.hero__floating strong { font-size: 14px; }
.hero__floating--top { right: 8px; top: 112px; }
.hero__floating--bottom { left: 18px; bottom: 118px; }

.finder-wrap { position: relative; margin-top: -64px; z-index: 5; }
.finder { background: #fff; box-shadow: 0 24px 60px rgba(0,0,0,.14); border-radius: var(--radius); padding: 24px; display: grid; grid-template-columns: 240px 1fr auto; gap: 22px; align-items: end; }
.finder__heading { display: flex; gap: 14px; align-items: center; }
.finder__heading h2 { font-size: 20px; line-height: 1.15; margin: 4px 0 0; }
.finder__heading p { margin: 4px 0 0; color: var(--muted); font-size: 10px; line-height: 1.35; }
.finder__icon { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: var(--ink); color: var(--accent); flex: 0 0 auto; }
.finder__icon svg { width: 24px; }
.finder__fields { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.finder label, .filters-panel label, .checkout-card label, .admin-login label, .admin-product-form label { display: flex; flex-direction: column; gap: 7px; }
.finder label > span, .filters-panel label > span, .checkout-card label > span, .admin-login label > span, .admin-product-form label > span { color: var(--muted); font-size: 11px; font-weight: 700; }
select, input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); outline: none; transition: border .18s, box-shadow .18s; }
select, input { min-height: 46px; padding: 0 13px; }
textarea { padding: 13px; resize: vertical; }
select:focus, input:focus, textarea:focus { border-color: #9bbd2d; box-shadow: 0 0 0 3px rgba(199,247,55,.22); }
.finder__submit { min-height: 52px; }

.benefits { padding: 48px 0 22px; }
.benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.benefits article { min-height: 90px; display: flex; align-items: center; gap: 14px; padding: 16px 22px; border-right: 1px solid var(--line); }
.benefits article:first-child { padding-left: 0; }
.benefits article:last-child { border-right: 0; }
.benefit-icon { width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center; background: rgba(199,247,55,.25); }
.benefit-icon svg { width: 22px; }
.benefits h3 { font-size: 13px; margin: 0 0 3px; }
.benefits p { font-size: 11px; color: var(--muted); margin: 0; }

.catalog-section { padding: 76px 0 100px; background: var(--surface); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.section-heading h1, .section-heading h2 { margin: 5px 0 0; font-size: clamp(30px, 4vw, 46px); line-height: 1.08; letter-spacing: -.035em; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 13px; }
.section-heading--center { text-align: center; justify-content: center; }
.catalog-layout { display: grid; grid-template-columns: 252px 1fr; gap: 30px; align-items: start; }
.filters-panel { background: #fff; border-radius: var(--radius-sm); padding: 20px; position: sticky; top: 100px; box-shadow: 0 1px 0 rgba(0,0,0,.03); }
.filters-panel form { display: flex; flex-direction: column; gap: 18px; }
.filters-panel__header { display: flex; align-items: center; justify-content: space-between; }
.filters-panel__header h3 { margin: 0; font-size: 16px; }
.filters-panel__header a { font-size: 11px; color: var(--muted); text-decoration: underline; }
.search-field div { position: relative; }
.search-field svg { position: absolute; left: 12px; top: 13px; width: 19px; color: var(--muted); }
.search-field input { padding-left: 39px; }
.filter-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.filters-panel fieldset { border: 0; border-top: 1px solid var(--line); padding: 17px 0 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.filters-panel legend { font-size: 12px; font-weight: 800; margin-bottom: 10px; }
.radio { flex-direction: row !important; align-items: center; gap: 9px !important; cursor: pointer; }
.radio input { width: 16px; min-height: 16px; accent-color: var(--ink); }
.radio span { color: var(--ink) !important; font-size: 12px !important; font-weight: 600 !important; }
.catalog-toolbar { min-height: 48px; display: flex; align-items: center; justify-content: flex-end; margin-bottom: 16px; }
.sort-form label { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 11px; }
.sort-form select { width: 175px; min-height: 40px; }
.filter-mobile-button { display: none; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-card { background: #fff; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid transparent; transition: transform .2s, box-shadow .2s, border-color .2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line); }
.product-card__image { display: grid; place-items: center; height: 270px; background: linear-gradient(145deg, #f5f7f8, #e8ecee); position: relative; overflow: hidden; }
.product-card__image::after { content: ''; width: 180px; height: 26px; border-radius: 50%; background: rgba(0,0,0,.14); filter: blur(9px); position: absolute; bottom: 23px; }
.product-card__image img { width: 244px; position: relative; z-index: 1; transition: transform .28s ease; }
.product-card:hover .product-card__image img { transform: rotate(2deg) scale(1.035); }
.badge { position: absolute; z-index: 2; top: 14px; left: 14px; background: var(--accent); border-radius: 20px; padding: 6px 10px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.badge--large { top: 24px; left: 24px; padding: 8px 14px; }
.sale-badge { position: absolute; z-index: 2; top: 14px; right: 14px; border: 1px solid rgba(201,52,60,.18); border-radius: 20px; padding: 6px 9px; background: var(--sale-soft); color: var(--sale); font-size: 10px; font-weight: 800; letter-spacing: .02em; }
.sale-badge--large { top: 24px; right: 24px; padding: 8px 12px; font-size: 12px; }
.product-card__body { padding: 18px; }
.product-card__meta { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.product-card__meta span, .product-info__tags span { background: var(--surface); border-radius: 5px; padding: 4px 7px; color: var(--muted); font-size: 9px; font-weight: 700; }
.product-card h3 { font-size: 15px; line-height: 1.35; margin: 0 0 7px; min-height: 40px; }
.product-card h3 span { font-weight: 500; }
.product-size { font-size: 20px; font-weight: 800; letter-spacing: -.025em; }
.product-size small { font-size: 10px; color: var(--muted); font-weight: 700; }
.stock { color: var(--success); font-size: 10px; font-weight: 700; display: flex; align-items: center; gap: 6px; margin-top: 8px; }
.stock i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.stock--low { color: var(--warning); }
.stock--out { color: var(--danger); }
.product-card__bottom { border-top: 1px solid var(--line); margin-top: 16px; padding-top: 15px; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.price-block { display: grid; grid-template-columns: auto auto; align-items: baseline; column-gap: 8px; }
.price-block del { grid-column: 1 / -1; color: var(--sale); font-size: 11px; font-weight: 700; text-decoration-thickness: 1.5px; text-decoration-color: currentColor; opacity: .86; }
.price-block strong { font-size: 20px; letter-spacing: -.03em; }
.price-block span { font-size: 9px; color: var(--muted); }
.add-to-cart { height: 42px; border: 0; border-radius: 9px; padding: 0 13px; background: var(--ink); color: #fff; display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 800; }
.add-to-cart:hover { background: var(--ink-3); }
.add-to-cart:disabled { opacity: .48; }
.add-to-cart svg { width: 17px; }
.empty-state { background: #fff; border-radius: var(--radius); padding: 70px 30px; text-align: center; }
.empty-state__icon { font-size: 52px; color: var(--muted); }
.empty-state h3 { font-size: 25px; margin: 10px 0; }
.empty-state p { color: var(--muted); margin: 0 0 24px; }

.how-it-works { padding: 96px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 58px; left: 17%; right: 17%; border-top: 1px dashed #c9cfd3; }
.steps-grid article { text-align: center; position: relative; padding: 0 36px; }
.steps-grid article > span { position: absolute; top: 0; right: calc(50% - 54px); width: 23px; height: 23px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; font-size: 8px; font-weight: 800; z-index: 2; }
.step-icon { width: 86px; height: 86px; margin: 14px auto 20px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); position: relative; z-index: 1; }
.step-icon svg { width: 34px; }
.steps-grid h3 { margin: 0 0 8px; font-size: 18px; }
.steps-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.consultation { padding: 0 0 96px; }
.consultation__inner { min-height: 260px; background: var(--ink); color: #fff; border-radius: 24px; padding: 54px 62px; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; overflow: hidden; }
.consultation__inner::after { content: ''; width: 280px; height: 280px; border: 48px solid rgba(199,247,55,.12); border-radius: 50%; position: absolute; right: 12%; top: -110px; }
.consultation h2 { margin: 6px 0 12px; font-size: 36px; letter-spacing: -.035em; }
.consultation p { margin: 0; color: rgba(255,255,255,.6); max-width: 700px; }
.consultation__action { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-end; flex: 0 0 auto; }
.consultation__action a { color: var(--accent); font-size: 26px; font-weight: 800; }
.consultation__action span { color: rgba(255,255,255,.5); font-size: 11px; }

.footer { background: #0b0e11; color: rgba(255,255,255,.65); padding: 68px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 70px; }
.footer__grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer__grid img { width: 190px; margin-bottom: 8px; }
.footer__grid p { max-width: 310px; font-size: 12px; line-height: 1.8; margin: 0; }
.footer h3 { color: #fff; font-size: 12px; margin: 0 0 8px; }
.footer a, .footer span { font-size: 11px; }
.footer a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; margin-top: 50px; display: flex; justify-content: space-between; }

.cart-drawer { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.cart-drawer.open { visibility: visible; }
.cart-drawer__backdrop { position: absolute; inset: 0; border: 0; background: rgba(6,8,10,.62); opacity: 0; transition: opacity .25s; }
.cart-drawer.open .cart-drawer__backdrop { opacity: 1; }
.cart-drawer__panel { position: absolute; right: 0; top: 0; bottom: 0; width: min(460px, 100%); background: #fff; transform: translateX(100%); transition: transform .25s ease; display: flex; flex-direction: column; box-shadow: -22px 0 50px rgba(0,0,0,.18); }
.cart-drawer.open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__header { padding: 24px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.cart-drawer__header h2 { margin: 2px 0 0; font-size: 28px; }
.icon-button { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: #fff; font-size: 22px; }
.cart-drawer__items { flex: 1; padding: 10px 24px; overflow-y: auto; }
.cart-item { padding: 16px 0; display: flex; gap: 14px; border-bottom: 1px solid var(--line); }
.cart-item > img { width: 88px; height: 88px; object-fit: contain; background: var(--surface); border-radius: 10px; }
.cart-item__content { flex: 1; }
.cart-item__top { display: flex; justify-content: space-between; gap: 10px; }
.cart-item__top div { display: flex; flex-direction: column; }
.cart-item__top strong { font-size: 12px; }
.cart-item__top span { color: var(--muted); font-size: 11px; }
.cart-item__top button { border: 0; background: transparent; color: var(--muted); font-size: 21px; }
.cart-item__bottom { margin-top: 14px; display: flex; justify-content: space-between; align-items: center; }
.cart-item__bottom > strong { font-size: 14px; }
.mini-qty { display: grid; grid-template-columns: 28px 36px 28px; border: 1px solid var(--line); border-radius: 7px; overflow: hidden; }
.mini-qty button { border: 0; background: var(--surface); }
.mini-qty input { min-height: 30px; height: 30px; padding: 0; border: 0; border-radius: 0; text-align: center; font-size: 11px; }
.cart-drawer__footer { padding: 22px 24px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 15px; }
.cart-summary-row strong { font-size: 20px; }
.cart-delivery-note { background: rgba(199,247,55,.18); padding: 10px; border-radius: 8px; margin: 0 0 4px; font-size: 10px; text-align: center; }
.cart-empty { height: 100%; min-height: 350px; display: grid; place-content: center; text-align: center; }
.cart-empty > div { font-size: 54px; }
.cart-empty h3 { margin: 6px 0; }
.cart-empty p { color: var(--muted); font-size: 12px; max-width: 230px; }
.toast-stack { position: fixed; right: 22px; bottom: 22px; z-index: 150; display: flex; flex-direction: column; gap: 10px; }
.toast { transform: translateY(15px); opacity: 0; transition: .22s; padding: 13px 16px; border-radius: 10px; background: var(--ink); color: #fff; box-shadow: var(--shadow); display: flex; gap: 10px; align-items: center; max-width: 340px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast > span { width: 23px; height: 23px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: var(--ink); font-weight: 800; }
.toast p { margin: 0; font-size: 12px; }
.toast--error > span { background: var(--danger); color: #fff; }

.breadcrumbs { border-bottom: 1px solid var(--line); }
.breadcrumbs .container { min-height: 48px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 10px; }
.breadcrumbs strong { color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.product-page { padding: 56px 0 76px; }
.product-page__grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 70px; align-items: center; }
.product-gallery { min-height: 610px; background: linear-gradient(145deg, #f4f6f7, #e7ebed); border-radius: 24px; display: grid; place-items: center; position: relative; overflow: hidden; }
.product-gallery::before { content: ''; width: 390px; height: 390px; border: 1px solid rgba(16,20,25,.08); border-radius: 50%; position: absolute; }
.product-gallery > img { width: 520px; position: relative; z-index: 1; filter: drop-shadow(0 35px 35px rgba(0,0,0,.2)); }
.product-gallery__note { position: absolute; bottom: 25px; left: 25px; background: rgba(255,255,255,.9); border-radius: 10px; padding: 12px 14px; display: flex; gap: 9px; align-items: center; z-index: 2; }
.product-gallery__note svg { width: 24px; color: var(--success); }
.product-gallery__note span { font-size: 9px; color: var(--muted); }
.product-gallery__note strong { color: var(--ink); font-size: 11px; }
.product-info h1 { font-size: clamp(38px, 5vw, 64px); letter-spacing: -.055em; line-height: 1; margin: 8px 0 8px; }
.product-info__size { font-size: 30px; font-weight: 800; }
.product-info__size span { color: var(--muted); font-size: 13px; }
.product-info__tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 15px 0 23px; }
.product-info__description { color: var(--muted); line-height: 1.75; font-size: 14px; }
.spec-table { border: 1px solid var(--line); border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); margin: 28px 0; overflow: hidden; }
.spec-table div { padding: 14px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.spec-table div:last-child { border: 0; }
.spec-table span { color: var(--muted); font-size: 9px; }
.spec-table strong { font-size: 13px; }
.product-buybox { background: var(--surface); border: 1px solid #e7ebed; border-radius: 16px; padding: 22px; }
.product-buybox__top { display: flex; justify-content: space-between; align-items: end; }
.price-block--large strong { font-size: 34px; }
.price-block--large del { font-size: 13px; }
.saving-note { display: inline-flex; margin-top: 7px; border-radius: 6px; padding: 4px 7px; background: var(--sale-soft); color: #9f252d; font-size: 10px; font-weight: 700; }
.product-buybox__actions { display: flex; gap: 10px; margin-top: 20px; }
.quantity-picker { display: grid; grid-template-columns: 42px 46px 42px; border: 1px solid var(--line); background: #fff; border-radius: 10px; overflow: hidden; }
.quantity-picker button { border: 0; background: #fff; font-size: 18px; }
.quantity-picker input { padding: 0; border: 0; min-height: 52px; border-radius: 0; text-align: center; font-weight: 700; }
.quantity-picker input::-webkit-inner-spin-button { appearance: none; }
.quantity-picker.is-disabled { opacity: .46; }
.product-buybox__features { display: flex; gap: 20px; color: var(--muted); font-size: 9px; margin-top: 14px; }
.product-details { background: var(--ink); color: #fff; padding: 80px 0; }
.product-details__grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 100px; align-items: center; }
.product-details h2 { font-size: 38px; letter-spacing: -.04em; line-height: 1.15; margin: 8px 0 18px; max-width: 650px; }
.product-details article p { color: rgba(255,255,255,.62); line-height: 1.8; }
.product-details aside { border: 1px solid rgba(255,255,255,.13); border-radius: 15px; padding: 26px; }
.product-details aside h3 { margin-top: 0; }
.product-details ul { padding: 0; margin: 0; list-style: none; display: flex; flex-direction: column; gap: 13px; }
.product-details li { color: rgba(255,255,255,.65); font-size: 12px; padding-left: 20px; position: relative; }
.product-details li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); }
.related-products { padding: 90px 0; background: var(--surface); }
.simple-page, .success-page { padding: 90px 0; min-height: 560px; }

.checkout-page { padding: 50px 0 90px; background: var(--surface); }
.checkout-page .section-heading h1 { font-size: 42px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 390px; gap: 28px; align-items: start; }
.checkout-form { display: flex; flex-direction: column; gap: 18px; }
.checkout-card { background: #fff; border-radius: 15px; padding: 26px; border: 1px solid #e9edef; }
.checkout-card__heading { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; }
.checkout-card__heading > span { width: 34px; height: 34px; border-radius: 50%; background: var(--ink); color: var(--accent); display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.checkout-card h2 { margin: 0; font-size: 19px; }
.checkout-card__heading p { margin: 1px 0 0; color: var(--muted); font-size: 10px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-grid__full { grid-column: 1 / -1; }
.delivery-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.choice-card { position: relative; cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card__box { height: 100%; min-height: 112px; border: 1px solid var(--line); border-radius: 10px; padding: 14px; display: flex; flex-direction: column; align-items: flex-start; gap: 5px; transition: border .18s, background .18s; }
.choice-card__box strong { font-size: 11px; }
.choice-card__box small { font-size: 9px; color: var(--muted); line-height: 1.45; }
.choice-card__box b { font-size: 9px; margin-top: auto; color: var(--success); }
.choice-card input:checked + .choice-card__box { border: 2px solid var(--ink); background: rgba(199,247,55,.1); padding: 13px; }
.choice-card--horizontal .choice-card__box { min-height: 78px; }
.checkout-summary { position: sticky; top: 100px; }
.checkout-summary > h2 { font-size: 20px; margin: 0 0 18px; }
.checkout-summary__items { max-height: 330px; overflow-y: auto; }
.checkout-item { display: grid; grid-template-columns: 62px 1fr auto; gap: 11px; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--line); }
.checkout-item__image { position: relative; }
.checkout-item__image img { width: 62px; height: 62px; object-fit: contain; background: var(--surface); border-radius: 9px; }
.checkout-item__image span { position: absolute; top: -4px; right: -4px; width: 19px; height: 19px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: #fff; font-size: 8px; }
.checkout-item > div:nth-child(2) { display: flex; flex-direction: column; }
.checkout-item strong { font-size: 10px; }
.checkout-item span { color: var(--muted); font-size: 9px; }
.checkout-item b { font-size: 11px; }
.checkout-summary__totals { padding: 17px 0; display: flex; flex-direction: column; gap: 9px; }
.checkout-summary__totals > div { display: flex; justify-content: space-between; font-size: 11px; }
.checkout-summary__total { border-top: 1px solid var(--line); padding-top: 15px; margin-top: 5px; }
.checkout-summary__total span { font-weight: 800; font-size: 13px; }
.checkout-summary__total strong { font-size: 21px; }
.consent { flex-direction: row !important; align-items: flex-start; margin: 6px 0 15px; }
.consent input { width: 16px; min-height: 16px; margin-top: 2px; accent-color: var(--ink); }
.consent span { font-size: 9px !important; line-height: 1.5; }
.consent a { text-decoration: underline; }
.form-error { background: #fff0f0; border: 1px solid #f1b7b7; color: #9d2626; border-radius: 9px; padding: 11px; font-size: 11px; margin-bottom: 10px; }
.checkout-summary__secure { text-align: center; color: var(--muted); font-size: 9px; margin: 12px 0 0; }
.checkout-empty { text-align: center; background: var(--surface); padding: 24px; border-radius: 10px; }
.checkout-empty p { margin: 0 0 8px; }
.checkout-empty a { text-decoration: underline; font-size: 11px; }
.success-page { background: var(--surface); }
.success-card { max-width: 680px; margin: 0 auto; background: #fff; border-radius: 22px; padding: 62px; text-align: center; box-shadow: var(--shadow); }
.success-card__icon { width: 74px; height: 74px; margin: 0 auto 20px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; font-size: 32px; font-weight: 800; }
.success-card h1 { font-size: 44px; margin: 8px 0 14px; }
.success-card p { color: var(--muted); }
.success-card p strong { color: var(--ink); }
.success-card__actions { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }

.content-page { padding: 66px 0 90px; }
.content-page__grid { display: grid; grid-template-columns: 260px 1fr; gap: 60px; }
.content-page aside { position: sticky; top: 20px; align-self: start; background: var(--surface); border-radius: 12px; padding: 20px; }
.content-page aside h3 { margin: 0 0 12px; font-size: 13px; }
.content-page aside a { display: block; color: var(--muted); font-size: 11px; padding: 7px 0; }
.content-page article { max-width: 780px; }
.content-page h1 { font-size: 48px; letter-spacing: -.045em; margin: 7px 0 25px; }
.content-page h2 { font-size: 24px; margin: 35px 0 12px; }
.content-page p, .content-page li { color: var(--muted); font-size: 14px; line-height: 1.8; }
.content-page ul { padding-left: 18px; }
.contact-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 25px; }
.contact-cards a, .contact-cards div { background: var(--surface); border-radius: 12px; padding: 20px; display: flex; flex-direction: column; }
.contact-cards span { color: var(--muted); font-size: 10px; }
.contact-cards strong { font-size: 15px; }

.admin-login-page { min-height: 100vh; background: var(--surface); }
.admin-login { min-height: 100vh; padding: 40px 20px; display: grid; place-content: center; gap: 24px; }
.admin-login > a { justify-self: center; }
.admin-login__card { width: min(430px, calc(100vw - 40px)); background: #fff; border-radius: 18px; padding: 35px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 16px; }
.admin-login__card h1 { margin: 0; font-size: 30px; }
.admin-login__card > p { margin: -10px 0 4px; color: var(--muted); font-size: 12px; }
.admin-login__back { text-align: center; color: var(--muted); font-size: 10px; }
.admin-body { background: var(--surface); min-height: 100vh; }
.admin-header { background: var(--ink); }
.admin-header .container { min-height: 70px; display: flex; align-items: center; justify-content: space-between; }
.admin-header nav { display: flex; gap: 22px; }
.admin-header nav a { color: rgba(255,255,255,.7); font-size: 11px; }
.admin-main { padding: 42px 0 80px; }
.admin-title { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
.admin-title h1 { margin: 4px 0 0; font-size: 36px; }
.admin-title > span { color: var(--muted); font-size: 11px; }
.admin-notice { border-radius: 10px; padding: 12px 15px; margin-bottom: 18px; font-size: 12px; }
.admin-notice--success { background: #e3f7ed; color: #146a45; }
.admin-notice--error { background: #fff0f0; color: #9d2626; }
.admin-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 25px; }
.admin-stats article { background: #fff; border-radius: 13px; padding: 20px; display: flex; flex-direction: column; }
.admin-stats span { color: var(--muted); font-size: 10px; }
.admin-stats strong { font-size: 25px; }
.admin-tabs { display: flex; gap: 7px; margin-bottom: 12px; }
.admin-tabs button { border: 0; border-radius: 9px; background: #fff; padding: 11px 17px; font-size: 11px; font-weight: 800; }
.admin-tabs button.active { background: var(--ink); color: #fff; }
.admin-panel { display: none; background: #fff; border-radius: 15px; padding: 24px; }
.admin-panel.active { display: block; }
.admin-panel__heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 20px; }
.admin-panel__heading h2 { margin: 0; font-size: 22px; }
.admin-panel__heading p { margin: 0; color: var(--muted); font-size: 10px; }
.admin-empty { padding: 70px; text-align: center; color: var(--muted); }
.admin-orders { display: flex; flex-direction: column; gap: 9px; }
.admin-order { border: 1px solid var(--line); border-radius: 11px; overflow: hidden; }
.admin-order__summary { min-height: 72px; padding: 12px 15px; display: grid; grid-template-columns: 1.05fr 1.1fr 1.4fr .75fr 150px 60px; gap: 12px; align-items: center; }
.admin-order__summary > div { display: flex; flex-direction: column; }
.admin-order__summary strong { font-size: 11px; }
.admin-order__summary span, .admin-order__summary a, .admin-order__summary small { color: var(--muted); font-size: 9px; }
.admin-order__summary select { min-height: 35px; font-size: 10px; }
.admin-order__toggle { border: 0; background: var(--surface); border-radius: 7px; min-height: 34px; font-size: 9px; }
.admin-order__details { display: none; grid-template-columns: 1fr 1fr; gap: 35px; background: var(--surface); padding: 19px; }
.admin-order.open .admin-order__details { display: grid; }
.admin-order__details h4 { font-size: 11px; margin: 0 0 8px; }
.admin-order__details p { display: flex; justify-content: space-between; margin: 5px 0; font-size: 9px; }
.admin-order__details span { color: var(--muted); }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 880px; }
.admin-table th { color: var(--muted); text-align: left; font-size: 9px; padding: 10px; border-bottom: 1px solid var(--line); }
.admin-table td { padding: 10px; border-bottom: 1px solid var(--line); font-size: 10px; }
.admin-table td:first-of-type { display: flex; flex-direction: column; }
.admin-table td:first-of-type span { color: var(--muted); }
.admin-table input[type="number"] { width: 90px; min-height: 36px; font-size: 10px; }
.admin-check { display: flex; flex-direction: row !important; align-items: center; gap: 5px !important; }
.admin-check input { width: 13px; min-height: 13px; }
.admin-check span { font-size: 9px !important; color: var(--muted) !important; }
.admin-product-form { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.admin-product-form__full { grid-column: 1 / -1; }

@media (max-width: 1120px) {
  .nav { gap: 16px; }
  .phone-link { display: none; }
  .hero__visual > img { right: -160px; }
  .finder { grid-template-columns: 200px 1fr; }
  .finder__submit { grid-column: 1 / -1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits article:nth-child(2) { border-right: 0; }
  .checkout-grid { grid-template-columns: 1fr 350px; }
  .delivery-options { grid-template-columns: 1fr; }
  .choice-card__box { min-height: 75px; }
  .admin-order__summary { grid-template-columns: 1fr 1fr 1fr 130px 58px; }
  .admin-order__summary > div:nth-child(3) { display: none; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar__links { display: none; }
  .header__inner { min-height: 70px; }
  .brand img { width: 160px; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 70px; background: #fff; padding: 20px; border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .cart-button > span:not(.cart-count) { display: none; }
  .menu-button { display: block; }
  .hero, .hero__grid { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { padding: 64px 0 62px; }
  .hero__visual { min-height: 430px; }
  .hero__visual > img { width: 560px; right: 50%; transform: translateX(50%); top: -85px; }
  .hero__orb { width: 410px; height: 410px; right: 50%; transform: translateX(50%); }
  .hero__floating--top { right: 0; top: 40px; }
  .hero__floating--bottom { left: 0; bottom: 55px; }
  .finder-wrap { margin-top: -26px; }
  .finder { grid-template-columns: 1fr; }
  .finder__fields { grid-template-columns: repeat(2, 1fr); }
  .finder__submit { grid-column: auto; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters-panel { display: none; position: static; }
  .filters-panel.open { display: block; }
  .catalog-toolbar { justify-content: space-between; }
  .filter-mobile-button { display: inline-flex; min-height: 40px; align-items: center; gap: 8px; border: 0; border-radius: 9px; background: var(--ink); color: #fff; padding: 0 14px; font-size: 11px; font-weight: 800; }
  .product-page__grid { grid-template-columns: 1fr; gap: 38px; }
  .product-gallery { min-height: 520px; }
  .product-details__grid { grid-template-columns: 1fr; gap: 40px; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .admin-stats { grid-template-columns: repeat(2,1fr); }
  .admin-order__summary { grid-template-columns: 1fr 1fr 110px 58px; }
  .admin-order__summary > div:nth-child(4) { display: none; }
  .admin-product-form { grid-template-columns: repeat(2,1fr); }
  .content-page__grid { grid-template-columns: 1fr; }
  .content-page aside { position: static; }
}

@media (max-width: 560px) {
  .topbar__inner { justify-content: center; }
  .header__inner { gap: 10px; }
  .header__actions { margin-left: auto; gap: 4px; }
  .brand img { width: 142px; }
  .hero h1 { font-size: 50px; }
  .hero__content > p { font-size: 15px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero__stats { gap: 18px; justify-content: space-between; }
  .hero__stats strong { font-size: 16px; }
  .hero__stats span { max-width: 90px; }
  .hero__visual { min-height: 360px; }
  .hero__visual > img { width: 465px; top: -50px; }
  .hero__orb { width: 330px; height: 330px; }
  .hero__floating { min-width: 155px; padding: 10px; }
  .hero__floating--top { top: 25px; }
  .hero__floating--bottom { bottom: 35px; }
  .finder { padding: 18px; }
  .finder__fields { grid-template-columns: 1fr 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .benefits article { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .catalog-section { padding-top: 55px; }
  .sort-form label { font-size: 0; }
  .sort-form select { width: 150px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card__image { height: 260px; }
  .steps-grid { grid-template-columns: 1fr; gap: 50px; }
  .steps-grid::before { display: none; }
  .consultation__inner { padding: 38px 26px; align-items: flex-start; flex-direction: column; }
  .consultation h2 { font-size: 30px; }
  .consultation__action { align-items: flex-start; }
  .consultation__action a { font-size: 22px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .product-gallery { min-height: 390px; }
  .product-gallery > img { width: 370px; }
  .product-gallery__note { bottom: 15px; left: 15px; }
  .product-info h1 { font-size: 44px; }
  .spec-table { grid-template-columns: repeat(2, 1fr); }
  .spec-table div:nth-child(2) { border-right: 0; }
  .spec-table div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .product-buybox__top { align-items: flex-start; flex-direction: column; gap: 8px; }
  .product-buybox__actions { flex-direction: column; }
  .quantity-picker { width: 100%; grid-template-columns: 1fr 1fr 1fr; }
  .product-buybox__features { flex-direction: column; gap: 5px; }
  .product-details h2 { font-size: 30px; }
  .form-grid, .payment-options { grid-template-columns: 1fr; }
  .success-card { padding: 38px 20px; }
  .success-card h1 { font-size: 34px; }
  .success-card__actions { flex-direction: column; }
  .contact-cards { grid-template-columns: 1fr; }
  .admin-title { align-items: flex-start; flex-direction: column; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .admin-tabs { overflow-x: auto; }
  .admin-panel { padding: 15px; }
  .admin-order__summary { grid-template-columns: 1fr 100px 52px; }
  .admin-order__summary > div:nth-child(2) { display: none; }
  .admin-order__details { grid-template-columns: 1fr; gap: 16px; }
  .admin-product-form { grid-template-columns: 1fr; }
  .admin-product-form__full { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
.admin-row-actions { display: flex; gap: 6px; align-items: center; }
.admin-panel--standalone { display: grid; }
.admin-edit-container { max-width: 1040px; }
.admin-product-preview { grid-row: span 3; background: var(--surface); border-radius: 12px; min-height: 220px; display: grid; place-items: center; padding: 12px; }
.admin-product-preview img { width: 180px; height: 180px; object-fit: contain; }
.admin-product-preview span { color: var(--muted); font-size: 9px; }
.admin-edit-options { display: flex; gap: 24px; }
.admin-edit-actions { display: flex; justify-content: flex-end; gap: 10px; border-top: 1px solid var(--line); padding-top: 18px; }
@media (max-width: 820px) { .admin-product-preview { grid-row: auto; grid-column: 1 / -1; } }
