:root { --brand: #e30613; --brand-600: #c8040f; --brand-700: #a80410; --brand-tint: #fdeaeb; --ink: #16181d; --ink-2: #3b414b; --muted: #626b78; --faint: #8b93a1; --line: #e7e9ee; --line-2: #eef0f4; --surface: #ffffff; --surface-2: #f5f6f9; --surface-3: #eef1f5; --dark: #17181c; --dark-2: #202228; --dark-3: #2b2e36; --on-dark: #eceef2; --on-dark-muted: #9aa1ad; --ok: #17935a; --ok-tint: #e6f4ec; --order: #6a52d6; --order-tint: #ece9fb; --warn: #d98a00; --r-lg: 18px; --r: 14px; --r-sm: 9px; --r-pill: 999px; --sh-1: 0 1px 2px rgba(22,24,29,.05), 0 1px 3px rgba(22,24,29,.06); --sh-2: 0 6px 18px -8px rgba(22,24,29,.18); --sh-3: 0 20px 48px -20px rgba(22,24,29,.28); --sh-red: 0 10px 26px -10px rgba(227,6,19,.45); --wrap: 1280px; --gap: clamp(16px, 2.4vw, 28px); --pad-y: clamp(48px, 6vw, 88px); --font: "Inter", ui-sans-serif, system-ui, "Segoe UI", Roboto, Arial, sans-serif; --ease: cubic-bezier(.2, .7, .2, 1); } *, *::before, *::after { box-sizing: border-box; } * { margin: 0; } html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; } @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } } @media (prefers-reduced-motion: no-preference) { @view-transition { navigation: auto; } ::view-transition-old(root) { animation: vt-out .24s ease both; } ::view-transition-new(root) { animation: vt-in .3s ease both; } } @keyframes vt-out { to { opacity: 0; transform: translateY(-6px); } } @keyframes vt-in { from { opacity: 0; transform: translateY(8px); } } h1, h2, h3, h4, .h-display, .h-section { text-wrap: balance; } p, .lead, blockquote, .prose li, figcaption { text-wrap: pretty; } html { scrollbar-color: var(--faint) var(--surface-2); } .ptable-wrap, .modal__box, .mega, .drawer__panel { scrollbar-width: thin; } @supports not (scrollbar-color: auto) { .ptable-wrap::-webkit-scrollbar, .modal__box::-webkit-scrollbar, .drawer__panel::-webkit-scrollbar { width: 10px; height: 10px; } .ptable-wrap::-webkit-scrollbar-thumb, .modal__box::-webkit-scrollbar-thumb, .drawer__panel::-webkit-scrollbar-thumb { background: var(--faint); border-radius: 999px; } .ptable-wrap::-webkit-scrollbar-track, .modal__box::-webkit-scrollbar-track, .drawer__panel::-webkit-scrollbar-track { background: var(--surface-2); } } .split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 360px); gap: clamp(22px, 3vw, 40px); align-items: start; } @media (max-width: 900px) { .split { grid-template-columns: 1fr; } } body { font-family: var(--font); color: var(--ink-2); background: var(--surface); line-height: 1.6; font-size: 16px; font-weight: 400; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; } img, svg, video { display: block; max-width: 100%; } img { height: auto; } a { color: inherit; text-decoration: none; } button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; } input, select, textarea { font: inherit; color: inherit; } ul, ol { list-style: none; padding: 0; } h1, h2, h3, h4 { color: var(--ink); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; } table { border-collapse: collapse; width: 100%; } :focus-visible { outline: 3px solid rgba(227,6,19,.45); outline-offset: 2px; border-radius: 4px; } .wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(16px, 4vw, 40px); } .section { padding-block: var(--pad-y); } .section--tint { background: var(--surface-2); } .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); } .eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--brand); border-radius: 2px; } .h-display { font-size: clamp(2.1rem, 5.2vw, 3.6rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.03; } .h-section { font-size: clamp(1.6rem, 3.4vw, 2.35rem); font-weight: 700; } .lead { font-size: clamp(1rem, 1.4vw, 1.12rem); color: var(--muted); max-width: 60ch; } .muted { color: var(--muted); } .section-head { margin-bottom: clamp(24px, 3.5vw, 40px); } .section-head .h-section { margin-top: 10px; } .btn { --bg: var(--brand); --fg: #fff; --bd: transparent; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border-radius: var(--r-sm); font-weight: 600; font-size: .95rem; letter-spacing: -.01em; white-space: nowrap; background: var(--bg); color: var(--fg); border: 1.5px solid var(--bd); transition: transform .16s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease); } .btn svg { width: 18px; height: 18px; flex: none; } .btn:hover { transform: translateY(-2px); } .btn:active { transform: translateY(0) scale(.99); } .btn--primary { --bg: var(--brand); --fg: #fff; box-shadow: var(--sh-red); } .btn--primary:hover { --bg: var(--brand-600); } .btn--dark { --bg: var(--dark); --fg: #fff; box-shadow: var(--sh-2); } .btn--dark:hover { --bg: var(--dark-2); } .btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--line); } .btn--ghost:hover { --bd: var(--ink); background: var(--surface-2); } .btn--light { --bg: #fff; --fg: var(--ink); --bd: transparent; box-shadow: var(--sh-2); } .btn--light:hover { background: #fff; } .btn--sm { padding: 9px 15px; font-size: .875rem; border-radius: 8px; } .btn--lg { padding: 16px 28px; font-size: 1.02rem; } .btn--block { width: 100%; } .badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: var(--r-pill); font-size: .78rem; font-weight: 600; letter-spacing: .01em; line-height: 1; } .badge--stock { background: var(--ok-tint); color: var(--ok); } .badge--order { background: var(--order-tint); color: var(--order); } .badge--original { background: var(--brand-tint); color: var(--brand); text-transform: uppercase; letter-spacing: .06em; font-size: .68rem; } .badge--dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; } .logo { display: inline-flex; align-items: center; gap: 12px; } .logo__mark { width: 46px; height: 50px; flex: none; } .logo__img { height: 30px; width: auto; } .logo__text { display: flex; flex-direction: column; line-height: 1; gap: 5px; } .logo__word { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; } .logo__word b { font-weight: 800; color: #dca01a; background: linear-gradient(180deg, #f9dd82 0%, #e6a51e 54%, #c8860a 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .logo__word span { color: #cdb063; font-weight: 700; } .logo__sub { font-size: .68rem; font-weight: 600; color: var(--muted); letter-spacing: .01em; margin-top: 3px; } .topbar { background: var(--dark); color: var(--on-dark-muted); font-size: .82rem; font-weight: 600; } .topbar__in { display: flex; align-items: center; gap: 22px; min-height: 42px; } .topbar__item { display: inline-flex; align-items: center; gap: 8px; } .topbar__item svg { width: 15px; height: 15px; color: var(--brand); flex: none; } .topbar__item a:hover, a.topbar__item:hover { color: #fff; } .topbar__phone { color: #fff; font-weight: 600; } .topbar__spacer { margin-left: auto; } .topbar__socials { display: inline-flex; align-items: center; gap: 8px; } .topbar__socials a { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; background: rgba(255,255,255,.07); color: var(--on-dark); transition: background .2s var(--ease), color .2s var(--ease); } .topbar__socials a:hover { background: var(--brand); color: #fff; } .topbar__socials svg { width: 16px; height: 16px; } .headerwrap { position: sticky; top: 0; z-index: 60; background: #fff; } .masthead { background: #fff; border-bottom: 1px solid var(--line); } .masthead__in { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 24px); min-height: 84px; padding-inline: clamp(16px, 2vw, 30px); } .masthead__nav { display: flex; align-items: center; gap: clamp(4px, 1vw, 14px); margin-right: auto; } .masthead__contact { display: flex; align-items: center; gap: 12px; } .masthead__contact .btn { padding: 11px 17px; font-size: .9rem; } .phones { text-align: right; line-height: 1.28; white-space: nowrap; } .phones a { display: block; font-weight: 700; color: var(--ink); font-size: 1.04rem; letter-spacing: -.01em; white-space: nowrap; } .phones a + a { color: var(--muted); font-size: .92rem; font-weight: 600; } .phones a:hover { color: var(--brand); } .phones small { display: block; font-size: .72rem; font-weight: 600; color: var(--brand); white-space: nowrap; } .phones small a { display: inline; font-size: .72rem; font-weight: 600; color: var(--brand); } .cart { display: inline-flex; align-items: center; gap: 10px; padding: 8px 6px; position: relative; } .cart__ico { position: relative; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: var(--surface-2); color: var(--ink); } .cart__ico svg { width: 20px; height: 20px; } .cart__count { position: absolute; top: -5px; right: -5px; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 999px; background: var(--brand); color: #fff; font-size: .68rem; font-weight: 700; display: grid; place-items: center; } .cart__meta { line-height: 1.2; } .cart__meta small { display: block; font-size: .72rem; color: var(--muted); font-weight: 600; } .cart__meta b { font-size: .98rem; color: var(--ink); } .nav { display: flex; align-items: center; gap: clamp(2px, .5vw, 9px); } .nav__link { display: inline-flex; align-items: center; gap: 6px; padding: 9px 10px; border-radius: 8px; font-weight: 600; font-size: .93rem; color: var(--ink-2); letter-spacing: -.01em; white-space: nowrap; transition: color .18s var(--ease), background .18s var(--ease); } .nav__link:hover, .nav__link[aria-current="page"] { color: var(--brand); } .nav__link svg { width: 15px; height: 15px; transition: transform .2s var(--ease); } .has-mega { position: relative; } .has-mega:hover .nav__link svg { transform: rotate(180deg); } .mega { position: absolute; top: calc(100% + 10px); left: 0; z-index: 70; width: min(760px, 86vw); background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-3); padding: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 26px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; } .has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); } .mega__col h4 { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); margin: 6px 0 8px; } .mega__item { display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 10px; transition: background .16s var(--ease); } .mega__item:hover { background: var(--surface-2); } .mega__item .ic { width: 34px; height: 34px; border-radius: 9px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; flex: none; } .mega__item .ic svg { width: 18px; height: 18px; } .mega__item b { display: block; font-size: .92rem; color: var(--ink); font-weight: 600; } .mega__item small { color: var(--muted); font-size: .78rem; } .burger { display: none; width: 46px; height: 46px; border-radius: 10px; background: var(--surface-2); place-items: center; } .burger svg { width: 24px; height: 24px; } .catbar { background: #fff; border-bottom: 1px solid var(--line); } .catbar__in { display: flex; align-items: center; gap: 16px; min-height: 62px; } .catbar__cat { position: relative; flex: none; } .catbar__trigger { display: inline-flex; align-items: center; gap: 10px; height: 46px; padding: 0 20px; background: var(--brand); color: #fff; border-radius: var(--r-sm); font-weight: 700; font-size: .95rem; letter-spacing: -.01em; transition: background .18s var(--ease); } .catbar__trigger:hover { background: var(--brand-600); } .catbar__trigger svg:first-child { width: 20px; height: 20px; } .catbar__trigger .chev { width: 16px; height: 16px; transition: transform .2s var(--ease); } .catbar__cat:hover .chev, .catbar__cat.is-open .chev { transform: rotate(180deg); } .catmenu { position: absolute; top: calc(100% + 12px); left: 0; z-index: 70; width: min(340px, calc(100vw - 24px)); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; } .catbar__cat:hover .catmenu, .catbar__cat.is-open .catmenu, .catbar__cat:focus-within .catmenu { opacity: 1; visibility: visible; transform: translateY(0); } .catmenu .rail { box-shadow: var(--sh-3); } .catmenu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; } .catbar__search { flex: 1 1 auto; min-width: 0; max-width: 620px; display: flex; align-items: center; gap: 8px; background: var(--surface-2); border: 1.5px solid var(--line); border-radius: var(--r-sm); padding-left: 14px; transition: border-color .2s var(--ease), box-shadow .2s; } .catbar__search:focus-within { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-tint); background: #fff; } .catbar__search > svg { width: 19px; height: 19px; color: var(--faint); flex: none; } .catbar__search input { flex: 1; border: 0; background: transparent; padding: 12px 6px; font-size: .93rem; min-width: 0; } .catbar__search input:focus { outline: none; } .catbar__search button { flex: none; margin: 4px; padding: 9px 22px; background: var(--ink); color: #fff; border-radius: 8px; font-weight: 600; font-size: .9rem; transition: background .18s var(--ease); } .catbar__search button:hover { background: var(--dark-2); } .catbar__links { display: flex; align-items: center; gap: 18px; flex: none; } .catbar__links a { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .9rem; color: var(--ink-2); white-space: nowrap; } .catbar__links a svg { width: 19px; height: 19px; color: var(--brand); } .catbar__links a:hover { color: var(--brand); } .catbar__fav { position: relative; } .catbar__fav span { min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: var(--surface-3); color: var(--ink-2); font-size: .72rem; font-weight: 700; display: grid; place-items: center; } .hero { position: relative; background: var(--dark); color: #fff; overflow: hidden; } .hero__bg { position: absolute; inset: 0; z-index: 0; } .hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; } .hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(103deg, rgba(14,15,19,.86) 0%, rgba(14,15,19,.62) 38%, rgba(14,15,19,.18) 66%, rgba(14,15,19,.32) 100%); } .hero__in { position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr .95fr; gap: 40px; align-items: center; min-height: clamp(460px, 60vh, 620px); padding-block: clamp(40px, 6vw, 76px); } .hero__kicker { display: inline-flex; align-items: center; gap: 9px; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); padding: 7px 14px; border-radius: var(--r-pill); backdrop-filter: blur(6px); } .hero h1 { color: #fff; font-size: clamp(2.3rem, 5.6vw, 4.1rem); letter-spacing: -.03em; line-height: 1.02; margin: 20px 0 0; } .hero h1 em { font-style: normal; color: var(--brand); } .hero__sub { margin-top: 18px; font-size: clamp(1rem, 1.5vw, 1.16rem); color: rgba(255,255,255,.82); max-width: 46ch; font-weight: 400; } .hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; } .hero__card { background: rgba(23,24,28,.72); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 26px; backdrop-filter: blur(14px); box-shadow: var(--sh-3); } .hero__card .lbl { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--on-dark-muted); font-weight: 600; } .hero__card .tel { display: flex; align-items: center; gap: 12px; margin-top: 10px; } .hero__card .tel svg { width: 22px; height: 22px; color: var(--brand); } .hero__card .tel b { font-size: 1.5rem; color: #fff; font-weight: 700; letter-spacing: -.01em; } .hero__card .tel b span { color: var(--brand); } .hero__card__row { display: flex; align-items: center; gap: 12px; padding-top: 18px; margin-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.8); font-size: .92rem; } .hero__card__row svg { width: 18px; height: 18px; color: var(--brand); flex: none; } .features { position: relative; z-index: 2; margin-top: -46px; } .features__grid { background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-2); display: grid; grid-template-columns: repeat(4, 1fr); } .feature { display: flex; gap: 14px; padding: 24px clamp(18px, 2vw, 28px); border-right: 1px solid var(--line-2); } .feature:last-child { border-right: 0; } .feature__ic { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; } .feature__ic svg { width: 24px; height: 24px; } .feature b { display: block; color: var(--ink); font-size: .98rem; font-weight: 700; } .feature small { color: var(--muted); font-size: .84rem; line-height: 1.4; } .rail { background: var(--dark); border-radius: var(--r); overflow: hidden; align-self: start; } .rail__head { display: flex; align-items: center; gap: 10px; padding: 18px 20px; color: #fff; font-weight: 700; font-size: .96rem; text-transform: uppercase; letter-spacing: .06em; border-bottom: 1px solid rgba(255,255,255,.08); } .rail__head svg { width: 20px; height: 20px; color: var(--brand); } .rail__list { padding: 8px; } .rail__item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 10px; color: var(--on-dark); font-weight: 600; font-size: .92rem; transition: background .16s var(--ease), color .16s; } .rail__item svg:first-child { width: 20px; height: 20px; color: var(--brand); flex: none; } .rail__item .arw { width: 16px; height: 16px; margin-left: auto; color: var(--on-dark-muted); transition: transform .16s var(--ease); } .rail__item:hover { background: rgba(255,255,255,.07); } .rail__item:hover .arw { transform: translateX(3px); color: #fff; } .rail__item[aria-current="true"] { background: var(--brand); color: #fff; } .rail__item[aria-current="true"] svg { color: #fff; } .rail-promo { margin-top: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px; text-align: center; } .rail-promo img { margin: 0 auto 6px; } .rail-promo b { display: block; color: var(--ink); font-weight: 700; } .rail-promo a { color: var(--brand); font-weight: 600; font-size: .9rem; } .rail-help { margin-top: 16px; background: var(--dark); border-radius: var(--r); padding: 22px; color: var(--on-dark); text-align: center; } .rail-help .ic { width: 46px; height: 46px; margin: 0 auto 10px; border-radius: 12px; background: rgba(255,255,255,.08); color: var(--brand); display: grid; place-items: center; } .rail-help b { color: #fff; display: block; } .rail-help small { display: block; color: var(--on-dark-muted); font-size: .85rem; margin: 6px 0 14px; } .articles-row { display: grid; grid-template-columns: 1fr; gap: 14px; } .article-line { display: grid; grid-template-columns: 132px 1fr auto; gap: 18px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 14px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease); } .article-line:hover { border-color: transparent; box-shadow: var(--sh-2); transform: translateY(-2px); } .article-line__img { width: 132px; height: 88px; border-radius: 10px; overflow: hidden; background: var(--surface-2); } .article-line__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.9) contrast(1.03); transition: filter .4s var(--ease); } .article-line:hover .article-line__img img { filter: grayscale(0); } .article-line h4 { font-size: 1.05rem; font-weight: 700; } .article-line p { color: var(--muted); font-size: .9rem; margin-top: 5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } .article-line__go { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--muted); transition: all .2s var(--ease); flex: none; } .article-line:hover .article-line__go { background: var(--brand); border-color: var(--brand); color: #fff; } .card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--gap); } .acard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s var(--ease), transform .2s var(--ease), border-color .2s; } .acard:hover { box-shadow: var(--sh-2); transform: translateY(-3px); border-color: transparent; } .acard__img { aspect-ratio: 16/10; background: var(--surface-2); overflow: hidden; position: relative; } .acard__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.9) contrast(1.03); transition: transform .5s var(--ease), filter .5s var(--ease); } .acard:hover .acard__img img { transform: scale(1.05); filter: grayscale(0); } .acard__tag { position: absolute; top: 12px; left: 12px; } .acard__body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; } .acard__meta { display: flex; align-items: center; gap: 12px; font-size: .8rem; color: var(--faint); font-weight: 600; } .acard__meta .cat { color: var(--brand); } .acard h3 { font-size: 1.12rem; margin: 10px 0 8px; } .acard p { color: var(--muted); font-size: .9rem; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; } .acard__more { margin-top: 14px; color: var(--brand); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; } .acard__more svg { width: 15px; height: 15px; transition: transform .2s var(--ease); } .acard:hover .acard__more svg { transform: translateX(4px); } .crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .84rem; color: var(--muted); font-weight: 600; } .crumbs a:hover { color: var(--brand); } .crumbs svg { width: 14px; height: 14px; color: var(--faint); } .crumbs [aria-current] { color: var(--ink); } .pagehead { position: relative; color: #fff; overflow: hidden; background: radial-gradient(1100px 420px at 90% -20%, rgba(227,6,19,.24), transparent 62%), linear-gradient(180deg, #1c1d22, #141519); } .pagehead::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 46px 46px; -webkit-mask-image: linear-gradient(95deg, #000, transparent 78%); mask-image: linear-gradient(95deg, #000, transparent 78%); } .pagehead__bg { position: absolute; inset: 0; z-index: 0; } .pagehead__bg img { width: 100%; height: 100%; object-fit: cover; } .pagehead__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,18,22,.93) 0%, rgba(17,18,22,.72) 46%, rgba(17,18,22,.42) 100%); } .pagehead:has(.pagehead__bg) .pagehead__badge { display: none; } .pagehead__in { position: relative; z-index: 1; padding-block: clamp(26px, 4vw, 44px); } .pagehead__in .crumbs { color: rgba(255,255,255,.7); margin-bottom: 18px; } .pagehead__in .crumbs a:hover { color: #fff; } .pagehead__in .crumbs svg { color: rgba(255,255,255,.4); } .pagehead__in .crumbs [aria-current] { color: #fff; } .pagehead h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.7rem); max-width: 22ch; } .pagehead p { color: rgba(255,255,255,.78); margin-top: 12px; max-width: 62ch; font-size: 1rem; } .pagehead__badge { position: absolute; right: 6%; top: 50%; transform: translateY(-50%); width: 128px; height: 128px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: var(--brand); } .pagehead__badge svg { width: 64px; height: 64px; } .layout { display: grid; grid-template-columns: 288px 1fr; gap: clamp(20px, 2.4vw, 34px); align-items: start; } .toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 20px; } .search { flex: 1 1 320px; position: relative; } .search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 19px; height: 19px; color: var(--faint); } .search input { width: 100%; padding: 14px 16px 14px 46px; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: #fff; font-size: .95rem; transition: border-color .2s var(--ease), box-shadow .2s; } .search input::placeholder { color: var(--faint); } .search input:focus { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-tint); outline: none; } .chips { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; } .chip { display: inline-flex; align-items: center; gap: 7px; padding: 10px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: #fff; font-weight: 600; font-size: .88rem; color: var(--ink-2); transition: border-color .2s var(--ease), background .2s; } .chip svg { width: 15px; height: 15px; color: var(--faint); } .chip:hover { border-color: var(--ink); } .chip--active { background: var(--brand); border-color: var(--brand); color: #fff; } .chip--active svg { color: #fff; } .toolbar__end { margin-left: auto; display: flex; align-items: center; gap: 12px; } .select { position: relative; } .select select { appearance: none; padding: 11px 40px 11px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: #fff; font-weight: 600; font-size: .88rem; color: var(--ink-2); cursor: pointer; } .select svg { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); width: 15px; height: 15px; pointer-events: none; color: var(--muted); } .viewtoggle { display: inline-flex; border: 1.5px solid var(--line); border-radius: var(--r-sm); overflow: hidden; } .viewtoggle button { width: 42px; height: 42px; display: grid; place-items: center; color: var(--muted); } .viewtoggle button svg { width: 18px; height: 18px; } .viewtoggle button[aria-pressed="true"] { background: var(--ink); color: #fff; } .result-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; } .switch { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .9rem; color: var(--ink-2); cursor: pointer; } .switch input { display: none; } .switch__track { width: 42px; height: 24px; border-radius: 999px; background: var(--line); position: relative; transition: background .2s var(--ease); } .switch__track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: var(--sh-1); transition: transform .2s var(--ease); } .switch input:checked + .switch__track { background: var(--brand); } .switch input:checked + .switch__track::after { transform: translateX(18px); } .result-count { color: var(--muted); font-size: .9rem; font-weight: 600; } .result-count b { color: var(--ink); } .products { display: flex; flex-direction: column; gap: 12px; } .product { display: grid; grid-template-columns: 128px 1fr 140px 220px; gap: 20px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 16px 20px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); } .product:hover { border-color: transparent; box-shadow: var(--sh-2); } .product__img { width: 128px; height: 96px; border-radius: 10px; background: var(--surface-2); display: grid; place-items: center; overflow: hidden; position: relative; } .product__img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; } .product__badge { position: absolute; top: 7px; left: 7px; } .product__name { font-size: 1.06rem; font-weight: 700; color: var(--ink); letter-spacing: -.01em; } .product__name:hover { color: var(--brand); } .product__art { font-size: .82rem; color: var(--muted); margin-top: 4px; font-weight: 600; } .product__art b { color: var(--ink-2); font-family: ui-monospace, "SF Mono", Menlo, monospace; } .product__fit { margin-top: 8px; font-size: .84rem; color: var(--muted); } .product__fit b { color: var(--ink-2); font-weight: 600; } .product__price { text-align: right; } .product__price .amt { font-size: 1.35rem; font-weight: 700; color: var(--ink); letter-spacing: -.02em; white-space: nowrap; } .product__price .amt.q { font-size: 1rem; color: var(--muted); } .product__stock { margin-bottom: 6px; } .product__actions { display: flex; flex-direction: column; gap: 8px; } .product__fav { position: absolute; top: 7px; right: 7px; width: 32px; height: 32px; border-radius: 50%; background: #fff; color: var(--faint); display: grid; place-items: center; box-shadow: var(--sh-1); } .product__fav:hover { color: var(--brand); } .product__fav svg { width: 16px; height: 16px; } .products.is-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--gap); } .products.is-grid .product { grid-template-columns: 1fr; text-align: left; padding: 16px; align-items: stretch; } .products.is-grid .product__img { width: 100%; height: 168px; } .products.is-grid .product__price { text-align: left; margin-top: auto; } .products.is-grid .product__actions { flex-direction: row; } .products.is-grid .product__actions .btn { flex: 1; } .cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--gap); } .catcard { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px; transition: box-shadow .22s var(--ease), transform .22s var(--ease), border-color .2s; overflow: hidden; } .catcard:hover { box-shadow: var(--sh-2); transform: translateY(-3px); border-color: transparent; } .catcard__ic { width: 56px; height: 56px; border-radius: 14px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; margin-bottom: 16px; } .catcard__ic svg { width: 30px; height: 30px; } .catcard h3 { font-size: 1.14rem; } .catcard p { color: var(--muted); font-size: .88rem; margin-top: 6px; } .catcard__count { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: .82rem; font-weight: 600; color: var(--faint); } .catcard__arw { position: absolute; top: 22px; right: 22px; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--muted); transition: all .2s var(--ease); } .catcard:hover .catcard__arw { background: var(--brand); border-color: var(--brand); color: #fff; } .catcard__arw svg { width: 16px; height: 16px; } .group { margin-bottom: 40px; } .group__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; } .group__head .mark { width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 700; flex: none; } .group__head .mark svg { width: 22px; height: 22px; color: var(--brand); } .group__head h2 { font-size: 1.3rem; } .group__head .count { margin-left: auto; font-size: .84rem; color: var(--muted); font-weight: 600; } .model-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; } .modelcard { display: flex; align-items: center; gap: 12px; padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); font-weight: 600; color: var(--ink); transition: all .18s var(--ease); } .modelcard:hover { border-color: var(--brand); color: var(--brand); box-shadow: var(--sh-1); } .modelcard .thumb { width: 44px; height: 44px; border-radius: 10px; background: var(--surface-2); display: grid; place-items: center; color: var(--muted); flex: none; } .modelcard .thumb svg { width: 24px; height: 24px; } .modelcard small { display: block; font-weight: 600; font-size: .78rem; color: var(--muted); margin-top: 2px; } .modelcard:hover .thumb { background: var(--brand-tint); color: var(--brand); } .node-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: var(--gap); } .node { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s var(--ease), transform .2s var(--ease), border-color .2s; } .node:hover { box-shadow: var(--sh-2); transform: translateY(-3px); border-color: transparent; } .node__img { aspect-ratio: 4/3; background: var(--surface-2); display: grid; place-items: center; position: relative; overflow: hidden; } .node__img img, .node__img svg.scheme { width: 100%; height: 100%; object-fit: contain; padding: 14px; } .node__num { position: absolute; top: 10px; left: 10px; background: var(--ink); color: #fff; font-size: .72rem; font-weight: 700; padding: 4px 9px; border-radius: var(--r-pill); } .node__body { padding: 15px 16px 18px; display: flex; flex-direction: column; gap: 4px; flex: 1; } .node__body b { color: var(--ink); font-size: .98rem; font-weight: 700; line-height: 1.25; } .node__body small { color: var(--muted); font-size: .8rem; } .node__foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; } .node__foot .parts { font-size: .8rem; color: var(--faint); font-weight: 600; } .node__foot .go { color: var(--brand); font-weight: 600; font-size: .85rem; display: inline-flex; align-items: center; gap: 5px; } .node__foot .go svg { width: 14px; height: 14px; } .spec { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(20px, 3vw, 40px); align-items: start; } .spec__media { position: sticky; top: 158px; } .diagram { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 10px; box-shadow: var(--sh-1); } .diagram__stage { position: relative; background: var(--surface-2); border-radius: 10px; aspect-ratio: 4/3; overflow: hidden; } .diagram__stage img, .diagram__stage svg { width: 100%; height: 100%; } .diagram__stage svg { display: block; } .callout { cursor: pointer; } .callout circle { fill: #fff; stroke: var(--ink); stroke-width: 1.6; transition: fill .18s var(--ease), stroke .18s, r .18s; } .callout text { fill: var(--ink); font: 700 13px var(--font); text-anchor: middle; dominant-baseline: central; pointer-events: none; } .callout:hover circle, .callout.is-active circle { fill: var(--brand); stroke: var(--brand); } .callout:hover text, .callout.is-active text { fill: #fff; } .diagram__note { display: flex; align-items: center; gap: 10px; padding: 12px 14px; color: var(--muted); font-size: .84rem; } .diagram__note svg { width: 17px; height: 17px; color: var(--brand); flex: none; } .spec__gallery { display: flex; gap: 8px; margin-top: 10px; } .spec__gallery button { width: 66px; height: 54px; border-radius: 9px; border: 1.5px solid var(--line); background: var(--surface-2); display: grid; place-items: center; color: var(--muted); overflow: hidden; } .spec__gallery button[aria-pressed="true"] { border-color: var(--brand); } .spec__gallery button svg, .spec__gallery button img { width: 100%; height: 100%; object-fit: contain; padding: 6px; } .spec__head h1 { font-size: clamp(1.5rem, 3vw, 2.05rem); } .spec__sku { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .9rem; color: var(--ink-2); background: var(--surface-2); padding: 6px 12px; border-radius: 8px; font-weight: 600; } .spec__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; } .spec__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin-top: 20px; } .spec__facts div { background: #fff; padding: 14px 16px; } .spec__facts small { color: var(--muted); font-size: .78rem; font-weight: 600; } .spec__facts b { display: block; color: var(--ink); font-size: .98rem; margin-top: 3px; } .parts { margin-top: 30px; } .parts__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; } .parts__head h2 { font-size: 1.35rem; } .parts__head .n { background: var(--brand-tint); color: var(--brand); font-weight: 700; font-size: .82rem; padding: 4px 11px; border-radius: var(--r-pill); } .ptable-wrap { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; overflow-x: auto; box-shadow: var(--sh-1); } .ptable { min-width: 640px; font-size: .9rem; } .ptable thead th { background: var(--surface-2); text-align: left; padding: 13px 14px; font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 700; border-bottom: 1px solid var(--line); white-space: nowrap; } .ptable tbody td { padding: 13px 14px; border-bottom: 1px solid var(--line-2); vertical-align: middle; } .ptable tbody tr:last-child td { border-bottom: 0; } .ptable tbody tr { transition: background .15s var(--ease); } .ptable tbody tr:hover, .ptable tbody tr.is-active { background: var(--brand-tint); } .ptable .pos { width: 46px; } .ptable .pos span { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-weight: 700; font-size: .78rem; } .ptable tr.is-active .pos span, .ptable tr:hover .pos span { background: var(--brand); } .ptable .code { font-family: ui-monospace, "SF Mono", Menlo, monospace; color: var(--ink-2); font-weight: 600; white-space: nowrap; } .ptable .nm { color: var(--ink); font-weight: 600; min-width: 180px; } .ptable .nm small { display: block; color: var(--muted); font-weight: 400; font-size: .8rem; } .ptable .qty { text-align: center; font-weight: 600; color: var(--ink); } .ptable .price { text-align: right; font-weight: 700; color: var(--ink); white-space: nowrap; } .ptable .buy { text-align: right; } .ptable .buy .btn { padding: 8px 12px; } .ptable .miniadd { width: 38px; height: 38px; border-radius: 9px; background: var(--brand); color: #fff; display: inline-grid; place-items: center; transition: background .18s var(--ease), transform .16s; } .ptable .miniadd:hover { background: var(--brand-600); transform: translateY(-1px); } .ptable .miniadd svg { width: 17px; height: 17px; } .ptable .miniadd.ghost { background: #fff; color: var(--brand); border: 1.5px solid var(--brand); } .pager { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 34px; flex-wrap: wrap; } .pager a, .pager span { min-width: 44px; height: 44px; padding: 0 12px; display: grid; place-items: center; border-radius: 10px; border: 1.5px solid var(--line); background: #fff; font-weight: 600; color: var(--ink-2); transition: all .16s var(--ease); } .pager a:hover { border-color: var(--ink); } .pager [aria-current] { background: var(--brand); border-color: var(--brand); color: #fff; } .pager .dots { border: 0; background: transparent; } .pager svg { width: 18px; height: 18px; } .prose { max-width: 74ch; color: var(--ink-2); font-size: 1.04rem; } .prose > * + * { margin-top: 1.1em; } .prose h2 { font-size: 1.55rem; margin-top: 1.8em; } .prose h3 { font-size: 1.22rem; margin-top: 1.4em; } .prose p { line-height: 1.75; } .prose ul { display: grid; gap: 10px; } .prose ul li { position: relative; padding-left: 30px; } .prose ul li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 8px; height: 8px; border-radius: 2px; background: var(--brand); } .prose a { color: var(--brand); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; } .prose blockquote { border-left: 3px solid var(--brand); padding: 4px 0 4px 20px; color: var(--ink); font-weight: 600; font-size: 1.1rem; } .prose img { border-radius: var(--r); margin-block: 1.5em; } .prose figure figcaption { color: var(--muted); font-size: .86rem; margin-top: 8px; } .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--gap); } .info { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px; } .info__ic { width: 48px; height: 48px; border-radius: 12px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; margin-bottom: 14px; } .info__ic svg { width: 24px; height: 24px; } .info b { color: var(--ink); font-size: 1.02rem; display: block; } .info p, .info a { color: var(--muted); font-size: .92rem; margin-top: 4px; display: block; } .info a:hover { color: var(--brand); } .map { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; aspect-ratio: 16/7; background: var(--surface-2); position: relative; } .map iframe { width: 100%; height: 100%; border: 0; } .formcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(24px, 3vw, 36px); box-shadow: var(--sh-1); } .field { display: grid; gap: 8px; margin-bottom: 16px; } .field label { font-weight: 600; font-size: .88rem; color: var(--ink-2); } .field input, .field textarea, .field select { padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: #fff; font-size: .95rem; width: 100%; transition: border-color .2s var(--ease), box-shadow .2s; } .field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-tint); outline: none; } .field .hint { font-size: .8rem; color: var(--muted); } .field input:user-invalid, .field textarea:user-invalid, .field--error input { border-color: var(--brand); background: #fff6f6; } .field input:user-valid { border-color: var(--ok); } .field .err { display: none; font-size: .8rem; color: var(--brand); font-weight: 600; } .field:has(input:user-invalid) .err, .field:has(textarea:user-invalid) .err, .field--error .err { display: block; } .consent { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: var(--muted); } .consent input { margin-top: 3px; accent-color: var(--brand); width: 16px; height: 16px; } .cta-band { position: relative; background: var(--dark); color: #fff; border-radius: var(--r-lg); overflow: hidden; padding: clamp(32px, 5vw, 56px); } .cta-band::before { content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(227,6,19,.4), transparent 65%); } .cta-band__in { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; } .cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); } .cta-band p { color: rgba(255,255,255,.8); margin-top: 10px; max-width: 48ch; } .brand-chip { display: grid; place-items: center; text-align: center; padding: 20px 14px; min-height: 74px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); font-weight: 700; letter-spacing: .02em; color: var(--ink-2); filter: grayscale(1); opacity: .72; transition: opacity .2s var(--ease), color .2s var(--ease), border-color .2s, filter .2s, transform .2s; } .brand-chip:hover { opacity: 1; filter: none; color: var(--ink); border-color: var(--brand); transform: translateY(-2px); } .foot { background: var(--dark); color: var(--on-dark-muted); padding-top: clamp(48px, 6vw, 72px); } .foot__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); } .foot .logo__word span { color: #d8bd72; } .foot .logo__sub { color: var(--on-dark-muted); } .foot__about { margin-top: 18px; font-size: .9rem; line-height: 1.6; max-width: 34ch; } .foot__col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; } .foot__col a { display: block; padding: 6px 0; font-size: .92rem; color: var(--on-dark-muted); transition: color .16s var(--ease); } .foot__col a:hover { color: #fff; } .foot__contact .tel { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; } .foot__contact .tel svg { width: 18px; height: 18px; color: var(--brand); } .foot__contact .tel a { color: #fff; font-weight: 700; font-size: 1.15rem; } .foot__socials { display: flex; gap: 10px; margin-top: 18px; } .foot__socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #fff; transition: background .18s var(--ease); } .foot__socials a:hover { background: var(--brand); } .foot__socials svg { width: 19px; height: 19px; } .foot__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 22px; font-size: .85rem; flex-wrap: wrap; } .foot__bar a:hover { color: #fff; } .foot__partner { display: inline-flex; align-items: center; gap: 10px; font-size: .84rem; } .foot__partner .rm { width: 34px; height: 38px; } dialog.modal { width: min(460px, calc(100vw - 32px)); max-width: none; max-height: min(92dvh, 840px); margin: auto; border: 0; padding: 0; background: transparent; overflow: visible; color: inherit; opacity: 0; transform: translateY(14px) scale(.98); transition: opacity .25s var(--ease), transform .25s var(--ease), display .25s allow-discrete, overlay .25s allow-discrete; } dialog.modal[open] { opacity: 1; transform: none; } @starting-style { dialog.modal[open] { opacity: 0; transform: translateY(14px) scale(.98); } } dialog.modal::backdrop { background: rgba(16,17,20,0); backdrop-filter: blur(0px); transition: background .28s var(--ease), backdrop-filter .28s var(--ease), display .28s allow-discrete, overlay .28s allow-discrete; } dialog.modal[open]::backdrop { background: rgba(16,17,20,.62); backdrop-filter: blur(3px); } @starting-style { dialog.modal[open]::backdrop { background: rgba(16,17,20,0); backdrop-filter: blur(0px); } } .modal__box { position: relative; width: 100%; max-height: min(92dvh, 840px); overflow-y: auto; background: #fff; border-radius: var(--r-lg); padding: clamp(24px, 4vw, 36px); box-shadow: var(--sh-3); } .modal__close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 10px; background: var(--surface-2); display: grid; place-items: center; color: var(--muted); } .modal__close:hover { background: var(--surface-3); color: var(--ink); } .modal__close svg { width: 20px; height: 20px; } .modal h3 { font-size: 1.4rem; } .modal__box > p { color: var(--muted); margin: 8px 0 22px; font-size: .95rem; } @media (prefers-reduced-motion: reduce) { dialog.modal, dialog.drawer { transition-duration: .12s; transform: none; } @starting-style { dialog.modal[open], dialog.drawer[open] { transform: none; } } } .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); } .reveal.in { opacity: 1; transform: none; } @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .btn, .acard, .product, .node, .catcard { transition: none !important; } .acard:hover .acard__img img { transform: none; } } .trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; } .trust__i { background: #fff; padding: 26px 22px; display: flex; gap: 14px; } .trust__i .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; flex: none; } .trust__i .ic svg { width: 24px; height: 24px; } .trust__i b { color: var(--ink); display: block; font-size: .96rem; } .trust__i small { color: var(--muted); font-size: .84rem; } dialog.drawer { margin: 0 0 0 auto; width: min(360px, 88vw); height: 100dvh; max-height: 100dvh; max-width: none; border: 0; padding: 0; background: transparent; overflow: visible; transform: translateX(100%); transition: transform .28s var(--ease), display .28s allow-discrete, overlay .28s allow-discrete; } dialog.drawer[open] { transform: none; } @starting-style { dialog.drawer[open] { transform: translateX(100%); } } dialog.drawer::backdrop { background: rgba(16,17,20,0); transition: background .28s var(--ease), display .28s allow-discrete, overlay .28s allow-discrete; } dialog.drawer[open]::backdrop { background: rgba(16,17,20,.55); } @starting-style { dialog.drawer[open]::backdrop { background: rgba(16,17,20,0); } } .drawer__panel { height: 100%; width: 100%; background: #fff; box-shadow: var(--sh-3); padding: 20px; overflow-y: auto; } .drawer__panel .nav { flex-direction: column; align-items: stretch; gap: 2px; } .drawer__panel .nav__link { justify-content: space-between; padding: 14px 12px; border-bottom: 1px solid var(--line-2); border-radius: 0; } .drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; } @media (max-width: 1080px) { .hero__in { grid-template-columns: 1fr; } .hero__card { max-width: 440px; } .layout { grid-template-columns: 240px 1fr; } .spec { grid-template-columns: 1fr; } .spec__media { position: static; } .foot__top { grid-template-columns: 1fr 1fr; } .catbar__links { display: none; } } @media (max-width: 1200px) { .masthead__nav { display: none; } .burger { display: grid; } .masthead__in { min-height: 72px; } } @media (max-width: 900px) { .features__grid { grid-template-columns: repeat(2, 1fr); } .feature:nth-child(2) { border-right: 0; } .feature:nth-child(1), .feature:nth-child(2) { border-bottom: 1px solid var(--line-2); } .product { grid-template-columns: 100px 1fr; grid-template-areas: "img main" "price price" "actions actions"; row-gap: 14px; } .product__img { grid-area: img; } .product__main { grid-area: main; } .product__price { grid-area: price; text-align: left; } .product__actions { grid-area: actions; flex-direction: row; } .product__actions .btn { flex: 1; } .trust { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 760px) { .layout { grid-template-columns: 1fr; } .layout > .rail-wrap { order: 2; } .toolbar__end { width: 100%; margin-left: 0; } .cta-band__in { flex-direction: column; align-items: flex-start; } .cart__meta { display: none; } .catbar__in { gap: 10px; min-height: 58px; } } @media (max-width: 560px) { .masthead__contact .btn { display: none; } .catbar__trigger span, .catbar__trigger .chev { display: none; } .catbar__trigger { padding: 0 13px; } .catbar__search button { padding: 9px 13px; } .logo__sub { display: none; } .logo__word { font-size: 1.18rem; } .logo__mark { width: 40px; height: 44px; } .features__grid, .trust { grid-template-columns: 1fr; } .feature, .trust__i { border-right: 0 !important; border-bottom: 1px solid var(--line-2); } .foot__top { grid-template-columns: 1fr; gap: 28px; } .spec__facts { grid-template-columns: 1fr; } .article-line { grid-template-columns: 92px 1fr; } .article-line__go { display: none; } .topbar__item.hide-sm { display: none; } }