﻿:root {
            --ink: #0f1d2c;
            --muted: #5f7283;
            --line: #dbe5ec;
            --surface: #ffffff;
            --bg: #f3f7fb;
            --brand: #0f95dd;
            --brand-dark: #0b6ea4;
            --nav-blue: #292C4D;
            --section-gap: 2.8rem;
        }

        * { box-sizing: border-box; }

        body {
            margin: 0;
            font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
            color: var(--ink);
            background: linear-gradient(180deg, #f8fbff 0%, #f3f7fb 45%, #eef3f8 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        main {
            flex: 1 0 auto;
        }

        .site-toast {
            position: fixed;
            top: 18px;
            right: 18px;
            z-index: 500;
            max-width: min(420px, calc(100vw - 36px));
            background: #ffffff;
            border: 1px solid #d9e3ec;
            box-shadow: 0 14px 30px rgba(7, 22, 45, 0.16);
            color: #1d2f55;
            font-size: 15px;
            line-height: 1.35;
            font-weight: 600;
            padding: 12px 14px;
            border-left: 4px solid #0f95dd;
            animation: site-toast-in 220ms ease;
        }

        .site-toast.is-hiding {
            animation: site-toast-out 260ms ease forwards;
        }

        @keyframes site-toast-in {
            from {
                opacity: 0;
                transform: translate3d(8px, -8px, 0);
            }

            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        @keyframes site-toast-out {
            from {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }

            to {
                opacity: 0;
                transform: translate3d(8px, -8px, 0);
            }
        }

        .wrap {
            width: min(1440px, 100%);
            margin: 0 auto;
            padding-left: 30px;
            padding-right: 30px;
        }

        .topbar {
            background: #ffffff;
            border-bottom: 1px solid #E4E4E4;
        }

        .topbar-row {
            min-height: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .topbar-left {
            display: flex;
            align-items: center;
            gap: 1.1rem;
            min-width: 0;
        }

        .topbar-call {
            font-weight: 700;
            color: var(--nav-blue);
            text-decoration: none;
            white-space: nowrap;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .topbar-right {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }

        .topbar-links {
            display: flex;
            align-items: center;
            gap: 1.1rem;
            flex-wrap: wrap;
        }

        .topbar-links a,
        .topbar-calc,
        .topbar-extra a,
        .topbar-dropdown summary {
            text-decoration: none;
            color: var(--nav-blue);
            font-size: 14px;
            white-space: nowrap;
            transition: color 150ms ease;
        }

        .topbar-calc {
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .topbar-extra {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .topbar-dropdown {
            position: relative;
        }

        .topbar-dropdown summary {
            list-style: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-weight: 500;
        }

        .topbar-dropdown summary::-webkit-details-marker {
            display: none;
        }

        .topbar-dropdown-menu {
            position: absolute;
            top: calc(100% + 6px);
            right: 0;
            min-width: 130px;
            padding: 6px;
            border: 1px solid #d7e0ea;
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 8px 24px rgba(6, 40, 91, 0.12);
            display: grid;
            gap: 2px;
            z-index: 40;
        }

        .topbar-dropdown-menu a {
            padding: 6px 8px;
            border-radius: 8px;
            color: var(--nav-blue);
            text-decoration: none;
            font-size: 14px;
        }

        .topbar-dropdown-menu a:hover {
            background: #eef4ff;
            color: #0a4aa7;
        }

        .topbar-dropdown-menu a.active {
            color: #CC0001;
            font-weight: 700;
            background: #fff4f4;
        }

        .topbar-caret {
            font-size: 11px;
            line-height: 1;
            transition: transform 150ms ease;
        }

        .topbar-dropdown[open] .topbar-caret {
            transform: rotate(180deg);
        }

        .topbar-call:hover,
        .topbar-links a:hover,
        .topbar-calc:hover,
        .topbar-extra a:hover,
        .topbar-dropdown summary:hover {
            color: #0a4aa7;
            text-decoration: none;
        }

        .header-main {
            background: #ffffff;
            border-bottom: 1px solid #E4E4E4;
        }

        .header-main-row {
            min-height: 75px;
            display: grid;
            grid-template-columns: 180px minmax(420px, 1fr) auto;
            align-items: stretch;
            gap: 0;
        }

        .header-logo {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            text-decoration: none;
            color: #111;
            padding-right: 35px;
            position: relative;
        }

        .header-logo svg,
        .header-logo img {
            display: block;
            width: 145px;
            height: auto;
        }

        .header-search-wrap {
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .header-search {
            width: 100%;
            max-width: 640px;
            border: 1px solid #D6E2F2;
            height: 40px;
            display: grid;
            grid-template-columns: 1fr 40px;
            background: #fff;
        }

        .header-search input {
            border: 0;
            padding: 0 16px;
            font-family: inherit;
            font-size: 18px;
            outline: none;
        }

        .header-search input::placeholder {
            font-size: 14px;
        }

        .header-search button {
            border: 0;
            background: transparent;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .header-search button svg {
            width: 20px;
            height: 20px;
        }

        .header-actions {
            display: grid;
            grid-template-columns: repeat(4, minmax(100px, 1fr));
            border-left: 1px solid #E4E4E4;
        }

        .header-action {
            min-height: 75px;
            border-right: 1px solid #E4E4E4;
            display: grid;
            align-content: center;
            justify-items: center;
            gap: 6px;
            text-decoration: none;
            color: var(--nav-blue);
            padding: 8px 6px;
            transition: background-color 150ms ease;
        }

        .header-action:hover {
            background: #f8fbff;
        }

        .header-action-title {
            font-size: 11px;
            line-height: 1;
            font-weight: 600;
        }

        .header-action-count {
            font-size: 11px;
            line-height: 1;
            font-weight: 500;
        }

        .header-action svg {
            display: block;
        }

        .cart-dropdown {
            position: static;
        }

        .cart-dropdown > summary {
            list-style: none;
            cursor: pointer;
        }

        .cart-dropdown > summary::-webkit-details-marker {
            display: none;
        }

        .cart-dropdown::before {
            content: '';
            position: fixed;
            inset: 0;
            background: rgba(17, 27, 45, 0.38);
            opacity: 0;
            visibility: hidden;
            transition: opacity 180ms ease;
            z-index: 239;
        }

        .cart-dropdown[open]::before {
            opacity: 1;
            visibility: visible;
        }

        body.is-callback-open {
            overflow: hidden;
        }

        .callback-offcanvas {
            position: fixed;
            inset: 0;
            z-index: 260;
            pointer-events: none;
        }

        .callback-offcanvas-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(12, 22, 39, 0.36);
            opacity: 0;
            transition: opacity 220ms ease;
        }

        .callback-offcanvas-panel {
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: min(640px, 100vw);
            background: #f3f4f7;
            box-shadow: -22px 0 40px rgba(7, 18, 34, 0.24);
            transform: translateX(100%);
            transition: transform 240ms ease;
            display: grid;
            grid-template-rows: 1fr;
        }

        .callback-offcanvas-content {
            overflow-y: auto;
            padding: 38px 58px 32px;
            position: relative;
            display: grid;
            align-content: start;
            gap: 8px;
        }

        .callback-offcanvas-close {
            position: absolute;
            top: 12px;
            right: 14px;
            width: 50px;
            height: 50px;
            border: 0;
            background: #252b56;
            color: #ffffff;
            font-size: 22px;
            line-height: 1;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            z-index: 2;
        }

        .callback-offcanvas-close span {
            transform: translateY(-2px);
        }

        .callback-offcanvas-title {
            margin: 0;
            color: #25345f;
            font-size: 22.5px;
            line-height: 1.04;
            letter-spacing: -0.02em;
            font-weight: 800;
        }

        .callback-offcanvas-sub {
            margin: 0;
            color: #405578;
            font-size: 16.5px;
            line-height: 1.18;
            font-weight: 500;
        }

        .callback-offcanvas-errors {
            margin-top: 4px;
            padding: 10px 12px;
            border: 1px solid #f1b2b2;
            background: #fff4f4;
            color: #a50f0f;
            display: grid;
            gap: 4px;
            font-size: 7.5px;
            line-height: 1.28;
            font-weight: 600;
        }

        .callback-offcanvas-errors p {
            margin: 0;
        }

        .callback-offcanvas-form {
            margin-top: 10px;
            display: grid;
            gap: 12px;
        }

        .callback-offcanvas-form input,
        .callback-offcanvas-form textarea {
            width: 100%;
            border: 1px solid #cfd6e2;
            background: #f5f6f9;
            color: #22375a;
            font-size: 17px;
            line-height: 1.1;
            font-family: inherit;
            padding: 0 22px;
            border-radius: 0;
            outline: none;
        }

        .callback-offcanvas-form input {
            height: 43px;
        }

        .callback-offcanvas-form textarea {
            min-height: 120px;
            padding-top: 18px;
            padding-bottom: 18px;
            resize: vertical;
        }

        .callback-offcanvas-form input::placeholder,
        .callback-offcanvas-form textarea::placeholder {
            color: #1e3558;
            opacity: 1;
        }

        .callback-offcanvas-worktime {
            margin: -1px 0 2px;
            color: #667694;
            font-size: 16.5px;
            line-height: 1.2;
            font-weight: 500;
        }

        .callback-offcanvas-worktime strong {
            color: #2e4468;
            font-weight: 700;
            margin-right: 4px;
        }

        .callback-offcanvas-submit {
            margin-top: 2px;
            width: fit-content;
            min-width: 300px;
            height: 38px;
            border: 0;
            background: #252b56;
            color: #ffffff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 0 30px;
            font-family: inherit;
            font-size: 18.5px;
            line-height: 1;
            font-weight: 700;
            cursor: pointer;
        }

        .callback-offcanvas.is-open {
            pointer-events: auto;
        }

        .callback-offcanvas.is-open .callback-offcanvas-backdrop {
            opacity: 1;
        }

        .callback-offcanvas.is-open .callback-offcanvas-panel {
            transform: translateX(0);
        }

        .cart-dropdown-menu {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            height: 100vh;
            max-height: 100vh;
            width: min(680px, 100vw);
            background: #f2f3f6;
            box-shadow: -24px 0 40px rgba(6, 16, 32, 0.26);
            z-index: 240;
            display: grid;
            grid-template-rows: auto 1fr auto;
            transform: translateX(100%);
            transition: transform 220ms ease;
            visibility: hidden;
            pointer-events: none;
        }

        .cart-dropdown[open] .cart-dropdown-menu {
            transform: translateX(0);
            visibility: visible;
            pointer-events: auto;
        }

        .cart-offcanvas-head {
            min-height: 60px;
            background: #ffffff;
            border-bottom: 1px solid #dde4ec;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 0 14px;
        }

        .cart-offcanvas-title {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #1f2f55;
            font-size: 20px;
            line-height: 1;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .cart-offcanvas-title-main {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .cart-offcanvas-title-icon {
            width: 24px;
            height: 24px;
            display: inline-flex;
            color: #cc0001;
        }

        .cart-offcanvas-title-icon svg {
            width: 100%;
            height: 100%;
            display: block;
            fill: currentColor;
        }

        .cart-offcanvas-title strong {
            color: #cc0001;
            font-size: 16px;
            font-weight: 700;
        }

        .cart-offcanvas-close {
            width: 36px;
            height: 36px;
            border: 0;
            background: #232a51;
            color: #ffffff;
            font-size: 20px;
            line-height: 1;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .cart-offcanvas-body {
            overflow: auto;
            padding: 12px 14px;
            display: grid;
            align-content: start;
            gap: 6px;
        }

        .cart-dropdown-empty {
            margin: 0;
            color: #5f7288;
            font-size: 10px;
            font-weight: 600;
            padding: 12px 5px;
        }

        .cart-offcanvas-item {
            position: relative;
            display: grid;
            grid-template-columns: 60px minmax(0, 1fr) auto;
            align-items: stretch;
            gap: 10px;
            padding: 10px 8px;
            border-bottom: 1px solid #dfe6ee;
            background: #f7f8fb;
        }

        .cart-offcanvas-thumb-link {
            width: 60px;
            height: 60px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .cart-offcanvas-thumb {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            background: #ffffff;
            border: 1px solid #d9e1ea;
        }

        .cart-offcanvas-thumb-fallback {
            color: #6f8095;
            font-size: 6px;
            font-weight: 600;
            text-align: center;
            padding: 4px;
        }

        .cart-offcanvas-main {
            min-width: 0;
            display: grid;
            gap: 4px;
            align-content: start;
        }

        .cart-offcanvas-name {
            margin: 0;
            color: #292c4d;
            font-size: 15px;
            line-height: 1.17;
            text-decoration: none;
            font-weight: 500;
        }

        .cart-offcanvas-sku {
            color: #3b4660;
            font-size: 12px;
            line-height: 1;
            font-weight: 500;
        }

        .cart-offcanvas-sku strong {
            font-weight: 700;
        }

        .cart-offcanvas-price-wrap {
            display: grid;
            gap: 1px;
        }

        .cart-offcanvas-price-old {
            color: #63728a;
            text-decoration: line-through;
            font-size: 10px;
            line-height: 1;
            font-weight: 500;
        }

        .cart-offcanvas-price-current {
            color: #c80000;
            font-size: 16px;
            line-height: 1;
            font-weight: 700;
        }

        .cart-offcanvas-price-qty {
            color: #000000;
            font-size: 14px;
            font-weight: 500;
        }

        .cart-offcanvas-controls {
            display: inline-flex;
            align-items: center;
            justify-content: flex-end;
            align-self: end;
            justify-self: end;
            gap: 0;
        }

        .cart-offcanvas-remove-form {
            margin: 0;
            position: absolute;
            top: 8px;
            right: 6px;
            z-index: 1;
        }

        .cart-offcanvas-delete {
            width: 28px;
            height: 28px;
            border: 1px solid #d9e1ea;
            background: #ffffff;
            color: #bf0000;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            padding: 0;
        }

        .cart-offcanvas-delete svg {
            width: 14px;
            height: 14px;
            fill: none;
        }

        .cart-offcanvas-qty-form {
            margin: 0;
            min-height: 34px;
            display: grid;
            grid-template-columns: 32px 48px 32px;
            border: 1px solid #d9e1ea;
            border-left: 1px solid #d9e1ea;
            background: #ffffff;
        }

        .cart-offcanvas-qty-btn {
            border: 0;
            background: transparent;
            color: #cf0000;
            font-size: 22px;
            line-height: 1;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .cart-offcanvas-qty-value {
            border-left: 1px solid #d9e1ea;
            border-right: 1px solid #d9e1ea;
            display: grid;
            align-content: center;
            justify-items: center;
            color: #303b56;
        }

        .cart-offcanvas-qty-value strong {
            font-size: 14px;
            line-height: 1;
            font-weight: 500;
        }

        .cart-offcanvas-qty-value small {
            font-size: 12px;
            line-height: 1;
            font-weight: 500;
        }

        .cart-dropdown-total {
            border-top: 1px solid #dce4ed;
            padding-top: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            color: #1f2f55;
            font-size: 18px;
            font-weight: 700;
        }

        .cart-dropdown-total strong {
            color: #cc0001;
        }

        .cart-offcanvas-foot {
            background: #ffffff;
            border-top: 1px solid #dde4ec;
            padding: 12px 14px 14px;
            display: grid;
            gap: 7px;
        }

        .cart-offcanvas-summary-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            color: #3b4660;
            font-size: 16px;
            font-weight: 500;
            line-height: 1;
        }

        .cart-offcanvas-summary-row strong {
            color: #303b56;
            font-weight: 700;
        }

        .cart-offcanvas-summary-row strong.is-free {
            color: #0787a2;
        }

        .cart-offcanvas-note {
            margin: 0;
            color: #525f77;
            font-size: 14px;
            line-height: 1.15;
            font-weight: 500;
        }

        .cart-offcanvas-actions {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px;
            margin-top: 4px;
        }

        .cart-offcanvas-checkout-form {
            margin: 0;
        }

        .cart-dropdown-link {
            min-height: 46px;
            border-radius: 0;
            border: 0;
            background: #232a51;
            color: #ffffff;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            padding: 0 10px;
            line-height: 1;
        }

        .cart-dropdown-link.secondary {
            background: #232a51;
        }

        .cart-dropdown-link.primary {
            background: #04819e;
        }

        .cart-dropdown-link:hover {
            background: #1b2244;
        }

        .cart-dropdown-link.primary:hover {
            background: #036f87;
        }

        .sticky-shell {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 120;
            opacity: 0;
            visibility: hidden;
            transition: opacity 180ms ease;
            pointer-events: none;
        }

        .sticky-shell.is-visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .sticky-header {
            background: #f3f3f3;
            border-bottom: 1px solid #dcdcdc;
        }

        .sticky-row {
            min-height: 75px;
            display: grid;
            grid-template-columns: 180px 150px minmax(320px, 1fr) auto;
            align-items: stretch;
            gap: 0;
        }

        .sticky-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: inherit;
            position: relative;
        }

        .sticky-logo svg,
        .sticky-logo img {
            width: 145px;
            height: auto;
            display: block;
        }

        .logo-labels,
        .sticky-logo-labels {
            position: absolute;
            left: 2px;
            bottom: 18px;
            display: flex;
            gap: 4px;
            pointer-events: none;
        }

        .logo-label,
        .sticky-logo-label {
            width: 68px;
            height: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
            font-size: 10px;
            line-height: 1;
            font-weight: 700;
            text-transform: lowercase;
            letter-spacing: 0.02em;
        }

        .logo-label.heat,
        .sticky-logo-label.heat { background: #CC0001; }

        .logo-label.cool,
        .sticky-logo-label.cool { background: #0F95DD; }

        .sticky-cats-btn {
            align-self: center;
            width: 150px;
            height: 40px;
            border: 0;
            background: #cc0001;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
            font-size: 14px;
            line-height: 1;
            font-weight: 700;
            cursor: pointer;
            padding: 0 10px;
        }

        .sticky-cats-btn-text {
            font-size: 14px;
            line-height: 1;
            font-weight: 700;
        }

        .sticky-cats-btn > span[aria-hidden="true"] {
            font-size: 16px;
            line-height: 1;
        }

        .sticky-search-wrap {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding-left: 14px;
        }

        .sticky-search {
            width: 70%;
            min-width: 280px;
            border: 1px solid #D6E2F2;
            background: #fff;
            height: 40px;
            display: grid;
            grid-template-columns: 1fr 40px;
        }

        .sticky-search input {
            border: 0;
            outline: none;
            font-family: inherit;
            font-size: 18px;
            padding: 0 16px;
            background: transparent;
        }

        .sticky-search input::placeholder {
            font-size: 14px;
        }

        .sticky-search button {
            border: 0;
            background: transparent;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .sticky-search button svg {
            width: 20px;
            height: 20px;
        }

        .sticky-actions {
            display: grid;
            grid-template-columns: repeat(4, minmax(100px, 1fr));
            border-left: 1px solid #E4E4E4;
        }

        .sticky-action {
            border-right: 1px solid #E4E4E4;
            display: grid;
            justify-items: center;
            align-content: center;
            gap: 6px;
            text-decoration: none;
            color: var(--nav-blue);
            min-height: 75px;
        }

        .sticky-action svg { display: block; }

        .sticky-action span {
            font-size: 11px;
            line-height: 1;
            font-weight: 500;
        }

        .cart-dropdown-sticky .cart-dropdown-menu {
            width: min(680px, 100vw);
        }

        @media (max-width: 900px) {
            .cart-offcanvas-head {
                min-height: 44px;
                padding: 0 10px;
            }

            .cart-offcanvas-title {
                font-size: 14px;
            }

            .cart-offcanvas-title strong {
                font-size: 11px;
            }

            .cart-offcanvas-title-icon {
                width: 12px;
                height: 12px;
            }

            .cart-offcanvas-close {
                width: 26px;
                height: 26px;
                font-size: 16px;
            }

            .cart-offcanvas-body {
                padding: 8px 10px;
            }

            .cart-offcanvas-item {
                grid-template-columns: 44px minmax(0, 1fr) auto;
                gap: 8px;
                padding: 8px 6px;
            }

            .cart-offcanvas-thumb-link {
                width: 44px;
                height: 44px;
            }

            .cart-offcanvas-controls {
                justify-content: flex-end;
            }

            .cart-offcanvas-delete {
                width: 24px;
                height: 24px;
            }

            .cart-offcanvas-qty-form {
                min-height: 28px;
                grid-template-columns: 28px 40px 28px;
            }

            .cart-offcanvas-delete svg {
                width: 12px;
                height: 12px;
            }

            .cart-offcanvas-name {
                font-size: 14px;
            }

            .cart-offcanvas-sku {
                font-size: 11px;
            }

            .cart-offcanvas-price-old {
                font-size: 10px;
            }

            .cart-offcanvas-price-current {
                font-size: 16px;
            }

            .cart-offcanvas-qty-value strong {
                font-size: 15px;
            }

            .cart-offcanvas-qty-value small {
                font-size: 10px;
            }

            .cart-offcanvas-foot {
                padding: 8px 10px 10px;
            }

            .cart-offcanvas-summary-row {
                font-size: 14px;
            }

            .cart-dropdown-total {
                font-size: 16px;
            }

            .cart-offcanvas-note {
                font-size: 11px;
            }

            .cart-offcanvas-actions {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 5px;
            }

            .cart-dropdown-link {
                min-height: 34px;
                font-size: 13px;
            }
        }

        .sticky-categories-panel {
            display: none;
            background: #CC0001;
        }

        .sticky-shell.categories-open .sticky-categories-panel {
            display: block;
        }

        .sticky-categories-panel .home-categories {
            z-index: auto;
        }

        .home-categories {
            background: #CC0001;
            height: 100px;
            position: relative;
            z-index: 45;
        }

        .home-categories-scroll {
            display: flex;
            align-items: stretch;
            justify-content: flex-start;
            height: 100px;
            overflow: visible;
        }

        .home-categories-scroll::-webkit-scrollbar {
            display: none;
        }

        .home-category-item {
            flex: 0 0 180px;
            height: 100px;
            border-right: 1px solid #DD4141;
            position: relative;
        }

        .home-category {
            text-decoration: none;
            color: #ffffff;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
            font-size: 16px;
            font-weight: 700;
            line-height: 1;
            white-space: nowrap;
            padding: 0 10px;
            height: 100%;
        }

        .home-category-item:first-child {
            border-left: 1px solid #DD4141;
        }

        .home-category-name {
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .home-category-item.has-children.is-open .home-category {
            background: #b80000;
        }

        .home-mega-panel {
            display: none;
            background: #ffffff;
            border-top: 1px solid #e3e9f1;
            border-bottom: 1px solid #e3e9f1;
            box-shadow: 0 16px 34px rgba(9, 22, 44, 0.14);
        }

        .home-categories.is-mega-open .home-mega-panel {
            display: block;
        }

        .home-mega-content {
            display: none;
            grid-template-columns: 240px 1fr 1.2fr;
            align-items: stretch;
            min-height: 420px;
        }

        .home-mega-content.active {
            display: grid;
        }

        .home-mega-brands {
            border-right: 1px solid #e6ebf2;
            background: #fbfdff;
        }

        .home-mega-brand-item {
            min-height: 84px;
            border-bottom: 1px solid #edf2f7;
            display: grid;
            place-items: center;
            padding: 10px 12px;
        }

        .home-mega-brand-item img {
            max-width: 130px;
            max-height: 42px;
            object-fit: contain;
            display: block;
        }

        .home-mega-cats {
            border-right: 1px solid #e6ebf2;
            padding: 18px 18px 14px;
            display: grid;
            grid-template-rows: auto 1fr;
            min-height: 0;
        }

        .home-mega-cats-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 12px;
        }

        .home-mega-cats-head strong {
            color: #243b66;
            font-size: 17px;
            font-weight: 700;
        }

        .home-mega-show-all {
            color: #cc0001;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
        }

        .home-mega-sub-list {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            justify-content: flex-start;
            gap: 6px;
            overflow-y: auto;
            min-height: 0;
            max-height: 450px;
            padding-right: 6px;
            scrollbar-width: thin;
            scrollbar-color: #cc0001 #eef2f7;
        }

        .home-mega-sub-list::-webkit-scrollbar {
            width: 8px;
        }

        .home-mega-sub-list::-webkit-scrollbar-track {
            background: #eef2f7;
            border-radius: 999px;
        }

        .home-mega-sub-list::-webkit-scrollbar-thumb {
            background: #cc0001;
            border-radius: 999px;
        }

        .home-mega-sub-link {
            display: grid;
            grid-template-columns: 42px 1fr;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: #2c426b;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.2;
            padding: 6px 6px;
            border-radius: 10px;
        }

        .home-mega-sub-link:hover {
            background: #f4f8fd;
            color: #cc0001;
        }

        .home-mega-sub-icon {
            width: 36px;
            height: 36px;
            border-radius: 999px;
            border: 1px solid #dde5f0;
            background: #fff;
            display: grid;
            place-items: center;
            overflow: hidden;
        }

        .home-mega-sub-icon img {
            width: 78%;
            height: 78%;
            object-fit: contain;
        }

        .home-mega-sub-fallback {
            font-size: 12px;
            font-weight: 700;
            color: #35517d;
        }

        .home-mega-products {
            padding: 18px 0;
        }

        .home-mega-products-title {
            margin: 0;
            padding: 0 18px 12px;
            color: #243b66;
            font-size: 17px;
            font-weight: 700;
            border-bottom: 1px solid #edf2f7;
        }

        .home-mega-product-item {
            display: grid;
            grid-template-columns: 80px 1fr auto;
            gap: 12px;
            align-items: center;
            text-decoration: none;
            color: inherit;
            padding: 12px 18px;
            border-bottom: 1px solid #edf2f7;
        }

        .home-mega-product-item:hover {
            background: #fafcff;
        }

        .home-mega-product-image {
            width: 70px;
            height: 70px;
            object-fit: contain;
            display: block;
        }

        .home-mega-product-name {
            margin: 0;
            color: #334666;
            font-size: 14px;
            line-height: 1.22;
            font-weight: 500;
        }

        .home-mega-product-meta {
            margin-top: 6px;
            color: #5d6f86;
            font-size: 14px;
            font-weight: 600;
        }

        .home-mega-product-brand {
            color: #cc0001;
            margin-left: 8px;
            font-weight: 700;
        }

        .home-mega-product-prices {
            text-align: right;
            white-space: nowrap;
        }

        .home-mega-old-price {
            margin: 0;
            color: #7f8ca1;
            font-size: 15px;
            text-decoration: line-through;
        }

        .home-mega-new-price {
            margin: 4px 0 0;
            color: #cc0001;
            font-size: 16px;
            line-height: 1;
            font-weight: 800;
        }

        .home-mega-empty {
            padding: 18px;
            color: #5d6f86;
            font-size: 14px;
            font-weight: 600;
        }

        .home-category-icon {
            width: 46px;
            height: 34px;
            display: grid;
            place-items: center;
        }

        .home-category-icon img {
            width: auto;
            height: 32px;
            max-width: 100%;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .home-category-fallback {
            width: 46px;
            height: 34px;
            display: grid;
            place-items: center;
            font-size: 18px;
            font-weight: 800;
            line-height: 1;
            color: #fff;
        }

        .home-category:hover {
            background: #b80000;
        }

        .btn {
            text-decoration: none;
            border-radius: 10px;
            border: 1px solid var(--line);
            background: var(--surface);
            color: #203446;
            font-weight: 700;
            font-size: 0.88rem;
            padding: 0.58rem 0.85rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn.primary,
        .menu a.primary {
            border-color: var(--brand);
            background: var(--brand);
            color: #fff;
        }

        .hero {
            height: 620px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, #f8f9fb 0%, #eef1f5 100%);
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.78) 0%, transparent 45%),
                radial-gradient(circle at 74% 24%, rgba(255, 255, 255, 0.58) 0%, transparent 38%),
                repeating-linear-gradient(90deg, rgba(6, 40, 91, 0.018) 0 1px, transparent 1px 5px);
            opacity: 0.5;
            pointer-events: none;
        }

        .hero-inner {
            height: 620px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .hero-copy {
            max-width: 680px;
            position: relative;
            z-index: 2;
        }

        .hero-visual {
            flex: 0 0 auto;
            align-self: center;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            height: 100%;
        }

        .hero-visual img {
            max-width: 860px;
            width: min(48vw, 860px);
            height: auto;
            display: block;
        }

        .hero-title {
            margin: 0;
            font-size: 60px;
            line-height: 1.08;
            letter-spacing: -0.01em;
            font-weight: 800;
            color: #292C4D;
        }

        .hero-sub {
            margin: 20px 0 0;
            color: #000000;
            font-size: 26px;
            font-weight: 500;
            line-height: 1.2;
        }

        .hero-actions {
            margin-top: 34px;
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
        }

        .hero-btn {
            min-width: 230px;
            height: 50px;
            padding: 0 26px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
            font-size: 16px;
            font-weight: 500;
            line-height: 1;
            border: 1px solid transparent;
        }

        .hero-btn.primary {
            background: #CC0001;
            color: #ffffff;
            border-color: #CC0001;
        }

        .hero-btn.secondary {
            background: #d8d8d8;
            color: #0f1d2c;
            border-color: #cfcfcf;
        }

        .hero-list {
            margin: 1rem 0 0;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.55rem;
        }

        .hero-pill {
            border: 1px solid #d2e4f0;
            border-radius: 12px;
            background: #fff;
            padding: 0.62rem;
            font-size: 0.83rem;
            font-weight: 700;
            color: #325062;
            text-align: center;
        }

        .hero-side {
            border: 1px solid var(--line);
            border-radius: 18px;
            background: linear-gradient(160deg, #12263a 0%, #0f3b5a 45%, #0e6ea8 100%);
            color: #fff;
            padding: 1.25rem;
            display: grid;
            align-content: space-between;
            gap: 1rem;
        }

        .hero-side h2 { margin: 0; font-size: 1.1rem; }
        .hero-side p { margin: 0.35rem 0 0; color: rgba(255,255,255,0.84); font-size: 0.9rem; }

        .most-wanted {
            padding: 2.8rem 0 2.8rem;
            background: #fff;
        }

        .most-wanted-title {
            margin: 0 0 20px;
            color: var(--nav-blue);
            font-size: 26px;
            line-height: 1.15;
            letter-spacing: -0.01em;
            font-weight: 700;
        }

        .most-wanted-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 0.72rem;
        }

        .most-wanted-card {
            text-decoration: none;
            border-radius: 14px;
            overflow: hidden;
            background: #bcc3cf;
            border: 1px solid #b3bbc8;
            min-height: 304px;
            display: grid;
            grid-template-rows: 1fr auto;
            transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
            will-change: transform;
        }

        .most-wanted-media {
            height: 240px;
            background: #c6ccd7;
            overflow: hidden;
            padding: 18px;
            display: grid;
            place-items: center;
        }

        .most-wanted-name {
            min-height: 64px;
            padding: 10px 12px;
            color: #ffffff;
            text-align: center;
            display: grid;
            place-items: center;
            font-size: 18px;
            line-height: 1.15;
            font-weight: 700;
        }

        .most-wanted-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            transition: transform 260ms ease, filter 260ms ease;
        }

        .most-wanted-card:hover,
        .most-wanted-card:focus-visible {
            transform: translateY(-4px);
            border-color: #9fa9ba;
            background: #b5becc;
            box-shadow: 0 14px 28px rgba(11, 25, 44, 0.18);
        }

        .most-wanted-card:hover .most-wanted-image,
        .most-wanted-card:focus-visible .most-wanted-image {
            transform: scale(1.045);
            filter: saturate(1.04);
        }

        .most-wanted-card:focus-visible {
            outline: 2px solid rgba(255, 255, 255, 0.75);
            outline-offset: 2px;
        }

        .most-wanted-fallback {
            height: 100%;
            display: grid;
            place-items: center;
            background: linear-gradient(180deg, #cfd5de 0%, #b9c1ce 100%);
            color: #ffffff;
            font-size: 0.9rem;
            font-weight: 700;
            text-align: center;
            padding: 12px;
        }

        .hero-badges {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.55rem;
        }

        .hero-badge {
            border: 1px solid rgba(255,255,255,0.24);
            border-radius: 12px;
            padding: 0.68rem;
            background: rgba(255,255,255,0.07);
            font-size: 0.85rem;
            font-weight: 700;
        }

        .section { margin-top: 1.1rem; }
        .section h2 { margin: 0 0 0.7rem; font-size: 1.22rem; letter-spacing: -0.01em; }
        .section p.lead { margin: 0 0 0.9rem; color: var(--muted); }

        .categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 0.72rem;
        }

        .cat {
            border: 1px solid var(--line);
            border-radius: 14px;
            background: #fff;
            padding: 0.8rem;
            text-decoration: none;
            color: inherit;
            display: grid;
            gap: 0.45rem;
        }

        .cat-media {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: #edf5fc;
            border: 1px solid #dce7f0;
            display: grid;
            place-items: center;
            overflow: hidden;
            font-weight: 800;
            color: #35607c;
        }

        .cat-media img { width: 100%; height: 100%; object-fit: contain; }

        .cat small { color: var(--muted); font-size: 0.8rem; }

        .products {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
            gap: 0.75rem;
        }

        .product {
            border: 1px solid var(--line);
            border-radius: 14px;
            background: #fff;
            overflow: hidden;
            display: grid;
            grid-template-rows: 180px auto;
        }

        .product img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background: #e9f0f5;
        }

        .product-body { padding: 0.8rem; }
        .product-title { margin: 0; font-size: 0.98rem; }
        .product-meta { color: var(--muted); font-size: 0.82rem; margin: 0.28rem 0 0.6rem; }
        .product-price { color: var(--brand-dark); font-size: 1.05rem; font-weight: 800; margin: 0; }

        .action-offers {
            padding: 2.8rem 0 2.8rem;
            background: #ffffff;
        }

        .home-trust {
            padding: 1.2rem 0 1.2rem;
            background: #ffffff;
        }

        .home-trust-card {
            background: #edf0f5;
            border: 1px solid #dbe2ec;
            border-radius: 8px;
            min-height: 96px;
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 16px;
            padding: 0 18px;
        }

        .home-trust-items {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
        }

        .home-trust-item {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: var(--nav-blue);
            min-height: 48px;
            min-width: 0;
        }

        .home-trust-icon {
            flex: 0 0 auto;
            display: block;
            color: var(--nav-blue);
        }

        .home-trust-icon-truck {
            width: 42px;
            height: 42px;
        }

        .home-trust-icon-support,
        .home-trust-icon-security {
            width: 32px;
            height: 32px;
        }

        .home-trust-item-copy {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            min-width: 0;
        }

        .home-trust-item-title {
            color: var(--nav-blue);
            font-size: 18px;
            font-weight: 700;
            line-height: 1.2;
            margin: 0;
            white-space: normal;
        }

        .home-trust-item-desc {
            margin: 0;
            color: #000000;
            font-size: 12px;
            font-weight: 400;
            line-height: 1.35;
        }

        .home-trust-item-desc {
            overflow: visible;
            text-overflow: clip;
        }

        .home-trust-link {
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--nav-blue);
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            border-radius: 8px;
            padding: 20px 28px;
            white-space: nowrap;
            box-shadow: 0 5px 12px rgba(6, 40, 91, 0.2);
            transition: background-color 180ms ease;
        }

        .home-trust-link:hover {
            background: #0a3e83;
        }

        .home-trust-link svg {
            width: 16px;
            height: 16px;
            display: block;
            color: #ffffff;
        }

        .action-offers-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 0.8rem;
        }

        .action-offers-title {
            margin: 0;
            font-size: 26px;
            letter-spacing: -0.01em;
            color: var(--nav-blue);
            font-weight: 700;
        }

        .action-offers-link {
            text-decoration: none;
            color: #35568a;
            font-weight: 700;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .action-offers-link:hover {
            color: #223f6b;
        }

        .action-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 0.72rem;
        }

        .action-card {
            border: 1px solid var(--line);
            border-radius: 12px;
            background: #fff;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            display: grid;
            grid-template-rows: 216px auto;
            transition: transform 180ms ease, box-shadow 180ms ease;
        }

        .action-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(10, 28, 54, 0.12);
        }

        .action-media {
            position: relative;
            background: #ffffff;
            border-bottom: 1px solid var(--line);
        }

        .action-media img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .action-discount-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            height: 28px;
            padding: 0 10px;
            border-radius: 999px;
            background: #CC0001;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 800;
            line-height: 1;
            box-shadow: 0 4px 10px rgba(204, 0, 1, 0.32);
        }

        .action-body {
            padding: 0.9rem;
            display: grid;
            gap: 0.35rem;
        }

        .action-name {
            margin: 0;
            color: #1b325f;
            font-size: 0.98rem;
            line-height: 1.25;
            font-weight: 700;
        }

        .action-brand {
            color: #5f7283;
            font-size: 0.92rem;
            margin: 0;
        }

        .action-price-old {
            margin: 0.1rem 0 0;
            color: #748395;
            font-size: 1rem;
            line-height: 1.2;
            font-weight: 500;
            text-decoration: line-through;
            text-decoration-thickness: 1.5px;
            text-decoration-color: #9aa8b8;
        }

        .action-prices {
            justify-self: end;
            text-align: right;
            display: grid;
            gap: 0.08rem;
        }

        .action-price {
            margin: 0.1rem 0 0;
            color: #CC0001;
            font-size: 1.25rem;
            line-height: 1;
            font-weight: 800;
        }

        .home-brands {
            padding: 2.8rem 0 2.8rem;
            background: #ffffff;
        }

        .home-brands-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            background: #ffffff;
        }

        .home-brands-item {
            position: relative;
            min-height: 200px;
            border-right: 1px solid #e3e6ec;
            background: #ffffff;
            display: grid;
            place-items: center;
            padding: 18px;
            overflow: visible;
        }

        .home-brands-logo-link {
            text-decoration: none;
            color: inherit;
            width: 100%;
            display: grid;
            place-items: center;
            min-height: 96px;
        }

        .home-brands-logo-link img {
            max-width: 176px;
            max-height: 56px;
            width: 100%;
            object-fit: contain;
            display: block;
        }

        .home-brands-fallback {
            font-size: 22px;
            font-weight: 800;
            color: var(--nav-blue);
            letter-spacing: 0.02em;
        }

        .home-brand-cats-panel {
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            border: 1px solid #e3e6ec;
            background: #ffffff;
            padding: 20px 18px 18px;
            display: grid;
            align-content: start;
            gap: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
            z-index: 18;
        }

        .home-brands-item--bottom .home-brand-cats-panel {
            top: auto;
            bottom: -1px;
        }

        .home-brand-cats-head {
            min-height: 78px;
            display: grid;
            place-items: center;
            padding-bottom: 8px;
            border-bottom: 1px solid #edf0f4;
        }

        .home-brand-cats-head img {
            max-width: 160px;
            max-height: 50px;
            width: 100%;
            object-fit: contain;
            display: block;
        }

        .home-brand-cats-list {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 8px;
        }

        .home-brand-cats-link {
            text-decoration: none;
            color: #1b325f;
            font-size: 16px;
            line-height: 1.28;
            font-weight: 500;
        }

        .home-brand-cats-link:hover {
            color: #CC0001;
        }

        .home-brand-cats-more {
            text-decoration: none;
            color: #0f1f46;
            font-size: 18px;
            font-weight: 700;
            line-height: 1;
            margin-top: 4px;
        }

        .home-brand-cats-more:hover {
            color: #CC0001;
        }

        .home-brands-item.has-categories:hover .home-brand-cats-panel,
        .home-brands-item.has-categories:focus-within .home-brand-cats-panel {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .home-brands-empty {
            grid-column: 1 / -1;
            min-height: 170px;
            display: grid;
            place-items: center;
            color: #5f7283;
            font-size: 15px;
            font-weight: 600;
            background: #f8f9fb;
        }

        .home-brands-cta-wrap {
            display: grid;
            place-items: center;
            padding-top: 30px;
        }

        .home-brands-cta {
            text-decoration: none;
            min-height: 60px;
            min-width: 300px;
            border: 1px solid #d8deea;
            background: #ffffff;
            color: #1b2f57;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 0 26px;
            font-size: 16px;
            font-weight: 700;
            line-height: 1;
            transition: border-color 150ms ease, color 150ms ease;
        }

        .home-brands-cta:hover {
            border-color: #c6cfde;
            color: #CC0001;
        }

        .contact-page-hero {
            background: radial-gradient(circle at 14% 20%, rgba(204, 0, 1, 0.11) 0%, rgba(204, 0, 1, 0) 44%),
                        linear-gradient(180deg, #f4f8fc 0%, #eef3fa 100%);
            padding: 1.8rem 0 0.9rem;
        }

        .contact-page-hero-shell {
            border: 1px solid #dbe3ee;
            background: linear-gradient(130deg, #ffffff 0%, #f7fafe 60%, #edf2f8 100%);
            box-shadow: 0 18px 34px rgba(10, 22, 44, 0.09);
            padding: 28px 32px;
        }

        .contact-page-eyebrow {
            margin: 0;
            color: #cc0001;
            font-size: 12px;
            line-height: 1.2;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.07em;
        }

        .contact-page-title {
            margin: 10px 0 0;
            color: #1f2f58;
            font-size: clamp(32px, 4.2vw, 54px);
            line-height: 1.06;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .contact-page-sub {
            margin: 10px 0 0;
            max-width: 860px;
            color: #334b6f;
            font-size: 16px;
            line-height: 1.5;
            font-weight: 500;
        }

        .contact-page-info {
            background: #ffffff;
            padding: 0.9rem 0 0;
        }

        .contact-page-cards {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }

        .contact-info-card {
            border: 1px solid #e0e6ef;
            background: #ffffff;
            box-shadow: 0 10px 20px rgba(10, 22, 44, 0.06);
            padding: 18px;
            display: grid;
            align-content: start;
            gap: 8px;
        }

        .contact-info-card h2 {
            margin: 0;
            color: #202d57;
            font-size: 24px;
            line-height: 1.12;
            font-weight: 800;
            letter-spacing: -0.01em;
        }

        .contact-info-card p {
            margin: 0;
            color: #2f476b;
            font-size: 16px;
            line-height: 1.6;
            font-weight: 500;
        }

        .contact-info-card a {
            color: #cc0001;
            text-decoration: none;
            font-weight: 600;
        }

        .contact-info-card small {
            color: #5f738d;
            font-size: 12px;
            line-height: 1.4;
            font-weight: 600;
        }

        .offer-request {
            padding: 2.6rem 0 2.6rem;
            background: #fdfdfd;
        }

        .offer-request-layout {
            position: relative;
            display: grid;
            grid-template-columns: minmax(340px, 1.05fr) minmax(360px, 0.9fr);
            gap: 24px;
            align-items: start;
            min-height: 520px;
        }

        .offer-request-left {
            position: relative;
            min-height: 500px;
            padding: 64px 52px;
            background: transparent;
            overflow: hidden;
        }

        .offer-request-mark {
            position: absolute;
            top: 24px;
            left: 24px;
            width: 220px;
            height: 220px;
            border: 10px solid #eceef2;
            border-radius: 24px;
            opacity: 0.9;
        }

        .offer-request-mark::before {
            content: '';
            position: absolute;
            width: 36px;
            height: 36px;
            left: 28px;
            bottom: -16px;
            background: #f5f6f8;
            border-left: 10px solid #eceef2;
            border-bottom: 10px solid #eceef2;
            transform: rotate(-45deg);
            border-bottom-left-radius: 8px;
        }

        .offer-request-copy {
            position: relative;
            z-index: 2;
            max-width: 430px;
            margin-left: 160px;
        }

        .offer-request-title {
            margin: 0;
            color: #222d57;
            font-size: 50px;
            line-height: 1.04;
            letter-spacing: -0.02em;
            font-weight: 800;
        }

        .offer-request-desc {
            margin: 18px 0 0;
            color: #24395c;
            font-size: 17px;
            line-height: 1.45;
            max-width: 400px;
        }

        .offer-request-phones {
            margin-top: 20px;
            display: grid;
            gap: 6px;
        }

        .offer-request-phone {
            color: #cc0001;
            font-size: 38px;
            line-height: 1.05;
            font-weight: 500;
            text-decoration: none;
            width: fit-content;
        }

        .offer-request-hours {
            margin: 18px 0 0;
            color: #273e66;
            font-size: 15px;
        }

        .offer-request-call {
            margin-top: 26px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 60px;
            min-width: 220px;
            padding: 0 22px;
            border: 1px solid #e3e6ee;
            background: #ffffff;
            color: #1f2f55;
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            box-shadow: 0 10px 18px rgba(10, 25, 48, 0.08);
        }

        .offer-request-call svg {
            width: 20px;
            height: 20px;
            color: #cc0001;
            display: block;
        }

        .offer-request-form-wrap {
            position: relative;
            z-index: 4;
            padding-top: 20px;
        }

        .offer-request-form-wrap::after {
            content: '';
            position: absolute;
            top: 30px;
            left: 12px;
            right: -12px;
            bottom: -12px;
            background: #dfe2e8;
            z-index: -1;
        }

        .offer-request-form-card {
            position: relative;
            background: #f8f8fa;
            border: 1px solid #e4e7ee;
            padding: 28px 26px 24px;
            min-height: 520px;
        }

        .offer-request-form-title {
            margin: 0;
            color: #1f2f55;
            font-size: 22px;
            line-height: 1.2;
            font-weight: 800;
        }

        .offer-request-form-sub {
            margin: 8px 0 0;
            color: #314a6c;
            font-size: 16px;
            line-height: 1.45;
        }

        .offer-request-form {
            margin-top: 22px;
            display: grid;
            gap: 10px;
        }

        .offer-request-field,
        .offer-request-textarea,
        .offer-request-file {
            width: 100%;
            border: 1px solid #dde2ea;
            background: #ffffff;
            color: #1e3156;
            font-family: inherit;
            font-size: 15px;
            padding: 0 14px;
            outline: none;
        }

        .offer-request-field {
            height: 50px;
        }

        .offer-request-field::placeholder,
        .offer-request-textarea::placeholder {
            color: #2a3f66;
            opacity: 1;
        }

        .offer-request-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .offer-request-textarea {
            min-height: 180px;
            resize: vertical;
            padding-top: 14px;
            padding-bottom: 14px;
        }

        .offer-request-file {
            height: 50px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #506384;
            cursor: pointer;
        }

        .offer-request-file svg {
            width: 16px;
            height: 16px;
            color: #7d8ca4;
        }

        .offer-request-actions {
            margin-top: 10px;
            display: grid;
            grid-template-columns: auto 1fr;
            align-items: center;
            gap: 16px;
        }

        .offer-request-submit {
            border: 0;
            background: #1f2a55;
            color: #fff;
            min-height: 52px;
            padding: 0 36px;
            font-family: inherit;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .offer-request-note {
            margin: 0;
            color: #98a2b3;
            font-size: 13px;
            line-height: 1.4;
        }

        .contact-hidden-file {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .offer-request-feedback {
            margin: 10px 0 0;
            padding: 10px 12px;
            font-size: 13px;
            line-height: 1.45;
            font-weight: 600;
            border: 1px solid #dbe3ee;
            background: #f8fbff;
            color: #2a4469;
            display: grid;
            gap: 4px;
        }

        .offer-request-feedback.success {
            border-color: #c8dfca;
            background: #f3fbf3;
            color: #1f6b2a;
        }

        .offer-request-feedback.error {
            border-color: #f0c7c7;
            background: #fff4f4;
            color: #9f1f1f;
        }

        .offer-request-feedback p {
            margin: 0;
        }

        .handi-band {
            padding: 2.6rem 0 2.6rem;
            background: #ffffff;
        }

        .handi-visual {
            position: relative;
            min-height: 430px;
            background: #cfd6de;
            overflow: hidden;
        }

        .handi-bg {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 50%;
            background-size: cover;
            background-position: center;
        }

        .handi-bg.left {
            left: 0;
            background-image: url('/images/handi1.png');
        }

        .handi-bg.right {
            right: 0;
            background-image: url('/images/handi2.png');
        }

        .handi-overlay {
            position: absolute;
            left: 50%;
            bottom: 34px;
            transform: translateX(-50%);
            width: min(1700px, calc(100% - 120px));
            background: #f8f8fa;
            border: 1px solid #dde2ea;
            box-shadow: 0 16px 28px rgba(10, 22, 44, 0.14);
            display: grid;
            grid-template-columns: 1fr 1fr;
            z-index: 3;
        }

        .handi-item {
            min-height: 132px;
            padding: 26px 34px;
            display: grid;
            grid-template-columns: 92px 1fr;
            align-items: center;
            gap: 16px;
            text-decoration: none;
            color: inherit;
        }

        .handi-item + .handi-item {
            border-left: 1px solid #dde2ea;
        }

        .handi-icon {
            width: 72px;
            height: 72px;
            display: grid;
            place-items: center;
            color: #cc0001;
        }

        .handi-icon svg {
            width: 58px;
            height: 58px;
            display: block;
            color: inherit;
        }

        .handi-title {
            margin: 0;
            color: #1d2f58;
            font-size: 24px;
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.01em;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .handi-title .red {
            color: #cc0001;
        }

        .handi-arrow {
            color: #cc0001;
            font-weight: 700;
            margin-left: 6px;
        }

        .handi-sub {
            margin: 8px 0 0;
            color: #223a63;
            font-size: 14px;
            line-height: 1.35;
        }

        .handi-item:hover .handi-title {
            color: #cc0001;
        }

        .home-blog {
            padding: 1.8rem 0 2.4rem;
            background: #ffffff;
        }

        .home-blog-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .home-blog-title {
            margin: 0;
            color: #202d57;
            font-size: 52px;
            font-weight: 800;
            letter-spacing: -0.015em;
            line-height: 1.08;
        }

        .home-blog-tabs {
            margin-top: 10px;
            display: inline-flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px 22px;
        }

        .home-blog-tab {
            text-decoration: none;
            color: #22365f;
            font-size: 16px;
            font-weight: 700;
        }

        .home-blog-tab:hover {
            color: #cc0001;
        }

        .home-blog-tab.is-active {
            color: #cc0001;
            text-decoration: underline;
            text-underline-offset: 3px;
            text-decoration-thickness: 2px;
        }

        .home-blog-feature {
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            background: #ffffff;
            border: 1px solid #e1e6ef;
            box-shadow: 0 10px 20px rgba(10, 22, 44, 0.08);
            overflow: hidden;
        }

        .home-blog-feature-image {
            position: relative;
            min-height: 360px;
            background: #e8edf4;
        }

        .home-blog-feature-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .home-blog-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: #cc0001;
            color: #fff;
            padding: 6px 10px;
            font-size: 13px;
            line-height: 1;
            font-weight: 700;
        }

        .home-blog-feature-body {
            padding: 24px 28px;
            display: grid;
            align-content: start;
            gap: 10px;
        }

        .home-blog-date {
            margin: 0;
            color: #cc0001;
            font-size: 14px;
            font-weight: 600;
        }

        .home-blog-feature-link {
            text-decoration: none;
            color: inherit;
        }

        .home-blog-feature-title {
            margin: 0;
            color: #202d57;
            font-size: 30px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: -0.01em;
        }

        .home-blog-feature-excerpt {
            margin: 0;
            color: #2d2d2d;
            font-size: 16px;
            line-height: 1.52;
            font-weight: 700;
            white-space: pre-line;
        }

        .home-blog-feature-content {
            margin: 0;
            color: #23355a;
            font-size: 15px;
            line-height: 1.55;
            white-space: pre-line;
        }

        .home-blog-grid {
            margin-top: 18px;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
        }

        .home-blog-card {
            text-decoration: none;
            color: inherit;
            display: grid;
            gap: 8px;
        }

        .home-blog-card-image {
            position: relative;
            height: 150px;
            background: #ebf0f5;
            overflow: hidden;
        }

        .home-blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .home-blog-card-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: #ffffff;
            color: #22375f;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 8px;
            border: 1px solid #e1e6ef;
        }

        .home-blog-card-date {
            margin: 0;
            color: #cc0001;
            font-size: 12px;
            line-height: 1.4;
            font-weight: 600;
        }

        .home-blog-card-title {
            margin: 0;
            color: #1d2f56;
            font-size: 16px;
            line-height: 1.35;
            font-weight: 700;
        }

        .home-blog-card-excerpt {
            margin: 0;
            color: #2b4168;
            font-size: 13px;
            line-height: 1.45;
            display: -webkit-box;
            line-clamp: 3;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .home-blog-card-content {
            margin: 0;
            color: #395072;
            font-size: 13px;
            line-height: 1.45;
            display: -webkit-box;
            line-clamp: 3;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .home-blog-more-wrap {
            margin-top: 20px;
            display: grid;
            place-items: center;
        }

        .home-blog-more {
            text-decoration: none;
            min-height: 52px;
            min-width: 160px;
            background: #1f2a55;
            color: #ffffff;
            border: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 0 18px;
            font-size: 16px;
            font-weight: 700;
            line-height: 1;
        }

        .home-blog-empty {
            margin-top: 12px;
            border: 1px solid #dde4ee;
            background: #f8fafc;
            color: #4d5f79;
            font-size: 15px;
            font-weight: 600;
            min-height: 180px;
            display: grid;
            place-items: center;
            text-align: center;
            padding: 16px;
        }

        .news-page-hero {
            background: radial-gradient(circle at 14% 20%, rgba(204, 0, 1, 0.12) 0%, rgba(204, 0, 1, 0) 42%),
                        linear-gradient(180deg, #f5f8fc 0%, #eef3f9 100%);
            padding: 1.6rem 0 0.9rem;
        }

        .news-page-hero-shell {
            border: 1px solid #dbe3ee;
            background: linear-gradient(130deg, #ffffff 0%, #f8fbff 58%, #edf2f8 100%);
            box-shadow: 0 18px 34px rgba(10, 22, 44, 0.09);
            padding: 28px 32px;
        }

        .news-page-eyebrow {
            margin: 0;
            color: #cc0001;
            font-size: 12px;
            line-height: 1.2;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.07em;
        }

        .news-page-title {
            margin: 10px 0 0;
            color: #1f2f58;
            font-size: clamp(30px, 4.2vw, 54px);
            line-height: 1.06;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .news-page-sub {
            margin: 10px 0 0;
            max-width: 860px;
            color: #334b6f;
            font-size: 16px;
            line-height: 1.5;
            font-weight: 500;
        }

        .news-page-actions {
            margin-top: 18px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .news-page-btn {
            min-height: 44px;
            padding: 0 18px;
            text-decoration: none;
            font-size: 14px;
            line-height: 1;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .news-page-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 14px rgba(10, 22, 44, 0.12);
        }

        .news-page-btn.primary {
            background: #1f2f58;
            color: #ffffff;
        }

        .news-page-btn.ghost {
            background: #ffffff;
            border: 1px solid #d7dfea;
            color: #1f2f58;
        }

        .news-page-blog {
            padding-top: 0.95rem;
            background: #ffffff;
        }

        .news-page-image-fallback {
            width: 100%;
            height: 100%;
            display: grid;
            place-items: center;
            color: #718399;
            font-size: 13px;
            font-weight: 700;
            background: linear-gradient(180deg, #eff4f8 0%, #e6edf4 100%);
            text-align: center;
            padding: 10px;
        }

        .news-page-pagination {
            margin-top: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .news-page-page-btn {
            min-height: 44px;
            min-width: 116px;
            border: 1px solid #d6dfe9;
            background: #ffffff;
            color: #1f2f58;
            text-decoration: none;
            font-size: 14px;
            line-height: 1;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 12px;
            transition: border-color 0.2s ease, color 0.2s ease;
        }

        .news-page-page-btn:hover {
            border-color: #cc0001;
            color: #cc0001;
        }

        .news-page-page-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .news-page-page-info {
            color: #334b6f;
            font-size: 14px;
            line-height: 1.2;
            font-weight: 600;
            padding: 0 6px;
        }

        .news-single {
            background: #ffffff;
            padding: 0 0 2.1rem;
        }

        .news-single-shell {
            border: 1px solid #e0e6ef;
            background: #ffffff;
            box-shadow: 0 12px 24px rgba(10, 22, 44, 0.08);
            overflow: hidden;
        }

        .news-single-head {
            padding: 18px 22px 14px;
            border-bottom: 1px solid #e5ebf2;
            display: grid;
            gap: 8px;
        }

        .news-single-category {
            width: fit-content;
            background: #cc0001;
            color: #ffffff;
            font-size: 12px;
            line-height: 1;
            font-weight: 800;
            padding: 6px 10px;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .news-single-meta {
            margin: 0;
            color: #3f5578;
            font-size: 14px;
            line-height: 1.3;
            font-weight: 600;
        }

        .news-single-figure {
            border-bottom: 1px solid #e5ebf2;
            background: #ecf1f7;
        }

        .news-single-image {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
            display: block;
        }

        .news-single-image-fallback {
            min-height: 260px;
        }

        .news-single-content {
            padding: 22px;
            display: grid;
            gap: 14px;
        }

        .news-single-excerpt {
            margin: 0;
            color: #1f355b;
            font-size: 18px;
            line-height: 1.55;
            font-weight: 700;
        }

        .news-single-body {
            color: #253b61;
            font-size: 16px;
            line-height: 1.78;
            white-space: normal;
            word-break: break-word;
        }

        .news-single-foot {
            border-top: 1px solid #e5ebf2;
            padding: 16px 22px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .faq-page-hero {
            background: radial-gradient(circle at 12% 20%, rgba(204, 0, 1, 0.11) 0%, rgba(204, 0, 1, 0) 44%),
                        linear-gradient(180deg, #f4f8fc 0%, #eef3fa 100%);
            padding: 1.8rem 0 0.9rem;
        }

        .faq-page-hero-shell {
            border: 1px solid #dbe3ee;
            background: linear-gradient(130deg, #ffffff 0%, #f7fafe 60%, #edf2f8 100%);
            box-shadow: 0 18px 34px rgba(10, 22, 44, 0.09);
            padding: 28px 32px;
        }

        .faq-page-eyebrow {
            margin: 0;
            color: #cc0001;
            font-size: 12px;
            line-height: 1.2;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.07em;
        }

        .faq-page-title {
            margin: 10px 0 0;
            color: #1f2f58;
            font-size: clamp(32px, 4.2vw, 54px);
            line-height: 1.06;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .faq-page-sub {
            margin: 10px 0 0;
            max-width: 860px;
            color: #334b6f;
            font-size: 16px;
            line-height: 1.5;
            font-weight: 500;
        }

        .faq-page-chip-row {
            margin-top: 18px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .faq-page-chip {
            min-height: 40px;
            padding: 0 14px;
            border: 1px solid #d4dcea;
            background: #ffffff;
            color: #1f2f58;
            text-decoration: none;
            font-size: 14px;
            line-height: 1;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: border-color 0.2s ease, color 0.2s ease;
        }

        .faq-page-chip:hover {
            border-color: #cc0001;
            color: #cc0001;
        }

        .faq-page-content {
            background: #ffffff;
            padding: 0.9rem 0 1.7rem;
        }

        .faq-page-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .faq-group-card {
            border: 1px solid #e0e6ef;
            background: #ffffff;
            box-shadow: 0 10px 20px rgba(10, 22, 44, 0.06);
            padding: 18px;
            display: grid;
            align-content: start;
            gap: 12px;
        }

        .faq-group-title {
            margin: 0;
            color: #202d57;
            font-size: 24px;
            line-height: 1.12;
            font-weight: 800;
            letter-spacing: -0.01em;
        }

        .faq-list {
            display: grid;
            gap: 8px;
        }

        .faq-item {
            border: 1px solid #e2e8f1;
            background: #f9fbfe;
        }

        .faq-item summary {
            list-style: none;
            cursor: pointer;
            position: relative;
            padding: 14px 38px 14px 14px;
            color: #1f335b;
            font-size: 15px;
            line-height: 1.45;
            font-weight: 700;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '+';
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #cc0001;
            font-size: 20px;
            line-height: 1;
            font-weight: 700;
        }

        .faq-item[open] summary::after {
            content: '-';
        }

        .faq-answer {
            padding: 0 14px 14px;
        }

        .faq-answer p {
            margin: 0;
            color: #344b6f;
            font-size: 14px;
            line-height: 1.58;
            font-weight: 500;
        }

        .faq-help {
            background: #f1f4f9;
            padding: 0 0 2.3rem;
        }

        .faq-help-shell {
            border: 1px solid #dbe3ee;
            background: #ffffff;
            box-shadow: 0 14px 26px rgba(10, 22, 44, 0.08);
            padding: 22px;
            display: grid;
            grid-template-columns: 1.2fr auto auto;
            align-items: center;
            gap: 18px;
        }

        .faq-help-eyebrow {
            margin: 0;
            color: #cc0001;
            font-size: 11px;
            line-height: 1.2;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .faq-help-title {
            margin: 8px 0 0;
            color: #1f2f58;
            font-size: 30px;
            line-height: 1.08;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .faq-help-sub {
            margin: 8px 0 0;
            color: #384f73;
            font-size: 14px;
            line-height: 1.5;
            font-weight: 500;
            max-width: 520px;
        }

        .faq-help-contacts {
            display: grid;
            gap: 4px;
        }

        .faq-help-contacts a {
            width: fit-content;
            color: #cc0001;
            text-decoration: none;
            font-size: 27px;
            line-height: 1;
            font-weight: 500;
            letter-spacing: -0.02em;
        }

        .faq-help-contacts p {
            margin: 6px 0 0;
            color: #40577c;
            font-size: 13px;
            line-height: 1.4;
            font-weight: 600;
        }

        .faq-help-actions {
            display: grid;
            gap: 8px;
        }

        .faq-help-btn {
            min-height: 44px;
            padding: 0 14px;
            text-decoration: none;
            font-size: 14px;
            line-height: 1;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
        }

        .faq-help-btn.primary {
            background: #1f2f58;
            color: #ffffff;
        }

        .faq-help-btn.ghost {
            border: 1px solid #d5deea;
            background: #ffffff;
            color: #1f2f58;
        }

        .brands-page-hero {
            background: radial-gradient(circle at 14% 20%, rgba(204, 0, 1, 0.11) 0%, rgba(204, 0, 1, 0) 44%),
                        linear-gradient(180deg, #f4f8fc 0%, #eef3fa 100%);
            padding: 1.8rem 0 0.9rem;
        }

        .brands-page-hero-shell {
            border: 1px solid #dbe3ee;
            background: linear-gradient(130deg, #ffffff 0%, #f7fafe 60%, #edf2f8 100%);
            box-shadow: 0 18px 34px rgba(10, 22, 44, 0.09);
            padding: 28px 32px;
        }

        .brands-page-eyebrow {
            margin: 0;
            color: #cc0001;
            font-size: 12px;
            line-height: 1.2;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.07em;
        }

        .brands-page-title {
            margin: 10px 0 0;
            color: #1f2f58;
            font-size: clamp(32px, 4.2vw, 54px);
            line-height: 1.06;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .brands-page-sub {
            margin: 10px 0 0;
            max-width: 820px;
            color: #334b6f;
            font-size: 16px;
            line-height: 1.5;
            font-weight: 500;
        }

        .brands-page-content {
            background: #ffffff;
            padding: 0.9rem 0 2.2rem;
        }

        .brands-page-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .brands-page-card {
            border: 1px solid #e0e6ef;
            background: #ffffff;
            box-shadow: 0 10px 20px rgba(10, 22, 44, 0.06);
            padding: 16px;
            display: grid;
            align-content: start;
            gap: 12px;
        }

        .brands-page-logo-link {
            border: 1px solid #e4e9f1;
            background: #f8fbff;
            min-height: 120px;
            display: grid;
            place-items: center;
            padding: 10px;
            text-decoration: none;
        }

        .brands-page-logo-link img {
            width: 100%;
            max-width: 170px;
            max-height: 64px;
            object-fit: contain;
            display: block;
        }

        .brands-page-logo-fallback {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: #1f2f58;
            color: #ffffff;
            font-size: 25px;
            line-height: 1;
            font-weight: 800;
            display: grid;
            place-items: center;
        }

        .brands-page-meta {
            display: grid;
            gap: 4px;
        }

        .brands-page-brand-name {
            margin: 0;
            color: #1f2f58;
            font-size: 18px;
            line-height: 1.2;
            font-weight: 800;
        }

        .brands-page-brand-count {
            margin: 0;
            color: #4b6182;
            font-size: 13px;
            line-height: 1.35;
            font-weight: 600;
        }

        .brands-page-cats {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 8px;
        }

        .brands-page-cats li {
            display: grid;
            grid-template-columns: 12px 1fr;
            align-items: start;
            gap: 7px;
        }

        .brands-page-cats li::before {
            content: '';
            width: 10px;
            height: 2px;
            margin-top: 9px;
            background: #cc0001;
        }

        .brands-page-cats a {
            color: #2f476b;
            text-decoration: none;
            font-size: 14px;
            line-height: 1.4;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .brands-page-cats a:hover {
            color: #cc0001;
        }

        .brands-page-card-empty {
            margin: 0;
            color: #60758f;
            font-size: 13px;
            line-height: 1.45;
            font-weight: 500;
        }

        .brands-page-more {
            margin-top: 2px;
            min-height: 42px;
            background: #1f2f58;
            color: #ffffff;
            text-decoration: none;
            font-size: 13px;
            line-height: 1;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 12px;
        }

        .brands-page-empty {
            border: 1px solid #dde4ee;
            background: #f8fafc;
            color: #4d5f79;
            font-size: 15px;
            font-weight: 600;
            min-height: 180px;
            display: grid;
            place-items: center;
            text-align: center;
            padding: 16px;
        }

        .home-newsletter {
            padding: 2.2rem 0 2.4rem;
            background: #f0f1f4;
        }

        .home-newsletter-shell {
            position: relative;
            min-height: 420px;
            overflow: hidden;
            display: grid;
            grid-template-columns: minmax(420px, 760px) minmax(420px, 1fr) minmax(230px, 360px);
            align-items: center;
            gap: 0;
            padding: 0 36px;
        }

        .home-newsletter-shell::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: min(36vw, 520px);
            height: min(68%, 340px);
            background: linear-gradient(135deg, rgba(14, 26, 73, 0.96) 0%, rgba(14, 26, 73, 0.92) 100%);
            z-index: 1;
        }

        .home-newsletter-shell::after {
            content: 'tm';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-28%, -46%);
            font-size: clamp(180px, 25vw, 360px);
            line-height: 1;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.2);
            z-index: 1;
            pointer-events: none;
            text-transform: lowercase;
        }

        .home-newsletter-info {
            position: relative;
            z-index: 2;
            background: #ffffff;
            border: 1px solid #e3e7ef;
            box-shadow: 0 14px 24px rgba(7, 24, 54, 0.12);
            padding: 36px 44px;
            margin-left: clamp(10px, 4vw, 88px);
            max-width: 560px;
        }

        .home-newsletter-info-icon {
            width: 40px;
            height: 40px;
            display: grid;
            place-items: center;
            color: #cc0001;
            margin-bottom: 12px;
        }

        .home-newsletter-info-icon svg {
            width: 34px;
            height: 34px;
            display: block;
        }

        .home-newsletter-info h3 {
            margin: 0;
            color: #1f2f58;
            font-size: 21px;
            line-height: 1.06;
            font-weight: 800;
            letter-spacing: -0.015em;
        }

        .home-newsletter-list {
            margin: 18px 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 8px;
        }

        .home-newsletter-list li {
            display: grid;
            grid-template-columns: 16px 1fr;
            align-items: start;
            gap: 10px;
            color: #243b62;
            font-size: 14px;
            line-height: 1.28;
        }

        .home-newsletter-list li::before {
            content: '';
            width: 16px;
            height: 2px;
            background: #cc0001;
            margin-top: 9px;
        }

        .home-newsletter-main {
            position: relative;
            z-index: 2;
            padding: 0 34px;
            color: #22375e;
        }

        .home-newsletter-title {
            margin: 0;
            color: #1d2f57;
            font-size: 28px;
            line-height: 1.08;
            font-weight: 500;
            letter-spacing: -0.015em;
        }

        .home-newsletter-title span {
            color: #cc0001;
            font-weight: 800;
        }

        .home-newsletter-sub {
            margin: 10px 0 16px;
            color: #31476a;
            font-size: 14.5px;
            line-height: 1.4;
        }

        .home-newsletter-form {
            display: grid;
            gap: 12px;
            max-width: 760px;
        }

        .home-newsletter-form-row {
            display: grid;
            grid-template-columns: 1fr 180px;
        }

        .home-newsletter-input {
            height: 62px;
            border: 1px solid #d9e2ec;
            border-right: 0;
            background: #ffffff;
            font-family: inherit;
            font-size: 14.5px;
            padding: 0 26px;
            color: #1d2f57;
            outline: none;
        }

        .home-newsletter-input::placeholder {
            color: #687f96;
        }

        .home-newsletter-submit {
            border: 0;
            background: #1e2955;
            color: #ffffff;
            font-family: inherit;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .home-newsletter-consent {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #30496c;
            font-size: 10px;
        }

        .home-newsletter-consent input {
            width: 18px;
            height: 18px;
            margin: 0;
            accent-color: #1f2a55;
        }

        .home-newsletter-consent a {
            color: #30496c;
        }

        .home-newsletter-feedback {
            margin: 0;
            font-size: 8px;
            font-weight: 600;
            color: #1f2f58;
        }

        .home-newsletter-feedback.error {
            color: #b10000;
        }

        .home-newsletter-illustration {
            position: relative;
            z-index: 2;
            align-self: end;
            justify-self: end;
            margin-right: clamp(0px, 2vw, 18px);
        }

        .home-newsletter-illustration img {
            width: min(100%, 320px);
            max-height: 340px;
            object-fit: contain;
            display: block;
        }

        .home-contact-panel {
            background: #f0f1f4;
            padding: 0 0 2.8rem;
        }

        .home-contact-panel-shell {
            border-top: 1px solid #d4dae4;
            padding: 34px 0 10px;
        }

        .home-contact-grid {
            display: grid;
            grid-template-columns: 1.15fr 1.2fr 1.2fr 1.45fr;
            gap: 34px;
        }

        .home-contact-title {
            margin: 0 0 14px;
            color: #1f2f58;
            font-size: 18px;
            line-height: 1.14;
            font-weight: 800;
        }

        .home-contact-links,
        .home-contact-payment-list {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 8px;
        }

        .home-contact-links li,
        .home-contact-payment-list li {
            color: #22395f;
            font-size: 15px;
            line-height: 1.3;
        }

        .home-contact-links a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .home-contact-links a:hover {
            color: #cc0001;
        }

        .home-contact-support {
            display: grid;
            align-content: start;
            gap: 6px;
        }

        .home-contact-phone {
            color: #cc0001;
            text-decoration: none;
            font-size: 28px;
            line-height: 1;
            font-weight: 500;
            letter-spacing: -0.02em;
        }

        .home-contact-worktime {
            margin: 8px 0 0;
            color: #4d5f79;
            font-size: 14px;
            line-height: 1.4;
            font-weight: 500;
        }

        .home-contact-support-links {
            margin-top: 2px;
            display: grid;
            gap: 6px;
        }

        .home-contact-support-links a {
            width: fit-content;
            color: #1f2f58;
            text-decoration: none;
            font-size: 15px;
            line-height: 1.2;
            font-weight: 800;
            transition: color 0.2s ease;
        }

        .home-contact-support-links a:hover {
            color: #cc0001;
        }

        .home-contact-facebook {
            margin-top: 20px;
            min-height: 58px;
            border: 1px solid #cfd7e4;
            color: #1f2f58;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            width: fit-content;
            padding: 0 28px;
            font-size: 15px;
            line-height: 1;
            font-weight: 800;
            background: rgba(255, 255, 255, 0.65);
            transition: border-color 0.2s ease, color 0.2s ease;
        }

        .home-contact-facebook span:first-child {
            color: #1f2f58;
            font-size: 24px;
            line-height: 1;
            font-weight: 900;
            transform: translateY(-1px);
        }

        .home-contact-facebook:hover {
            color: #cc0001;
            border-color: #cc0001;
        }

        .home-contact-payment-list {
            gap: 11px;
        }

        .home-contact-payment-list li {
            position: relative;
            display: grid;
            grid-template-columns: 18px 1fr;
            align-items: start;
            gap: 10px;
        }

        .home-contact-payment-list li::before {
            content: '';
            width: 14px;
            height: 2px;
            margin-top: 10px;
            background: #cc0001;
        }

        .home-contact-payment-foot {
            margin-top: 18px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .home-contact-payment-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .home-contact-payment-badges span {
            min-height: 32px;
            border: 1px solid #cfd7e4;
            padding: 0 10px;
            background: #ffffff;
            color: #1f2f58;
            font-size: 12px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .home-contact-delivery {
            display: grid;
            grid-template-columns: 42px 1fr;
            align-items: center;
            gap: 10px;
            max-width: 290px;
            color: #1f2f58;
        }

        .home-contact-delivery p {
            margin: 0;
            font-size: 20px;
            line-height: 1.2;
            font-weight: 800;
        }

        .home-contact-delivery span {
            display: block;
            margin-top: 2px;
            font-size: 16px;
            line-height: 1.26;
            color: #2f4467;
        }

        .about-hero {
            background: radial-gradient(circle at 10% 18%, rgba(204, 0, 1, 0.1) 0%, rgba(204, 0, 1, 0) 44%),
                        linear-gradient(180deg, #f6f8fc 0%, #eef2f8 100%);
            padding: 2.6rem 0 1.8rem;
        }

        .about-hero-shell {
            position: relative;
            border: 1px solid #d8dee8;
            background: linear-gradient(125deg, #ffffff 0%, #f6f8fc 58%, #edf2f9 100%);
            box-shadow: 0 20px 42px rgba(11, 27, 52, 0.1);
            padding: 40px 46px;
            overflow: hidden;
        }

        .about-hero-shell::after {
            content: '';
            position: absolute;
            right: -62px;
            bottom: -62px;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(31, 47, 88, 0.15) 0%, rgba(31, 47, 88, 0) 70%);
            pointer-events: none;
        }

        .about-eyebrow {
            margin: 0;
            color: #cc0001;
            font-size: 13px;
            line-height: 1.2;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .about-title {
            margin: 12px 0 0;
            max-width: 920px;
            color: #1f2f58;
            font-size: clamp(30px, 3.6vw, 52px);
            line-height: 1.08;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .about-lead {
            margin: 14px 0 0;
            max-width: 860px;
            color: #344a70;
            font-size: 19px;
            line-height: 1.45;
            font-weight: 500;
        }

        .about-hero-actions {
            margin-top: 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .about-btn {
            min-height: 50px;
            padding: 0 22px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            line-height: 1;
            font-weight: 700;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
        }

        .about-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 18px rgba(11, 27, 52, 0.12);
        }

        .about-btn.primary {
            background: #1f2f58;
            color: #ffffff;
        }

        .about-btn.secondary {
            border: 1px solid #cfd7e4;
            background: #ffffff;
            color: #1f2f58;
        }

        .about-story {
            background: #eef2f8;
            padding: 0 0 2rem;
        }

        .about-story-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
        }

        .about-card {
            border: 1px solid #d7deea;
            background: #ffffff;
            padding: 28px;
            display: grid;
            align-content: start;
            gap: 12px;
        }

        .about-card h2 {
            margin: 0;
            color: #1f2f58;
            font-size: 28px;
            line-height: 1.08;
            font-weight: 800;
        }

        .about-card p {
            margin: 0;
            color: #30496d;
            font-size: 16px;
            line-height: 1.6;
        }

        .about-values {
            background: #eef2f8;
            padding: 0 0 2rem;
        }

        .about-section-title {
            margin: 0 0 16px;
            color: #1f2f58;
            font-size: 34px;
            line-height: 1.08;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .about-values-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .about-value-item {
            border: 1px solid #d7deea;
            background: #ffffff;
            padding: 18px;
            display: grid;
            align-content: start;
            gap: 10px;
        }

        .about-value-item h3 {
            margin: 0;
            color: #1f2f58;
            font-size: 20px;
            line-height: 1.18;
            font-weight: 800;
        }

        .about-value-item p {
            margin: 0;
            color: #3a4e70;
            font-size: 14px;
            line-height: 1.5;
        }

        .about-contact {
            background: #eef2f8;
            padding: 0 0 2.6rem;
        }

        .about-contact-shell {
            border: 1px solid #d7deea;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
            box-shadow: 0 16px 30px rgba(11, 27, 52, 0.08);
            padding: 28px;
            display: grid;
            grid-template-columns: 1.45fr 1fr;
            gap: 24px;
        }

        .about-address {
            margin: 0;
            color: #2f4669;
            font-size: 16px;
            line-height: 1.58;
            font-weight: 500;
        }

        .about-address strong {
            color: #1f2f58;
            font-weight: 800;
        }

        .about-contact-phones {
            margin-top: 16px;
            display: grid;
            gap: 6px;
        }

        .about-contact-phones a {
            width: fit-content;
            color: #cc0001;
            text-decoration: none;
            font-size: 31px;
            line-height: 1.08;
            letter-spacing: -0.02em;
            font-weight: 500;
        }

        .about-working-hours {
            margin: 12px 0 0;
            color: #40587d;
            font-size: 15px;
            line-height: 1.45;
            font-weight: 600;
        }

        .about-contact-side {
            border: 1px solid #dce2ec;
            background: #ffffff;
            padding: 18px;
            display: grid;
            align-content: start;
            gap: 10px;
        }

        .about-contact-side h3 {
            margin: 0;
            color: #1f2f58;
            font-size: 19px;
            line-height: 1.2;
            font-weight: 800;
        }

        .about-contact-side ul {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 8px;
        }

        .about-contact-side li {
            color: #324c6f;
            font-size: 14px;
            line-height: 1.45;
            display: grid;
            grid-template-columns: 13px 1fr;
            gap: 8px;
        }

        .about-contact-side li::before {
            content: '';
            width: 11px;
            height: 2px;
            margin-top: 8px;
            background: #cc0001;
        }

        .about-side-link {
            margin-top: 4px;
            width: fit-content;
            min-height: 44px;
            background: #1f2f58;
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            line-height: 1;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 16px;
        }

        @media (max-width: 980px) {
            .about-hero-shell {
                padding: 30px 24px;
            }

            .about-lead {
                font-size: 16px;
            }

            .about-story-grid,
            .about-values-grid,
            .about-contact-shell {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .about-section-title {
                font-size: 28px;
            }

            .about-card h2 {
                font-size: 24px;
            }

            .about-contact-phones a {
                font-size: 25px;
            }

            .about-contact-shell {
                padding: 22px;
            }
        }

        @media (max-width: 640px) {
            .about-hero {
                padding-top: 1.2rem;
            }

            .about-hero-shell {
                padding: 18px 14px;
            }

            .about-eyebrow {
                font-size: 11px;
            }

            .about-title {
                margin-top: 8px;
                font-size: 24px;
            }

            .about-lead {
                margin-top: 10px;
                font-size: 13px;
            }

            .about-hero-actions {
                margin-top: 14px;
                display: grid;
                grid-template-columns: 1fr;
            }

            .about-btn {
                width: 100%;
                min-height: 42px;
                font-size: 13px;
            }

            .about-story,
            .about-values,
            .about-contact {
                padding-bottom: 1.4rem;
            }

            .about-story-grid,
            .about-values-grid,
            .about-contact-shell {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .about-card,
            .about-contact-shell {
                padding: 14px;
            }

            .about-card h2 {
                font-size: 18px;
            }

            .about-card p {
                font-size: 12px;
            }

            .about-section-title {
                margin-bottom: 10px;
                font-size: 22px;
            }

            .about-value-item {
                padding: 12px;
                gap: 8px;
            }

            .about-value-item h3 {
                font-size: 15px;
            }

            .about-value-item p {
                font-size: 11px;
            }

            .about-address {
                font-size: 12px;
            }

            .about-contact-phones {
                margin-top: 10px;
            }

            .about-contact-phones a {
                font-size: 21px;
            }

            .about-working-hours {
                font-size: 11px;
            }

            .about-contact-side {
                padding: 12px;
            }

            .about-contact-side h3 {
                font-size: 15px;
            }

            .about-contact-side li {
                font-size: 11px;
                grid-template-columns: 10px 1fr;
                gap: 6px;
            }

            .about-contact-side li::before {
                width: 8px;
            }

            .about-side-link {
                min-height: 38px;
                font-size: 11px;
                width: 100%;
            }
        }

        .brands {
            border: 1px solid var(--line);
            border-radius: 14px;
            background: #fff;
            padding: 0.75rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 0.55rem;
        }

        .brand-item {
            border: 1px solid #e2eaf1;
            border-radius: 12px;
            min-height: 62px;
            background: #fbfdff;
            display: grid;
            place-items: center;
            padding: 0.45rem;
            text-align: center;
            color: #314759;
            font-weight: 700;
            font-size: 0.84rem;
        }

        .brand-item img { max-width: 100%; max-height: 40px; object-fit: contain; }

        .news {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 0.72rem;
        }

        .post {
            border: 1px solid var(--line);
            border-radius: 14px;
            background: #fff;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            display: grid;
            grid-template-rows: 150px auto;
        }

        .post img { width: 100%; height: 100%; object-fit: cover; background: #e7eef3; }
        .post-body { padding: 0.75rem; }
        .post-title { margin: 0 0 0.38rem; font-size: 0.96rem; }
        .post-excerpt { margin: 0; color: var(--muted); font-size: 0.84rem; }

        .cta {
            margin: 1.25rem 0 1.5rem;
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 1rem;
            background: linear-gradient(130deg, #ffffff 0%, #f1f8ff 60%, #e6f2fc 100%);
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 0.8rem;
        }

        .cta p { margin: 0.28rem 0 0; color: var(--muted); }

        .home-footer {
            padding: 0;
            background: #1f2751;
            color: #ffffff;
        }

        .home-footer-shell {
            position: relative;
            overflow: hidden;
            min-height: 170px;
            background: linear-gradient(90deg, rgba(31, 39, 81, 0.98) 0%, rgba(31, 39, 81, 0.94) 55%, rgba(31, 39, 81, 0.88) 100%);
            padding: 34px 30px 28px;
        }

        .home-footer-shell::before {
            content: '';
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: right center;
            z-index: 1;
        }

        .home-footer-content {
            position: relative;
            z-index: 2;
            max-width: 980px;
            display: grid;
            gap: 28px;
        }

        .home-footer-top {
            display: grid;
            grid-template-columns: auto 1fr;
            align-items: center;
            gap: 24px;
        }

        .home-footer-badges {
            display: grid;
            grid-template-columns: repeat(2, minmax(120px, 1fr));
            gap: 8px;
        }

        .home-footer-badge {
            min-height: 64px;
            border: 2px solid rgba(255, 255, 255, 0.66);
            border-radius: 12px;
            padding: 8px 10px;
            display: grid;
            place-items: center;
            text-align: center;
            font-size: 8px;
            line-height: 1.05;
            font-weight: 800;
            letter-spacing: 0.01em;
            background: rgba(255, 255, 255, 0.06);
        }

        .home-footer-badge small {
            display: block;
            margin-top: 4px;
            font-size: 6px;
            line-height: 1.2;
            font-weight: 600;
            letter-spacing: 0;
        }

        .home-footer-company {
            display: grid;
            gap: 4px;
        }

        .home-footer-company-name {
            margin: 0;
            font-size: 19px;
            line-height: 1.1;
            font-weight: 800;
        }

        .home-footer-company-address {
            margin: 0;
            font-size: 12px;
            line-height: 1.32;
            font-weight: 500;
        }

        .home-footer-bottom {
            margin: 0;
            font-size: 14px;
            line-height: 1.35;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            opacity: 0.96;
        }

        .home-footer-sep {
            opacity: 0.5;
        }

        .calc-hero {
            background:
                radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.88) 0%, transparent 42%),
                linear-gradient(140deg, #eef4fa 0%, #dceaf7 55%, #eaf3fb 100%);
            border-top: 1px solid #d8e4ef;
            border-bottom: 1px solid #d8e4ef;
        }

        .calc-hero-wrap {
            padding-top: 36px;
            padding-bottom: 34px;
        }

        .calc-hero-breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #536c84;
            font-size: 13px;
            line-height: 1;
            font-weight: 600;
            margin-bottom: 14px;
        }

        .calc-hero-breadcrumb a {
            color: inherit;
            text-decoration: none;
        }

        .calc-hero h1 {
            margin: 0;
            color: #21395f;
            font-size: 42px;
            line-height: 1.06;
            letter-spacing: -0.02em;
            font-weight: 800;
        }

        .calc-hero p {
            max-width: 900px;
            margin: 14px 0 0;
            color: #47617b;
            font-size: 17px;
            line-height: 1.35;
            font-weight: 500;
        }

        .calc-main {
            padding: 26px 0 36px;
            background: linear-gradient(180deg, #f5f9fd 0%, #edf4fa 100%);
        }

        .calc-grid {
            display: grid;
            grid-template-columns: 330px minmax(0, 1fr);
            gap: 16px;
            align-items: start;
        }

        .calc-panel {
            border: 1px solid #d7e3ee;
            background: #ffffff;
            border-radius: 14px;
            box-shadow: 0 10px 24px rgba(19, 43, 70, 0.08);
        }

        .calc-meta-panel {
            padding: 16px;
            position: sticky;
            top: 84px;
        }

        .calc-table-panel {
            padding: 16px;
        }

        .calc-panel h2 {
            margin: 0;
            color: #1f3960;
            font-size: 23px;
            line-height: 1.15;
            font-weight: 800;
        }

        .calc-sub {
            margin: 8px 0 14px;
            color: #4f6780;
            font-size: 13px;
            line-height: 1.3;
        }

        .calc-note {
            margin: 9px 0 0;
            color: #4f6680;
            font-size: 13px;
            line-height: 1.36;
        }

        .calc-meta-fields {
            margin-top: 14px;
            display: grid;
            gap: 10px;
        }

        .calc-field {
            display: grid;
            gap: 5px;
        }

        .calc-field span {
            color: #294668;
            font-size: 12px;
            line-height: 1.2;
            font-weight: 700;
        }

        .calc-field select,
        .calc-field input,
        .calc-table input {
            width: 100%;
            border: 1px solid #cfdeeb;
            border-radius: 9px;
            background: #ffffff;
            height: 38px;
            padding: 0 10px;
            color: #244161;
            font-size: 14px;
            font-family: inherit;
            outline: none;
        }

        .calc-field select:focus,
        .calc-field input:focus,
        .calc-table input:focus {
            border-color: #95b6d5;
            box-shadow: 0 0 0 3px rgba(15, 149, 221, 0.12);
        }

        .calc-summary {
            margin-top: 14px;
            padding: 12px 12px;
            border-radius: 10px;
            border: 1px solid #d8e5f2;
            background: linear-gradient(160deg, #f4f8fc 0%, #eaf2fa 100%);
            display: grid;
            gap: 8px;
        }

        .calc-summary-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            color: #2f4e71;
            font-size: 13px;
            line-height: 1.2;
            font-weight: 600;
        }

        .calc-summary-row strong {
            color: #c40000;
            font-size: 15px;
            font-weight: 800;
        }

        .calc-actions {
            margin-top: 12px;
            display: flex;
            justify-content: flex-end;
        }

        .calc-btn {
            border: 1px solid #253f62;
            background: #253f62;
            color: #ffffff;
            height: 40px;
            padding: 0 14px;
            border-radius: 9px;
            font-size: 13px;
            line-height: 1;
            font-weight: 700;
            cursor: pointer;
            font-family: inherit;
        }

        .calc-btn:hover {
            background: #1f3552;
        }

        .calc-table-wrap {
            overflow-x: auto;
            border: 1px solid #dce7f2;
            border-radius: 10px;
        }

        .calc-table {
            width: 100%;
            min-width: 620px;
            border-collapse: collapse;
        }

        .calc-table th,
        .calc-table td {
            border-bottom: 1px solid #e5edf5;
            padding: 9px 8px;
            vertical-align: middle;
            text-align: left;
        }

        .calc-table thead th {
            background: #f7fbff;
            color: #2d4a6b;
            font-size: 12px;
            line-height: 1.2;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .calc-room-name {
            display: inline-block;
            color: #243f60;
            font-size: 14px;
            line-height: 1.2;
            font-weight: 700;
        }

        .calc-table td strong {
            color: #c40000;
            font-size: 15px;
            line-height: 1;
            font-weight: 800;
            white-space: nowrap;
        }

        .calc-footnote {
            margin-top: 10px;
            color: #526b83;
            font-size: 12px;
            line-height: 1.35;
            font-weight: 500;
        }

        @media (max-width: 980px) {
            .callback-offcanvas-content {
                padding: 34px 34px 26px;
            }

            .callback-offcanvas-title {
                font-size: 17px;
            }

            .callback-offcanvas-sub {
                font-size: 11.5px;
            }

            .callback-offcanvas-form input,
            .callback-offcanvas-form textarea {
                font-size: 12px;
            }

            .callback-offcanvas-form input {
                height: 33px;
            }

            .callback-offcanvas-worktime {
                font-size: 10px;
            }

            .callback-offcanvas-submit {
                font-size: 13px;
                min-width: 250px;
                height: 31px;
            }

            .calc-hero-wrap {
                padding-top: 24px;
                padding-bottom: 24px;
            }

            .calc-hero h1 {
                font-size: 34px;
            }

            .calc-hero p {
                font-size: 15px;
            }

            .calc-grid {
                grid-template-columns: 1fr;
            }

            .calc-meta-panel {
                position: static;
            }

            .home-footer-shell {
                min-height: 0;
                padding: 24px 18px 20px;
            }

            .home-footer-content {
                gap: 14px;
            }

            .home-footer-top {
                grid-template-columns: 1fr;
                gap: 12px;
                align-items: start;
            }

            .home-footer-company-name {
                font-size: 11px;
            }

            .home-footer-company-address {
                font-size: 8.5px;
            }

            .home-footer-bottom {
                font-size: 7px;
                gap: 5px;
            }

            .home-newsletter-shell {
                grid-template-columns: 1fr;
                min-height: 0;
                padding: 20px;
                gap: 18px;
            }

            .home-newsletter-shell::before {
                top: 0;
                bottom: auto;
                transform: none;
                width: 100%;
                height: 220px;
            }

            .home-newsletter-shell::after {
                left: 50%;
                top: 36%;
                transform: translate(-50%, -50%);
                font-size: clamp(120px, 26vw, 190px);
            }

            .home-newsletter-info {
                margin-left: 0;
                max-width: 100%;
            }

            .home-newsletter-main {
                padding: 0;
            }

            .home-newsletter-title {
                font-size: 20px;
            }

            .home-newsletter-sub {
                font-size: 10px;
            }

            .home-newsletter-input {
                font-size: 11px;
            }

            .home-newsletter-submit {
                font-size: 12px;
            }

            .home-newsletter-consent {
                font-size: 8px;
            }

            .home-newsletter-illustration {
                display: none;
            }

            .home-contact-panel {
                padding-bottom: 2.2rem;
            }

            .home-contact-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 26px 24px;
            }

            .home-contact-title {
                font-size: 16px;
            }

            .home-contact-links li,
            .home-contact-payment-list li,
            .home-contact-support-links a {
                font-size: 14px;
            }

            .home-contact-phone {
                font-size: 24px;
            }

            .home-contact-worktime {
                font-size: 12px;
            }

            .home-contact-facebook {
                font-size: 14px;
                min-height: 50px;
                padding: 0 16px;
            }

            .home-contact-facebook span:first-child {
                font-size: 18px;
            }

            .home-contact-delivery p {
                font-size: 17px;
            }

            .home-contact-delivery span {
                font-size: 13px;
            }

            .news-page-hero-shell {
                padding: 22px 20px;
            }

            .news-page-sub {
                font-size: 14px;
            }

            .news-page-btn {
                min-height: 40px;
                font-size: 13px;
            }

            .home-blog-title {
                font-size: 36px;
            }

            .home-blog-feature {
                grid-template-columns: 1fr;
            }

            .home-blog-feature-image {
                min-height: 250px;
            }

            .home-blog-feature-title {
                font-size: 32px;
            }

            .home-blog-feature-excerpt,
            .home-blog-feature-content {
                font-size: 16px;
            }

            .home-blog-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .news-page-pagination {
                margin-top: 18px;
            }

            .news-page-page-btn {
                min-height: 40px;
                min-width: 100px;
            }

            .news-single-head,
            .news-single-content,
            .news-single-foot {
                padding-left: 16px;
                padding-right: 16px;
            }

            .news-single-image {
                max-height: 380px;
            }

            .news-single-excerpt {
                font-size: 16px;
            }

            .news-single-body {
                font-size: 15px;
                line-height: 1.7;
            }

            .faq-page-hero-shell {
                padding: 22px 20px;
            }

            .faq-page-sub {
                font-size: 14px;
            }

            .faq-page-grid {
                grid-template-columns: 1fr;
            }

            .faq-group-title {
                font-size: 22px;
            }

            .faq-item summary {
                font-size: 14px;
            }

            .faq-help-shell {
                grid-template-columns: 1fr;
                align-items: start;
                gap: 12px;
            }

            .faq-help-title {
                font-size: 26px;
            }

            .faq-help-contacts a {
                font-size: 24px;
            }

            .faq-help-actions {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .brands-page-hero-shell {
                padding: 22px 20px;
            }

            .brands-page-sub {
                font-size: 14px;
            }

            .brands-page-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .brands-page-brand-name {
                font-size: 17px;
            }

            .handi-visual {
                min-height: 360px;
            }

            .handi-overlay {
                width: calc(100% - 30px);
                bottom: 16px;
            }

            .handi-item {
                min-height: 118px;
                padding: 18px;
                grid-template-columns: 68px 1fr;
            }

            .handi-icon {
                width: 56px;
                height: 56px;
            }

            .handi-icon svg {
                width: 42px;
                height: 42px;
            }

            .handi-title {
                font-size: 14px;
            }

            .handi-sub {
                font-size: 8px;
            }

            .offer-request-layout {
                grid-template-columns: 1fr;
                gap: 16px;
                min-height: 0;
            }

            .contact-page-hero-shell {
                padding: 22px 20px;
            }

            .contact-page-sub {
                font-size: 14px;
            }

            .contact-page-cards {
                grid-template-columns: 1fr;
            }

            .contact-info-card h2 {
                font-size: 22px;
            }

            .contact-info-card p {
                font-size: 15px;
            }

            .offer-request-left {
                min-height: 0;
                padding: 26px 22px;
            }

            .offer-request-mark {
                display: none;
            }

            .offer-request-copy {
                margin-left: 0;
                max-width: none;
            }

            .offer-request-title { font-size: 26px; }
            .offer-request-desc { font-size: 16px; }
            .offer-request-phone { font-size: 24px; }
            .offer-request-hours { font-size: 14px; }

            .offer-request-form-wrap {
                padding-top: 0;
            }

            .offer-request-form-wrap::after {
                right: -8px;
                bottom: -8px;
            }

            .home-brands-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .home-brands-item {
                min-height: 168px;
            }

            .home-brand-cats-panel {
                position: static;
                inset: auto;
                opacity: 1;
                visibility: visible;
                transform: none;
                border: 0;
                border-top: 1px solid #edf0f4;
                margin-top: 10px;
                padding: 12px 0 0;
                background: transparent;
                min-height: auto;
            }

            .home-brands-item--bottom .home-brand-cats-panel {
                top: auto;
                bottom: auto;
            }

            .home-brand-cats-head {
                display: none;
            }

            .home-brand-cats-link { font-size: 14px; }
            .home-brand-cats-more { font-size: 16px; }

            .home-brands-cta {
                min-width: 320px;
                font-size: 18px;
            }

            .home-trust-card {
                grid-template-columns: 1fr;
                align-items: stretch;
                padding: 14px;
            }

            .home-trust-items {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 12px;
            }

            .home-trust-link {
                justify-content: center;
                width: 100%;
                padding: 14px 20px;
            }

            .action-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .action-price {
                font-size: 1.45rem;
            }

            .most-wanted-title {
                font-size: 1.15rem;
            }

            .most-wanted-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .hero,
            .hero-inner {
                height: 540px;
            }

            .hero-copy {
                max-width: 560px;
            }

            .hero-visual img {
                width: min(46vw, 620px);
            }

            .hero-title {
                font-size: 48px;
            }

            .hero-sub {
                font-size: 22px;
            }

            .cta { grid-template-columns: 1fr; }

            .header-main-row {
                grid-template-columns: 1fr;
                gap: 12px;
                padding-top: 12px;
                padding-bottom: 12px;
            }

            .header-actions {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                border-left: 0;
                border-top: 1px solid #E4E4E4;
            }

            .header-action {
                border-bottom: 1px solid #E4E4E4;
            }
        }

        @media (max-width: 768px) {
            .calc-hero h1 {
                font-size: 28px;
            }

            .calc-hero-breadcrumb {
                font-size: 12px;
            }

            .calc-panel {
                border-radius: 12px;
            }

            .calc-meta-panel,
            .calc-table-panel {
                padding: 12px;
            }

            .calc-panel h2 {
                font-size: 20px;
            }

            .calc-table {
                min-width: 680px;
            }

            .calc-table thead th {
                font-size: 11px;
            }

            .home-brands-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .action-card {
                grid-template-rows: 190px auto;
            }

            .action-body {
                padding: 0.75rem;
            }

            .action-price {
                font-size: 1.3rem;
            }

            .most-wanted {
                padding-top: 16px;
            }

            .most-wanted-title {
                margin-bottom: 10px;
                font-size: 1.08rem;
            }

            .most-wanted-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.62rem;
            }

            .most-wanted-card {
                min-height: 252px;
            }

            .most-wanted-media,
            .most-wanted-image {
                height: 192px;
            }

            .most-wanted-media {
                padding: 14px;
            }

            .most-wanted-name {
                font-size: 16px;
                min-height: 56px;
                padding: 8px 10px;
            }

            .wrap {
                padding-left: 16px;
                padding-right: 16px;
            }

            .hero,
            .hero-inner {
                height: 470px;
            }

            .hero-visual {
                display: none;
            }

            .hero-title {
                font-size: 38px;
            }

            .hero-sub {
                font-size: 20px;
            }

            .hero-actions {
                gap: 14px;
            }

            .hero-btn {
                min-width: 200px;
            }

            .home-category {
                flex-basis: 170px;
                font-size: 15px;
            }

            .header-logo svg {
                width: 132px;
            }

            .header-search {
                height: 40px;
                grid-template-columns: 1fr 40px;
            }

            .categories,
            .products,
            .news {
                grid-template-columns: 1fr;
            }

            .brands {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .callback-offcanvas-panel {
                width: 100vw;
            }

            .callback-offcanvas-content {
                padding: 22px 16px 20px;
            }

            .callback-offcanvas-close {
                width: 42px;
                height: 42px;
                top: 8px;
                right: 8px;
                font-size: 18px;
            }

            .callback-offcanvas-title {
                font-size: 11px;
                padding-right: 44px;
            }

            .callback-offcanvas-sub {
                font-size: 7px;
            }

            .callback-offcanvas-form {
                gap: 10px;
            }

            .callback-offcanvas-form input,
            .callback-offcanvas-form textarea {
                font-size: 6.5px;
                padding-left: 14px;
                padding-right: 14px;
            }

            .callback-offcanvas-form input {
                height: 30px;
            }

            .callback-offcanvas-form textarea {
                min-height: 80px;
            }

            .callback-offcanvas-worktime {
                font-size: 6px;
            }

            .callback-offcanvas-submit {
                min-width: 0;
                width: 100%;
                height: 30px;
                font-size: 8px;
            }

            .home-footer-shell {
                padding: 16px 12px 14px;
            }

            .home-footer-badges {
                grid-template-columns: 1fr;
            }

            .home-footer-badge {
                min-height: 58px;
                font-size: 7px;
            }

            .home-footer-badge small {
                font-size: 5.5px;
            }

            .home-footer-company-name {
                font-size: 9px;
            }

            .home-footer-company-address {
                font-size: 7px;
            }

            .home-footer-bottom {
                font-size: 6px;
                gap: 4px;
            }

            .home-newsletter {
                padding: 1rem 0 1.6rem;
            }

            .home-newsletter-shell {
                padding: 12px;
                gap: 14px;
            }

            .home-newsletter-shell::before {
                height: 170px;
            }

            .home-newsletter-info {
                padding: 18px 14px;
            }

            .home-newsletter-info h3 {
                font-size: 14px;
            }

            .home-newsletter-list li {
                font-size: 8px;
                gap: 8px;
            }

            .home-newsletter-list li::before {
                margin-top: 8px;
            }

            .home-newsletter-title {
                font-size: 16px;
            }

            .home-newsletter-sub {
                margin-top: 8px;
                margin-bottom: 12px;
                font-size: 8px;
            }

            .home-newsletter-form-row {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .home-newsletter-input {
                border-right: 1px solid #d9e2ec;
                height: 50px;
                font-size: 8px;
                padding: 0 14px;
            }

            .home-newsletter-submit {
                height: 46px;
                font-size: 8.5px;
            }

            .home-newsletter-consent {
                align-items: flex-start;
                font-size: 6.5px;
            }

            .home-contact-panel {
                padding-bottom: 1.6rem;
            }

            .home-contact-panel-shell {
                padding-top: 22px;
            }

            .home-contact-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .home-contact-title {
                margin-bottom: 10px;
                font-size: 14px;
            }

            .home-contact-links,
            .home-contact-payment-list {
                gap: 7px;
            }

            .home-contact-links li,
            .home-contact-payment-list li,
            .home-contact-support-links a {
                font-size: 11px;
            }

            .home-contact-payment-list li {
                grid-template-columns: 14px 1fr;
                gap: 7px;
            }

            .home-contact-phone {
                font-size: 20px;
            }

            .home-contact-worktime {
                font-size: 10px;
            }

            .home-contact-facebook {
                margin-top: 10px;
                min-height: 44px;
                padding: 0 14px;
                gap: 9px;
                font-size: 12px;
            }

            .home-contact-facebook span:first-child {
                font-size: 15px;
            }

            .home-contact-payment-foot {
                margin-top: 12px;
                gap: 10px;
            }

            .home-contact-payment-badges span {
                min-height: 28px;
                font-size: 10px;
            }

            .home-contact-delivery {
                grid-template-columns: 34px 1fr;
                gap: 8px;
            }

            .home-contact-delivery p {
                font-size: 12px;
            }

            .home-contact-delivery span {
                font-size: 10px;
            }

            .news-page-hero {
                padding-top: 1rem;
            }

            .news-page-hero-shell {
                padding: 14px 12px;
            }

            .news-page-eyebrow {
                font-size: 10px;
            }

            .news-page-title {
                margin-top: 8px;
                font-size: 23px;
            }

            .news-page-sub {
                font-size: 11px;
            }

            .news-page-actions {
                margin-top: 12px;
                gap: 8px;
            }

            .news-page-btn {
                min-height: 36px;
                font-size: 11px;
                padding: 0 12px;
            }

            .home-blog {
                padding: 1rem 0 1.6rem;
            }

            .home-blog-title {
                font-size: 28px;
            }

            .home-blog-tabs {
                gap: 8px 14px;
            }

            .home-blog-tab {
                font-size: 14px;
            }

            .home-blog-feature-body {
                padding: 16px 14px;
            }

            .home-blog-feature-title {
                font-size: 24px;
            }

            .home-blog-feature-excerpt,
            .home-blog-feature-content {
                font-size: 14px;
            }

            .home-blog-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .news-page-image-fallback {
                font-size: 10px;
            }

            .news-page-pagination {
                gap: 8px;
            }

            .news-page-page-btn {
                min-height: 34px;
                min-width: 84px;
                font-size: 10px;
            }

            .news-page-page-info {
                width: 100%;
                text-align: center;
                font-size: 10px;
            }

            .news-single {
                padding-bottom: 1.5rem;
            }

            .news-single-head {
                padding: 12px;
                gap: 7px;
            }

            .news-single-category {
                font-size: 9px;
                padding: 5px 8px;
            }

            .news-single-meta {
                font-size: 10px;
            }

            .news-single-image {
                max-height: 260px;
            }

            .news-single-image-fallback {
                min-height: 160px;
            }

            .news-single-content {
                padding: 12px;
                gap: 10px;
            }

            .news-single-excerpt {
                font-size: 12px;
            }

            .news-single-body {
                font-size: 11px;
                line-height: 1.72;
            }

            .news-single-foot {
                padding: 10px 12px;
                display: grid;
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .faq-page-hero {
                padding-top: 1rem;
            }

            .faq-page-hero-shell {
                padding: 14px 12px;
            }

            .faq-page-eyebrow {
                font-size: 10px;
            }

            .faq-page-title {
                margin-top: 8px;
                font-size: 23px;
            }

            .faq-page-sub {
                font-size: 11px;
            }

            .faq-page-chip-row {
                margin-top: 12px;
                gap: 8px;
            }

            .faq-page-chip {
                min-height: 34px;
                font-size: 11px;
                padding: 0 10px;
            }

            .faq-page-content {
                padding-bottom: 1.4rem;
            }

            .faq-group-card {
                padding: 12px;
                gap: 8px;
            }

            .faq-group-title {
                font-size: 16px;
            }

            .faq-item summary {
                padding: 10px 30px 10px 10px;
                font-size: 11px;
            }

            .faq-item summary::after {
                right: 10px;
                font-size: 16px;
            }

            .faq-answer {
                padding: 0 10px 10px;
            }

            .faq-answer p {
                font-size: 10px;
            }

            .faq-help {
                padding-bottom: 1.5rem;
            }

            .faq-help-shell {
                padding: 12px;
                gap: 10px;
            }

            .faq-help-eyebrow {
                font-size: 9px;
            }

            .faq-help-title {
                font-size: 20px;
            }

            .faq-help-sub {
                font-size: 11px;
            }

            .faq-help-contacts a {
                font-size: 20px;
            }

            .faq-help-contacts p {
                font-size: 10px;
            }

            .faq-help-actions {
                grid-template-columns: 1fr;
            }

            .faq-help-btn {
                min-height: 36px;
                font-size: 11px;
            }

            .brands-page-hero {
                padding-top: 1rem;
            }

            .brands-page-hero-shell {
                padding: 14px 12px;
            }

            .brands-page-eyebrow {
                font-size: 10px;
            }

            .brands-page-title {
                margin-top: 8px;
                font-size: 23px;
            }

            .brands-page-sub {
                font-size: 11px;
            }

            .brands-page-content {
                padding-bottom: 1.5rem;
            }

            .brands-page-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .brands-page-card {
                padding: 12px;
                gap: 10px;
            }

            .brands-page-logo-link {
                min-height: 88px;
            }

            .brands-page-logo-link img {
                max-height: 52px;
            }

            .brands-page-logo-fallback {
                width: 42px;
                height: 42px;
                font-size: 18px;
            }

            .brands-page-brand-name {
                font-size: 14px;
            }

            .brands-page-brand-count {
                font-size: 10px;
            }

            .brands-page-cats {
                gap: 6px;
            }

            .brands-page-cats li {
                grid-template-columns: 10px 1fr;
                gap: 5px;
            }

            .brands-page-cats a {
                font-size: 10px;
            }

            .brands-page-more {
                min-height: 36px;
                font-size: 10px;
            }

            .brands-page-empty {
                min-height: 120px;
                font-size: 12px;
            }

            .handi-band {
                padding-bottom: 1.4rem;
            }

            .handi-visual {
                min-height: 0;
                background: transparent;
            }

            .handi-bg {
                position: static;
                width: 100%;
                min-height: 160px;
            }

            .handi-overlay {
                position: static;
                transform: none;
                width: 100%;
                margin-top: -12px;
                grid-template-columns: 1fr;
                box-shadow: 0 10px 18px rgba(10, 22, 44, 0.12);
            }

            .handi-item {
                grid-template-columns: 56px 1fr;
                min-height: 0;
                padding: 14px 12px;
                gap: 10px;
            }

            .handi-item + .handi-item {
                border-left: 0;
                border-top: 1px solid #dde2ea;
            }

            .handi-icon {
                width: 48px;
                height: 48px;
            }

            .handi-icon svg {
                width: 34px;
                height: 34px;
            }

            .handi-title {
                font-size: 11px;
            }

            .handi-sub {
                font-size: 7px;
                margin-top: 4px;
            }

            .offer-request {
                padding: 1rem 0 1.6rem;
            }

            .contact-page-hero {
                padding-top: 1rem;
            }

            .contact-page-hero-shell {
                padding: 14px 12px;
            }

            .contact-page-eyebrow {
                font-size: 10px;
            }

            .contact-page-title {
                margin-top: 8px;
                font-size: 23px;
            }

            .contact-page-sub {
                font-size: 11px;
            }

            .contact-page-cards {
                gap: 10px;
            }

            .contact-info-card {
                padding: 12px;
                gap: 6px;
            }

            .contact-info-card h2 {
                font-size: 16px;
            }

            .contact-info-card p {
                font-size: 12px;
            }

            .contact-info-card small {
                font-size: 10px;
            }

            .offer-request-title { font-size: 22px; }
            .offer-request-desc {
                font-size: 14px;
                margin-top: 14px;
            }

            .offer-request-phone { font-size: 22px; }
            .offer-request-hours {
                font-size: 13px;
                margin-top: 12px;
            }

            .offer-request-call {
                width: 100%;
                min-width: 0;
            }

            .offer-request-form-card {
                padding: 18px 14px;
            }

            .offer-request-form-title { font-size: 19px; }
            .offer-request-form-sub { font-size: 14px; }

            .offer-request-row {
                grid-template-columns: 1fr;
            }

            .offer-request-actions {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .offer-request-submit {
                justify-content: center;
            }

            .home-brands {
                padding: 0.2rem 0 1.5rem;
            }

            .home-brands-item {
                min-height: 146px;
                padding: 12px;
            }

            .home-brands-cta-wrap {
                padding-top: 16px;
            }

            .home-brands-cta {
                min-width: 100%;
                min-height: 64px;
                font-size: 16px;
            }

            .home-trust {
                padding: 0.9rem 0 1.6rem;
            }

            .home-trust-items {
                grid-template-columns: 1fr;
            }

            .home-trust-item {
                min-height: auto;
            }

            .home-trust-icon-truck {
                width: 34px;
                height: 34px;
            }

            .home-trust-icon-support,
            .home-trust-icon-security {
                width: 28px;
                height: 28px;
            }

            .home-trust-item-title {
                white-space: normal;
            }

            .home-trust-link {
                font-size: 14px;
                padding: 12px 16px;
            }

            .action-offers-head {
                align-items: flex-start;
                flex-direction: column;
                gap: 6px;
            }

            .action-grid {
                grid-template-columns: 1fr;
            }

            .hero-list { grid-template-columns: 1fr; }
            .topbar-row { align-items: flex-start; padding: 0.6rem 0; flex-direction: column; }
            .topbar-left { width: 100%; flex-direction: column; align-items: flex-start; gap: 0.55rem; }
            .topbar-links { gap: 0.7rem; }
            .topbar-right { width: 100%; justify-content: space-between; }

            .header-logo svg {
                width: 122px;
            }

            .header-actions {
                grid-template-columns: 1fr;
            }

            .header-action {
                min-height: 72px;
                justify-items: flex-start;
                grid-template-columns: 36px auto auto;
                align-items: center;
                justify-content: start;
                gap: 10px;
            }
        }

        @media (max-width: 400px) {
            .most-wanted-title {
                font-size: 1.02rem;
            }

            .most-wanted-grid {
                grid-template-columns: 1fr;
            }

            .most-wanted-card {
                min-height: 230px;
            }

            .most-wanted-media,
            .most-wanted-image {
                height: 174px;
            }

            .most-wanted-media {
                padding: 12px;
            }

            .wrap {
                padding-left: 12px;
                padding-right: 12px;
            }

            .hero,
            .hero-inner {
                height: 430px;
            }

            .hero-title {
                font-size: 31px;
            }

            .hero-sub {
                font-size: 16px;
            }

            .hero-btn {
                width: 100%;
                min-width: 0;
            }

            .home-category {
                flex-basis: 150px;
                font-size: 14px;
            }

            .topbar-row {
                gap: 0.45rem;
            }

            .topbar-links {
                gap: 0.55rem;
            }

            .topbar-right {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.45rem;
            }

            .topbar-extra {
                gap: 0.7rem;
            }

            .header-main-row {
                gap: 10px;
                padding-top: 10px;
                padding-bottom: 10px;
            }

            .header-logo svg {
                width: 112px;
            }

            .header-search {
                height: 40px;
                grid-template-columns: 1fr 40px;
            }

            .header-search input {
                font-size: 16px;
                padding: 0 12px;
            }

            .brands {
                grid-template-columns: 1fr;
            }
        }

        .topbar-menu-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border: 1px solid #d8e2ef;
            border-radius: 11px;
            background: #ffffff;
            color: #223355;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            padding: 0;
            cursor: pointer;
        }

        .topbar-menu-line {
            width: 18px;
            height: 2px;
            background: currentColor;
            border-radius: 999px;
            transition: transform 180ms ease, opacity 180ms ease;
        }

        .topbar.is-mobile-open .topbar-menu-line:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .topbar.is-mobile-open .topbar-menu-line:nth-child(2) {
            opacity: 0;
        }

        .topbar.is-mobile-open .topbar-menu-line:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        @media (max-width: 980px) {
            .topbar-row {
                min-height: 54px;
                display: grid;
                grid-template-columns: minmax(0, 1fr) auto;
                align-items: center;
                gap: 0.7rem;
                padding: 8px 0;
            }

            .topbar-left {
                width: 100%;
                min-width: 0;
            }

            .topbar-call {
                font-size: 13px;
            }

            .topbar-menu-toggle {
                display: inline-flex;
                justify-self: end;
            }

            .topbar-links,
            .topbar-right {
                display: none;
            }

            .topbar.is-mobile-open .topbar-links {
                display: flex;
                grid-column: 1 / -1;
                flex-wrap: wrap;
                gap: 0.45rem;
                margin-top: 0.45rem;
            }

            .topbar.is-mobile-open .topbar-links a {
                border: 1px solid #d8e2ef;
                border-radius: 999px;
                padding: 7px 10px;
                font-size: 13px;
                line-height: 1;
                background: #ffffff;
            }

            .topbar.is-mobile-open .topbar-right {
                display: grid;
                grid-column: 1 / -1;
                width: 100%;
                gap: 0.55rem;
                padding-top: 0.25rem;
                border-top: 1px solid #edf2f7;
            }

            .topbar.is-mobile-open .topbar-calc {
                min-height: 40px;
                border: 1px solid #d8e2ef;
                border-radius: 10px;
                padding: 0 12px;
                width: 100%;
                justify-content: center;
                background: #f8fbff;
            }

            .topbar.is-mobile-open .topbar-extra {
                width: 100%;
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.55rem;
            }

            .topbar.is-mobile-open .topbar-dropdown,
            .topbar.is-mobile-open .topbar-extra > a {
                width: 100%;
            }

            .topbar.is-mobile-open .topbar-dropdown summary,
            .topbar.is-mobile-open .topbar-extra > a {
                min-height: 40px;
                border: 1px solid #d8e2ef;
                border-radius: 10px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 0 10px;
                background: #ffffff;
            }

            .topbar.is-mobile-open .topbar-dropdown-menu {
                position: static;
                top: auto;
                right: auto;
                min-width: 0;
                width: 100%;
                margin-top: 6px;
                box-shadow: none;
                border-radius: 10px;
                border-color: #dde6f0;
            }
        }

        @media (max-width: 768px) {
            .sticky-categories-panel {
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }

            .home-categories {
                height: auto;
                padding: 10px 0 12px;
            }

            .home-categories-scroll {
                height: auto;
                overflow-x: auto;
                overflow-y: hidden;
                gap: 8px;
                padding-bottom: 4px;
                scroll-snap-type: x proximity;
            }

            .home-category-item {
                flex: 0 0 min(80vw, 250px);
                height: auto;
                border-right: 0;
            }

            .home-category-item:first-child {
                border-left: 0;
            }

            .home-category {
                min-height: 62px;
                height: auto;
                flex-direction: row;
                justify-content: flex-start;
                gap: 10px;
                border: 1px solid rgba(255, 255, 255, 0.3);
                border-radius: 12px;
                background: rgba(0, 0, 0, 0.12);
                padding: 10px 12px;
                scroll-snap-align: start;
            }

            .home-category-icon {
                width: 34px;
                height: 28px;
                flex: 0 0 34px;
            }

            .home-category-icon img {
                height: 24px;
            }

            .home-category-name {
                white-space: normal;
                overflow: visible;
                text-overflow: clip;
                text-align: left;
                font-size: 14px;
                line-height: 1.22;
            }

            .home-category-item.has-children .home-category::after {
                content: '>';
                margin-left: auto;
                font-size: 16px;
                line-height: 1;
                font-weight: 800;
                opacity: 0.9;
                transition: transform 180ms ease;
            }

            .home-category-item.has-children.is-open .home-category::after {
                transform: rotate(90deg);
            }

            .home-category-item.has-children.is-open .home-category {
                background: rgba(0, 0, 0, 0.26);
                border-color: rgba(255, 255, 255, 0.5);
            }

            .home-mega-panel {
                margin-top: 10px;
                border-top: 0;
                border-radius: 14px;
                overflow: hidden;
                box-shadow: 0 14px 28px rgba(9, 22, 44, 0.2);
            }

            .home-mega-content.active {
                grid-template-columns: 1fr;
                min-height: 0;
            }

            .home-mega-brands,
            .home-mega-products {
                display: none;
            }

            .home-mega-cats {
                border-right: 0;
                padding: 14px 12px;
            }

            .home-mega-cats-head {
                margin-bottom: 10px;
            }

            .home-mega-cats-head strong {
                font-size: 16px;
            }

            .home-mega-show-all {
                font-size: 13px;
            }

            .home-mega-sub-list {
                max-height: 320px;
                padding-right: 2px;
            }

            .home-mega-sub-link {
                grid-template-columns: 34px 1fr;
                gap: 8px;
                border: 1px solid #e6edf6;
                background: #ffffff;
                padding: 7px 8px;
            }

            .home-mega-sub-icon {
                width: 30px;
                height: 30px;
            }
        }

        @media (max-width: 520px) {
            .topbar.is-mobile-open .topbar-extra {
                grid-template-columns: 1fr;
            }

            .home-category-item {
                flex-basis: 86vw;
            }

            .home-category {
                min-height: 58px;
                padding: 9px 10px;
            }

            .home-mega-panel {
                border-radius: 12px;
            }
        }

        @media (max-width: 412px) {
            .topbar-row {
                gap: 0.55rem;
                padding: 6px 0;
            }

            .topbar-call {
                gap: 5px;
                font-size: 12px;
            }

            .topbar-menu-toggle {
                width: 40px;
                height: 40px;
            }

            .topbar.is-mobile-open .topbar-links {
                gap: 0.38rem;
            }

            .topbar.is-mobile-open .topbar-links a {
                padding: 6px 9px;
                font-size: 12px;
            }

            .topbar.is-mobile-open .topbar-calc,
            .topbar.is-mobile-open .topbar-dropdown summary,
            .topbar.is-mobile-open .topbar-extra > a {
                min-height: 36px;
                font-size: 12px;
            }

            .home-categories {
                padding: 8px 0 10px;
            }

            .home-categories-scroll {
                gap: 6px;
            }

            .home-category-item {
                flex-basis: 88vw;
            }

            .home-category {
                min-height: 54px;
                padding: 8px 9px;
                border-radius: 11px;
            }

            .home-category-icon {
                width: 30px;
                height: 24px;
                flex: 0 0 30px;
            }

            .home-category-icon img {
                height: 20px;
            }

            .home-category-name {
                font-size: 13px;
            }

            .home-mega-cats {
                padding: 12px 10px;
            }

            .home-mega-sub-link {
                font-size: 13px;
                padding: 6px 7px;
            }
        }

        @media (max-width: 390px) {
            .topbar-call {
                font-size: 11px;
            }

            .topbar-menu-toggle {
                width: 38px;
                height: 38px;
                border-radius: 10px;
            }

            .topbar-menu-line {
                width: 16px;
            }

            .topbar.is-mobile-open .topbar-right {
                gap: 0.45rem;
            }

            .topbar.is-mobile-open .topbar-links a {
                font-size: 11.5px;
            }

            .home-category-item {
                flex-basis: 90vw;
            }

            .home-category {
                min-height: 52px;
                gap: 8px;
            }

            .home-category-name {
                font-size: 12.5px;
                line-height: 1.18;
            }

            .home-category-item.has-children .home-category::after {
                font-size: 14px;
            }

            .home-mega-cats-head strong {
                font-size: 15px;
            }

            .home-mega-show-all {
                font-size: 12px;
            }

            .home-mega-sub-list {
                max-height: 290px;
            }
        }

        @media (max-width: 360px) {
            .topbar-row {
                padding: 5px 0;
            }

            .topbar-call {
                font-size: 10.5px;
            }

            .topbar-call svg {
                width: 8px;
                height: 13px;
            }

            .topbar-menu-toggle {
                width: 36px;
                height: 36px;
            }

            .topbar.is-mobile-open .topbar-links a {
                padding: 5px 8px;
                font-size: 11px;
            }

            .topbar.is-mobile-open .topbar-calc,
            .topbar.is-mobile-open .topbar-dropdown summary,
            .topbar.is-mobile-open .topbar-extra > a {
                min-height: 34px;
                font-size: 11px;
            }

            .home-category-item {
                flex-basis: 92vw;
            }

            .home-category {
                min-height: 50px;
                padding: 7px 8px;
            }

            .home-category-icon {
                width: 28px;
                height: 22px;
                flex: 0 0 28px;
            }

            .home-category-name {
                font-size: 12px;
            }

            .home-mega-panel {
                border-radius: 10px;
            }

            .home-mega-cats {
                padding: 10px 9px;
            }

            .home-mega-sub-link {
                grid-template-columns: 30px 1fr;
                font-size: 12px;
            }

            .home-mega-sub-icon {
                width: 26px;
                height: 26px;
            }
        }

        @media (max-width: 980px) {
            .topbar {
                position: sticky;
                top: 0;
                z-index: 170;
                background: rgba(255, 255, 255, 0.94);
                backdrop-filter: blur(6px);
                border-bottom: 1px solid #d7e2ef;
                box-shadow: 0 8px 20px rgba(15, 32, 56, 0.08);
            }

            .topbar-row {
                min-height: 56px;
                gap: 0.55rem;
                padding: 7px 0;
            }

            .topbar-left {
                gap: 0.7rem;
            }

            .topbar-call {
                color: #1f2f55;
                font-weight: 700;
            }

            .topbar-menu-toggle {
                border-color: #cad9ea;
                border-radius: 13px;
                box-shadow: 0 6px 14px rgba(17, 44, 81, 0.1);
            }

            .topbar.is-mobile-open .topbar-row {
                padding-bottom: 10px;
            }

            .topbar.is-mobile-open .topbar-links {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.5rem;
                margin-top: 0.5rem;
            }

            .topbar.is-mobile-open .topbar-links a {
                min-height: 36px;
                border-radius: 12px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-color: #cfdced;
                background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
                font-weight: 700;
            }

            .topbar.is-mobile-open .topbar-right {
                gap: 0.5rem;
                padding-top: 0.5rem;
            }

            .topbar.is-mobile-open .topbar-calc {
                min-height: 38px;
                border-color: #cad9ea;
                background: linear-gradient(135deg, #edf7ff 0%, #f8fbff 100%);
            }

            .topbar.is-mobile-open .topbar-dropdown summary,
            .topbar.is-mobile-open .topbar-extra > a {
                min-height: 38px;
                border-color: #cad9ea;
                font-weight: 700;
                color: #213455;
            }

            .topbar.is-mobile-open .topbar-dropdown-menu {
                background: #f8fbff;
            }

            .header-main {
                background: linear-gradient(180deg, #f7fbff 0%, #eef4fb 100%);
                border-bottom: 0;
            }

            .header-main-row {
                grid-template-columns: 1fr;
                gap: 10px;
                padding-top: 10px;
                padding-bottom: 14px;
            }

            .header-logo {
                justify-content: center;
                padding-right: 0;
                min-height: 56px;
            }

            .logo-labels {
                display: none;
            }

            .header-logo svg,
            .header-logo img {
                width: 132px;
            }

            .header-search {
                max-width: none;
                height: 48px;
                border-radius: 14px;
                border: 1px solid #ccdaec;
                box-shadow: 0 8px 18px rgba(23, 53, 93, 0.08);
            }

            .header-search input {
                font-size: 17px;
            }

            .header-search button {
                border-left: 1px solid #e2ebf4;
            }

            .header-actions {
                border: 0;
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 8px;
            }

            .header-action {
                min-height: 64px;
                border: 1px solid #dbe6f2;
                border-radius: 14px;
                background: #ffffff;
                box-shadow: 0 6px 16px rgba(12, 31, 58, 0.07);
                gap: 4px;
                padding: 8px;
            }

            .header-action-title,
            .header-action-count {
                font-size: 12px;
                font-weight: 700;
            }

            .header-action svg {
                width: 22px;
                height: 22px;
            }

            .home-categories {
                background: linear-gradient(150deg, #d00000 0%, #a60009 65%, #8d0010 100%);
                height: auto;
                padding: 12px 0 14px;
            }

            .home-categories-scroll {
                height: auto;
                overflow-x: auto;
                overflow-y: hidden;
                padding: 0 2px 6px;
                gap: 10px;
                scroll-snap-type: x mandatory;
            }

            .home-category-item {
                flex: 0 0 min(80vw, 310px);
                height: auto;
                border-right: 0;
            }

            .home-category-item:first-child {
                border-left: 0;
            }

            .home-category {
                min-height: 66px;
                height: auto;
                border-radius: 16px;
                border: 1px solid rgba(255, 255, 255, 0.28);
                background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
                padding: 11px 13px;
                flex-direction: row;
                justify-content: flex-start;
                gap: 10px;
                scroll-snap-align: start;
            }

            .home-category-item.has-children .home-category::after {
                content: '>';
                margin-left: auto;
                font-size: 18px;
                line-height: 1;
                font-weight: 800;
                opacity: 0.92;
            }

            .home-category-name {
                white-space: normal;
                overflow: visible;
                text-overflow: clip;
                text-align: left;
                font-size: 14px;
                line-height: 1.2;
            }

            .home-category-icon {
                width: 34px;
                height: 28px;
                flex: 0 0 34px;
            }

            .home-category-icon img {
                height: 24px;
            }

            .home-category-item.has-children.is-open .home-category {
                background: linear-gradient(135deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.14));
                border-color: rgba(255, 255, 255, 0.45);
            }

            .home-mega-panel {
                margin-top: 12px;
                border: 0;
                border-radius: 16px;
                overflow: hidden;
                box-shadow: 0 16px 36px rgba(9, 22, 44, 0.24);
            }

            .home-mega-content.active {
                grid-template-columns: 1fr;
                min-height: 0;
            }

            .home-mega-brands,
            .home-mega-products {
                display: none;
            }

            .home-mega-cats {
                border-right: 0;
                padding: 14px 12px;
                background: #ffffff;
            }

            .home-mega-cats-head {
                margin-bottom: 10px;
            }

            .home-mega-cats-head strong {
                color: #1f3158;
                font-size: 16px;
            }

            .home-mega-show-all {
                font-size: 12px;
                font-weight: 800;
            }

            .home-mega-sub-list {
                max-height: 320px;
                padding-right: 2px;
            }

            .home-mega-sub-link {
                grid-template-columns: 34px 1fr;
                gap: 8px;
                border: 1px solid #e6edf6;
                border-radius: 10px;
                background: #ffffff;
                padding: 7px 8px;
                color: #2a446c;
                font-size: 13px;
            }

            .home-mega-sub-link:hover {
                background: #f5f9ff;
            }

            .home-mega-sub-icon {
                width: 30px;
                height: 30px;
            }
        }

        @media (max-width: 640px) {
            .header-actions {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .header-action {
                min-height: 58px;
                justify-items: center;
                grid-template-columns: 1fr;
                gap: 3px;
            }

            .header-action span {
                font-size: 11px;
            }
        }

        @media (max-width: 412px) {
            .topbar.is-mobile-open .topbar-links {
                grid-template-columns: 1fr;
            }

            .home-category-item {
                flex-basis: 88vw;
            }

            .home-category {
                min-height: 58px;
                border-radius: 14px;
            }
        }

        @media (max-width: 390px) {
            .topbar-call {
                font-size: 11px;
            }

            .header-search {
                height: 44px;
            }

            .header-search input {
                font-size: 15px;
            }

            .home-category {
                min-height: 54px;
                padding: 9px 10px;
            }

            .home-category-name {
                font-size: 12.5px;
            }
        }

        @media (max-width: 360px) {
            .topbar-call {
                font-size: 10.5px;
            }

            .topbar-menu-toggle {
                width: 36px;
                height: 36px;
            }

            .header-main-row {
                gap: 8px;
                padding-top: 8px;
                padding-bottom: 10px;
            }

            .header-action {
                min-height: 54px;
            }

            .home-category-item {
                flex-basis: 91vw;
            }

            .home-category-name {
                font-size: 12px;
            }
        }

        /* Final mobile polish overrides */
        @media (max-width: 980px) {
            .topbar.is-mobile-open .topbar-row {
                align-items: start;
            }

            .topbar.is-mobile-open .topbar-menu-toggle {
                align-self: start;
                margin-top: 2px;
            }

            .topbar.is-mobile-open .topbar-links {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.45rem;
            }

            .topbar.is-mobile-open .topbar-links a {
                min-height: 40px;
                padding: 8px 10px;
                text-align: center;
                white-space: normal;
                line-height: 1.15;
            }

            .topbar.is-mobile-open .topbar-right {
                display: grid;
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }

            .topbar.is-mobile-open .topbar-extra {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .topbar.is-mobile-open .topbar-extra > a {
                grid-column: 1 / -1;
            }

            .topbar.is-mobile-open .topbar-dropdown summary {
                justify-content: center;
            }

            .header-logo {
                min-height: 72px;
            }

            .logo-labels {
                display: flex;
                left: 50%;
                transform: translateX(-50%);
                bottom: 6px;
                gap: 4px;
            }

            .logo-label {
                width: 70px;
                height: 16px;
                font-size: 9px;
            }
        }

        @media (max-width: 520px) {
            .topbar.is-mobile-open .topbar-links {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .topbar.is-mobile-open .topbar-links a {
                min-height: 36px;
                font-size: 12px;
                padding: 7px 8px;
            }

            .topbar.is-mobile-open .topbar-extra {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .topbar.is-mobile-open .topbar-dropdown summary,
            .topbar.is-mobile-open .topbar-extra > a {
                min-height: 36px;
                font-size: 12px;
                padding: 0 8px;
            }

            .logo-label {
                width: 64px;
                height: 15px;
                font-size: 8px;
            }
        }

        @media (max-width: 412px) {
            .topbar.is-mobile-open .topbar-links {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 390px) {
            .topbar.is-mobile-open .topbar-links a {
                font-size: 11px;
                padding: 6px 7px;
            }

            .logo-labels {
                bottom: 4px;
            }

            .logo-label {
                width: 58px;
            }
        }

        @media (max-width: 360px) {
            .topbar.is-mobile-open .topbar-links a {
                min-height: 34px;
                font-size: 10px;
            }

            .logo-label {
                width: 54px;
                font-size: 8px;
            }
        }

        /* Mobile drawer UX override */
        @media (max-width: 980px) {
            body.is-topbar-open {
                overflow: hidden;
            }

            .topbar.is-mobile-open {
                position: fixed;
                inset: 0;
                z-index: 260;
                background: rgba(8, 20, 39, 0.38);
                backdrop-filter: blur(2px);
                border-bottom: 0;
                box-shadow: none;
            }

            .topbar.is-mobile-open .topbar-row {
                position: absolute;
                top: 10px;
                left: 10px;
                right: 10px;
                width: auto;
                max-height: calc(100vh - 20px);
                overflow-y: auto;
                background: linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%);
                border: 1px solid #c8d8ea;
                border-radius: 20px;
                box-shadow: 0 24px 46px rgba(6, 20, 42, 0.26);
                padding: 12px;
                grid-template-columns: minmax(0, 1fr) auto;
                align-items: start;
                align-content: start;
                gap: 0.65rem;
            }

            .topbar.is-mobile-open .topbar-left {
                display: grid;
                align-items: start;
                gap: 0.6rem;
            }

            .topbar.is-mobile-open .topbar-menu-toggle {
                margin-top: 2px;
                width: 44px;
                height: 44px;
                border-radius: 14px;
                box-shadow: none;
            }

            .topbar.is-mobile-open .topbar-links {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.5rem;
                margin-top: 0.15rem;
            }

            .topbar.is-mobile-open .topbar-links a {
                min-height: 42px;
                padding: 8px 10px;
                border-radius: 14px;
                border: 1px solid #c5d5e9;
                background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
                color: #25385c;
                font-size: 14px;
                font-weight: 700;
                line-height: 1.15;
                text-align: center;
                white-space: normal;
            }

            .topbar.is-mobile-open .topbar-right {
                display: grid;
                grid-template-columns: 1fr;
                gap: 0.55rem;
                padding-top: 0.55rem;
                margin-top: 0.15rem;
                border-top: 1px solid #dce6f2;
            }

            .topbar.is-mobile-open .topbar-calc {
                min-height: 44px;
                border-radius: 14px;
                border: 1px solid #c5d5e9;
                background: linear-gradient(135deg, #edf6ff 0%, #f8fbff 100%);
                font-size: 13px;
                font-weight: 700;
                justify-content: center;
                padding: 0 10px;
            }

            .topbar.is-mobile-open .topbar-extra {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.55rem;
            }

            .topbar.is-mobile-open .topbar-extra > a {
                grid-column: 1 / -1;
            }

            .topbar.is-mobile-open .topbar-dropdown summary,
            .topbar.is-mobile-open .topbar-extra > a {
                min-height: 42px;
                border-radius: 13px;
                border: 1px solid #c5d5e9;
                background: #ffffff;
                color: #25385c;
                font-size: 14px;
                font-weight: 700;
                justify-content: center;
                padding: 0 10px;
            }

            .topbar.is-mobile-open .topbar-dropdown-menu {
                border-radius: 12px;
                border-color: #d5e1ef;
                background: #f8fbff;
            }

            .header-logo {
                min-height: 76px;
            }

            .logo-labels {
                display: flex;
                left: 50%;
                transform: translateX(-50%);
                bottom: 6px;
            }
        }

        @media (max-width: 520px) {
            .topbar.is-mobile-open .topbar-row {
                top: 8px;
                left: 8px;
                right: 8px;
                max-height: calc(100vh - 16px);
                border-radius: 18px;
                padding: 10px;
            }

            .topbar.is-mobile-open .topbar-links a {
                min-height: 38px;
                font-size: 12px;
                border-radius: 12px;
            }

            .topbar.is-mobile-open .topbar-calc,
            .topbar.is-mobile-open .topbar-dropdown summary,
            .topbar.is-mobile-open .topbar-extra > a {
                min-height: 38px;
                font-size: 12px;
            }
        }

        @media (max-width: 390px) {
            .topbar.is-mobile-open .topbar-links a {
                min-height: 36px;
                font-size: 11px;
            }

            .topbar.is-mobile-open .topbar-extra {
                grid-template-columns: 1fr 1fr;
            }
        }
