@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("assets/fonts/inter/Inter-Regular.woff2") format("woff2");
}

@media (max-width: 700px) {
    .cookie-consent {
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-consent-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cookie-consent-actions button {
        width: 100%;
    }
}

@media print {
    .topbar,
    .site-footer,
    .demo-modal,
    .cookie-consent,
    .no-print {
        display: none !important;
    }

    body,
    .panel,
    .legal-review-list > div {
        background: #fff !important;
        color: #111 !important;
    }

    .page {
        max-width: none;
        padding: 0;
    }
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("assets/fonts/inter/Inter-Medium.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("assets/fonts/inter/Inter-SemiBold.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("assets/fonts/inter/Inter-Bold.woff2") format("woff2");
}

:root {
    color-scheme: dark;
    --bg: #080806;
    --surface: #151719;
    --surface-soft: rgba(21, 23, 25, 0.82);
    --surface-border: rgba(111, 105, 94, 0.42);
    --ink: #f3f7fb;
    --muted: rgba(232, 225, 214, 0.68);
    --line: rgba(111, 105, 94, 0.42);
    --brand: #ffb11a;
    --brand-dark: #c98208;
    --brand-soft: rgba(255, 177, 26, 0.14);
    --brand-ring: rgba(255, 177, 26, 0.44);
    --accent: #ffb11a;
    --danger: #FF453A;
    --success: #32D74A;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --blur: saturate(180%) blur(20px);
    --transition: all 0.2s ease-out;
}

* {
    box-sizing: border-box;
}

body {
    background:
        radial-gradient(circle at 20% -20%, rgba(255, 177, 26, 0.16), transparent 34vw),
        linear-gradient(180deg, #11100d 0%, var(--bg) 42%, #050504 100%);
    color: var(--ink);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

a {
    color: var(--brand);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    opacity: 0.8;
}

.topbar {
    align-items: center;
    background: rgba(8, 13, 22, 0.86);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-bottom: 0.5px solid var(--surface-border);
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(220px, 1fr) auto auto auto auto;
    min-height: 54px;
    padding: 10px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand {
    align-items: center;
    display: inline-flex;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
}

.brand-mark {
    align-items: center;
    background: var(--brand);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    flex: 0 0 36px;
    font-size: 16px;
    font-weight: 700;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.brand-title {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.5px;
}

.brand-subtitle {
    color: var(--muted);
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-top: 2px;
}

.main-nav {
    align-items: center;
    display: inline-flex;
    gap: 4px;
}

.nav-menu {
    position: relative;
}

.nav-toggle {
    display: none;
}

.nav-toggle-button {
    align-items: center;
    background: #171512;
    border: 1px solid rgba(255, 177, 26, 0.3);
    border-radius: 8px;
    color: var(--brand);
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 5px;
    height: 42px;
    justify-content: center;
    justify-self: end;
    width: 42px;
}

.nav-toggle-button span {
    background: currentColor;
    border-radius: 999px;
    display: block;
    height: 2px;
    transition: var(--transition);
    width: 18px;
}

.main-nav a,
.main-nav button,
.main-nav summary {
    appearance: none;
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: var(--muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    gap: 7px;
    justify-content: center;
    min-height: 0;
    padding: 8px 12px;
    text-decoration: none;
    transition: var(--transition);
}

.main-nav a.active,
.main-nav a:hover,
.main-nav summary.active,
.main-nav summary:hover,
.main-nav button.active,
.main-nav button:hover {
    background: var(--brand-soft);
    box-shadow: none;
    color: var(--ink);
}

.main-nav summary {
    list-style: none;
}

.nav-submenu-trigger {
    white-space: nowrap;
}

.main-nav summary::-webkit-details-marker {
    display: none;
}

.nav-submenu-caret {
    border-color: currentColor transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0;
    flex: 0 0 auto;
    height: 0;
    margin: 1px 0 0;
    width: 0;
}

.nav-submenu-list {
    background: rgba(21, 23, 25, 0.98);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 3px;
    min-width: 190px;
    opacity: 0;
    padding: 7px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    transform: translateY(6px);
    transition: var(--transition);
    visibility: hidden;
    z-index: 120;
}

.nav-menu[open] .nav-submenu-list,
.nav-menu:hover .nav-submenu-list,
.nav-menu:focus-within .nav-submenu-list {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.main-nav .nav-submenu-list a,
.main-nav .nav-submenu-list button {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
}

.main-nav > .nav-item-withdrawal,
.main-nav > .nav-form > .nav-item-withdrawal {
    border: 1px solid rgba(255, 177, 26, 0.42);
    color: var(--brand);
}

.nav-form,
.inline-form {
    margin: 0;
}

.cart-link {
    align-items: center;
    background: #171512;
    border: 1px solid rgba(255, 177, 26, 0.3);
    border-radius: 8px;
    color: var(--brand);
    display: inline-flex;
    font-size: 15px;
    font-weight: 600;
    gap: 8px;
    justify-content: center;
    padding: 8px 16px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.cart-link:hover {
    background: var(--brand-soft);
    color: var(--ink);
}

.language-switcher,
.theme-switcher {
    align-items: center;
    background: #171512;
    border: 1px solid rgba(255, 177, 26, 0.3);
    border-radius: 8px;
    display: inline-flex;
    gap: 2px;
    padding: 3px;
}

.language-switcher a,
.theme-switcher a {
    border-radius: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    padding: 8px 9px;
    text-decoration: none;
}

.language-switcher a.active,
.language-switcher a:hover,
.language-switcher a:focus-visible,
.theme-switcher a.active,
.theme-switcher a:hover,
.theme-switcher a:focus-visible {
    background: var(--brand-soft);
    color: var(--ink);
}

body.theme-light {
    color-scheme: light;
    --bg: #f4f8fb;
    --surface: #ffffff;
    --surface-soft: rgba(255, 255, 255, 0.92);
    --surface-border: rgba(148, 163, 184, 0.34);
    --ink: #102033;
    --muted: #60748a;
    --line: rgba(148, 163, 184, 0.34);
    --brand: #0b72b5;
    --brand-dark: #075887;
    --brand-soft: rgba(11, 114, 181, 0.11);
    --brand-ring: rgba(11, 114, 181, 0.28);
    --accent: #f59e0b;
    --danger: #dc2626;
    --success: #15803d;
    --shadow: 0 18px 45px rgba(15, 38, 62, 0.12);
    background:
        radial-gradient(circle at 14% -10%, rgba(39, 153, 218, 0.18), transparent 34vw),
        linear-gradient(180deg, #ffffff 0%, #f4f8fb 44%, #eaf2f8 100%);
    color: var(--ink);
}

body.theme-light a {
    color: var(--brand);
}

body.theme-light .topbar {
    background: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(11, 114, 181, 0.16);
    box-shadow: 0 10px 28px rgba(15, 38, 62, 0.08);
}

body.theme-light .brand-mark,
body.theme-light .button,
body.theme-light button,
body.theme-light .demo-ribbon {
    background: var(--brand);
    color: #ffffff;
}

body.theme-light .nav-toggle-button,
body.theme-light .cart-link,
body.theme-light .nav-submenu-list,
body.theme-light .language-switcher,
body.theme-light .theme-switcher {
    background: #ffffff;
    border-color: rgba(11, 114, 181, 0.22);
    box-shadow: 0 8px 22px rgba(15, 38, 62, 0.07);
}

body.theme-light .main-nav a.active,
body.theme-light .main-nav a:hover,
body.theme-light .main-nav summary.active,
body.theme-light .main-nav summary:hover,
body.theme-light .main-nav button.active,
body.theme-light .main-nav button:hover,
body.theme-light .cart-link:hover,
body.theme-light .language-switcher a.active,
body.theme-light .language-switcher a:hover,
body.theme-light .language-switcher a:focus-visible,
body.theme-light .theme-switcher a.active,
body.theme-light .theme-switcher a:hover,
body.theme-light .theme-switcher a:focus-visible {
    background: var(--brand-soft);
    color: var(--brand-dark);
}

body.theme-light .main-nav button {
    background: transparent;
    box-shadow: none;
    color: var(--muted);
}

body.theme-light .button:hover,
body.theme-light button:hover {
    background: var(--brand-dark);
    box-shadow: 0 0 0 3px rgba(11, 114, 181, 0.14);
}

body.theme-light .button.secondary,
body.theme-light button.secondary {
    background: #e8f2fa;
    color: var(--brand-dark);
}

body.theme-light .button.secondary:hover,
body.theme-light button.secondary:hover {
    background: #d7e9f6;
}

body.theme-light input,
body.theme-light select,
body.theme-light textarea {
    background-color: #ffffff;
    border-color: rgba(96, 116, 138, 0.32);
    box-shadow: 0 8px 20px rgba(15, 38, 62, 0.06);
    color: var(--ink);
}

body.theme-light select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b72b5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

body.theme-light input::placeholder {
    color: #94a3b8;
}

body.theme-light input:focus,
body.theme-light select:focus,
body.theme-light textarea:focus {
    background: #ffffff;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(11, 114, 181, 0.13), 0 10px 24px rgba(15, 38, 62, 0.1);
}

body.theme-light .filters,
body.theme-light .panel,
body.theme-light .stat,
body.theme-light .empty,
body.theme-light .order-review,
body.theme-light .product-card,
body.theme-light .search-entry,
body.theme-light .recommendation-card,
body.theme-light .blog-preview-card,
body.theme-light .category-card {
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.34);
    box-shadow: 0 16px 36px rgba(15, 38, 62, 0.08);
}

body.theme-light .product-card::after {
    background: linear-gradient(180deg, rgba(11, 114, 181, 0.08), rgba(245, 158, 11, 0.05));
}

body.theme-light .product-card:hover,
body.theme-light .product-card:focus-within,
body.theme-light .recommendation-card:hover,
body.theme-light .recommendation-card:focus-visible,
body.theme-light .category-card:hover,
body.theme-light .category-card:focus-visible,
body.theme-light .blog-preview-card:hover {
    background: #f8fbfd;
    border-color: rgba(11, 114, 181, 0.36);
    box-shadow: 0 20px 42px rgba(15, 38, 62, 0.12);
}

body.theme-light .product-card:hover .product-title,
body.theme-light .product-card:focus-within .product-title {
    color: var(--brand-dark);
}

body.theme-light .product-visual {
    background: linear-gradient(135deg, #e6f3fb 0%, #ffffff 100%);
}

body.theme-light .product-card:hover .product-visual,
body.theme-light .product-card:focus-within .product-visual {
    background: linear-gradient(135deg, #d9edf9 0%, #f8fbfd 100%);
}

body.theme-light .product-visual::before {
    background: linear-gradient(135deg, rgba(11, 114, 181, 0.14), rgba(255, 255, 255, 0.5));
    border-color: rgba(11, 114, 181, 0.24);
}

body.theme-light .product-visual-autoglas,
body.theme-light .product-card:hover .product-visual-autoglas,
body.theme-light .product-card:focus-within .product-visual-autoglas {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.32) 48%, rgba(255, 255, 255, 0.8) 100%),
        url("assets/products/autoglas-placeholder.jpg") center / cover no-repeat;
}

body.theme-light .product-code {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(11, 114, 181, 0.22);
    color: var(--brand-dark);
}

body.theme-light .add-form input,
body.theme-light .cart-quantity {
    background: #eef5fa;
}

body.theme-light .shipping-choice,
body.theme-light .terms-check,
body.theme-light .review-info-card,
body.theme-light .review-breakdown,
body.theme-light .summary-breakdown,
body.theme-light .legal-link-grid > a,
body.theme-light .checkout-final-actions,
body.theme-light .cart-total {
    background: #f4f8fb;
    border-color: rgba(148, 163, 184, 0.34);
    color: var(--ink);
}

body.theme-light .shipping-choice:hover,
body.theme-light .shipping-choice:focus-within,
body.theme-light .shipping-choice:has(input:checked),
body.theme-light .terms-check:hover,
body.theme-light .terms-check:focus-within,
body.theme-light .terms-check:has(input:checked) {
    background: #e9f4fb;
    border-color: var(--brand-ring);
    box-shadow: 0 0 0 3px rgba(11, 114, 181, 0.11);
}

body.theme-light .shipping-choice input[type="radio"],
body.theme-light .terms-check input[type="checkbox"] {
    background: #ffffff;
    border-color: rgba(96, 116, 138, 0.38);
    box-shadow: inset 0 0 0 4px rgba(15, 38, 62, 0.04);
}

body.theme-light .home-trust-row span,
body.theme-light .hero-scan-panel,
body.theme-light .hero-trust-panel,
body.theme-light .visual-stat {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(11, 114, 181, 0.18);
    box-shadow: 0 16px 36px rgba(15, 38, 62, 0.1);
}

body.theme-light .home-visual {
    background:
        linear-gradient(135deg, rgba(11, 114, 181, 0.14), rgba(245, 158, 11, 0.08) 38%, rgba(255, 255, 255, 0.94)),
        #e8f4fb;
    border-color: rgba(11, 114, 181, 0.22);
}

body.theme-light .glass-plate {
    background: linear-gradient(135deg, rgba(11, 114, 181, 0.17), rgba(255, 255, 255, 0.55));
    border-color: rgba(11, 114, 181, 0.36);
}

body.theme-light .tire-plate {
    background: conic-gradient(from 24deg, #7f8da0, #2c3b4d, #cbd5e1, #2c3b4d, #7f8da0);
    box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.42), 0 18px 40px rgba(15, 38, 62, 0.2);
}

body.theme-light .tire-plate span {
    background: #ffffff;
    border-color: rgba(11, 114, 181, 0.24);
}

body.theme-light .search-entry-copy {
    background:
        linear-gradient(135deg, rgba(11, 114, 181, 0.11), rgba(245, 158, 11, 0.05)),
        #f4f8fb;
    border-right-color: rgba(148, 163, 184, 0.3);
}

body.theme-light .search-entry-link:hover,
body.theme-light .search-entry-link:focus-visible {
    background:
        linear-gradient(135deg, rgba(11, 114, 181, 0.14), rgba(245, 158, 11, 0.08)),
        #eaf4fb;
}

body.theme-light .notice.success {
    background: rgba(21, 128, 61, 0.1);
}

body.theme-light .notice.error {
    background: rgba(220, 38, 38, 0.1);
}

body.theme-light .demo-modal {
    background: rgba(226, 238, 247, 0.78);
}

body.theme-light .demo-modal-card,
body.theme-light .cookie-consent {
    background: #ffffff;
    border-color: rgba(11, 114, 181, 0.22);
    box-shadow: 0 28px 80px rgba(15, 38, 62, 0.18);
}

body.theme-light .site-footer {
    background:
        radial-gradient(circle at 12% 0%, rgba(11, 114, 181, 0.1), transparent 32%),
        linear-gradient(180deg, #ffffff, #e8f2f8);
    border-top-color: rgba(11, 114, 181, 0.18);
}

body.theme-light.article-body,
body.theme-light .article-body,
body.theme-light .tyre-size-stage,
body.theme-light .alpine-stage,
body.theme-light .tread-stage {
    background:
        radial-gradient(circle at 18% 0%, rgba(11, 114, 181, 0.12), transparent 32vw),
        linear-gradient(180deg, #ffffff 0%, #f4f8fb 58%, #edf5fa 100%);
}

body.theme-light .article-hero-section {
    background:
        linear-gradient(180deg, rgba(11, 114, 181, 0.08), transparent 62%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(234, 244, 251, 0.82));
    border-bottom-color: rgba(148, 163, 184, 0.3);
}

body.theme-light .article-anchor-wrap {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: rgba(148, 163, 184, 0.3);
}

body.theme-light .article-hero-copy h1,
body.theme-light .article-lead-panel h2,
body.theme-light .article-chapter h2,
body.theme-light .tyre-size-stage h1,
body.theme-light .tyre-size-intro h2,
body.theme-light .alpine-stage h1,
body.theme-light .alpine-section h2,
body.theme-light .alpine-rules h2,
body.theme-light .alpine-check h2,
body.theme-light .alpine-sources h2,
body.theme-light .tread-stage h1,
body.theme-light .tread-section h2,
body.theme-light .tread-sources h2,
body.theme-light .article-code-line span,
body.theme-light .article-marker-grid span,
body.theme-light .article-decision-grid strong,
body.theme-light .article-label-grid strong {
    color: var(--ink);
}

body.theme-light .article-hero-copy p,
body.theme-light .article-lead-panel p,
body.theme-light .article-chapter p,
body.theme-light .article-chapter li,
body.theme-light .article-index a,
body.theme-light .article-code-labels span,
body.theme-light .article-number-grid span,
body.theme-light .article-decision-grid span,
body.theme-light .article-label-grid span,
body.theme-light .tyre-size-intro p,
body.theme-light .tyre-size-list dd,
body.theme-light .alpine-lead p,
body.theme-light .alpine-section p,
body.theme-light .alpine-rules p,
body.theme-light .alpine-check p,
body.theme-light .alpine-sources ul,
body.theme-light .tread-lead p,
body.theme-light .tread-section p,
body.theme-light .tread-check p,
body.theme-light .tread-sources p,
body.theme-light .tread-sources ul {
    color: var(--muted);
}

body.theme-light .article-anchor-bar a,
body.theme-light .article-lead-panel,
body.theme-light .article-chapter-muted,
body.theme-light .article-check-panel,
body.theme-light .article-label-section,
body.theme-light .article-code-card,
body.theme-light .article-number-grid > div,
body.theme-light .article-marker-grid > div,
body.theme-light .article-decision-grid > div,
body.theme-light .article-label-grid > div,
body.theme-light .article-checklist li,
body.theme-light .alpine-icon-grid > div,
body.theme-light .alpine-rule-grid > div,
body.theme-light .tread-warning-grid > div {
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.32);
    box-shadow: 0 16px 36px rgba(15, 38, 62, 0.08);
}

body.theme-light .article-visual,
body.theme-light .tyre-size-visual,
body.theme-light .alpine-hero-image,
body.theme-light .tread-hero-image {
    background: #ffffff;
    border-color: rgba(11, 114, 181, 0.22);
    box-shadow: 0 22px 52px rgba(15, 38, 62, 0.13);
}

body.theme-light .article-visual figcaption,
body.theme-light .tyre-size-visual figcaption,
body.theme-light .alpine-hero-image figcaption,
body.theme-light .tread-hero-image figcaption {
    background: #ffffff;
    border-top-color: rgba(148, 163, 184, 0.3);
    color: var(--muted);
}

.page {
    margin: 0 auto;
    max-width: 1200px;
    padding: 32px 24px;
}

.page.narrow {
    max-width: 800px;
}

.shop-intro {
    align-items: end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 24px;
}

.shop-intro h1 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1px;
}

.shop-intro p {
    color: var(--muted);
    font-size: 15px;
    margin: 8px 0 0;
}

.stat {
    background: var(--surface);
    border-radius: 14px;
    min-width: 160px;
    padding: 16px;
    text-align: right;
}

.stat strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.5px;
}

.stat span {
    color: var(--muted);
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-top: 6px;
}

.filters,
.panel {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    margin-bottom: 24px;
    padding: 20px;
}

.filter-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(220px, 2fr) repeat(4, minmax(150px, 1fr));
}

label {
    color: var(--muted);
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}

input,
select,
textarea {
    appearance: none;
    -webkit-appearance: none;
    background: #0b121d;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    min-height: 44px;
    padding: 10px 18px;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

select {
    padding-right: 36px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}

input::placeholder {
    color: #9aa0a6; /* Softer gray placeholder */
}

textarea {
    min-height: 100px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    background: #1d1a14;
    border-color: var(--brand-ring);
    box-shadow: 0 0 0 3px rgba(255, 177, 26, 0.14), 0 4px 16px rgba(0, 0, 0, 0.4);
}

.filter-actions,
.actions {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 16px;
}

.filter-status {
    color: var(--muted);
    font-size: 13px;
    margin-right: auto;
    min-height: 18px;
}

.filters.is-filtering,
.filter-results.is-filtering {
    opacity: 0.72;
}

.filter-results {
    transition: opacity 0.2s ease-out;
}

.button,
button {
    align-items: center;
    background: var(--brand);
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    justify-content: center;
    min-height: 44px;
    padding: 10px 24px;
    text-decoration: none;
    transition: var(--transition);
}

.button:hover,
button:hover {
    background: var(--brand-dark);
    box-shadow: 0 0 0 3px rgba(255, 177, 26, 0.14);
}

button:disabled {
    background: #2C2C2E;
    color: var(--muted);
    cursor: not-allowed;
}

.button.secondary,
button.secondary {
    background: #2C2C2E;
    color: var(--brand);
}

.button.secondary:hover,
button.secondary:hover {
    background: #3A3A3C;
}

.button.disabled,
.button.disabled:hover,
.button.secondary.disabled,
.button.secondary.disabled:hover {
    background: #2C2C2E;
    box-shadow: none;
    color: var(--muted);
    cursor: not-allowed;
    opacity: 0.82;
}

.button.danger,
button.danger {
    background: var(--danger);
    color: #fff;
}

.button.danger:hover,
button.danger:hover {
    background: #D70015;
}

.notice {
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 500;
}

.notice.success {
    background: rgba(50, 215, 74, 0.15);
    color: var(--success);
}

.notice.error {
    background: rgba(255, 69, 58, 0.15);
    color: var(--danger);
}

.product-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.product-card {
    background: linear-gradient(180deg, #151719 0%, #101112 100%);
    border: 1px solid rgba(111, 105, 94, 0.36);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    overflow: hidden;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.product-card::after {
    background: linear-gradient(180deg, rgba(255, 177, 26, 0.12), rgba(255, 177, 26, 0.04));
    content: "";
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 0.2s ease;
    z-index: 0;
}

.product-card > * {
    position: relative;
    z-index: 1;
}

.product-card:hover,
.product-card:focus-within {
    background: linear-gradient(180deg, #211f1a 0%, #171614 100%);
    border-color: var(--brand-ring);
    transform: scale(1.015);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 177, 26, 0.18);
}

.product-card:hover::after,
.product-card:focus-within::after {
    opacity: 1;
}

.product-visual {
    background: linear-gradient(135deg, #111315 0%, #1d1b17 100%);
    overflow: hidden;
    min-height: 120px;
    padding: 16px;
    position: relative;
    display: flex;
    align-items: flex-start;
    transition: background 0.2s ease;
}

.product-visual::before {
    background: linear-gradient(135deg, rgba(255, 177, 26, 0.11), rgba(255,255,255,0.02));
    border: 0.5px solid rgba(255, 177, 26, 0.24);
    border-radius: 8px;
    content: "";
    height: 60px;
    left: 20px;
    position: absolute;
    top: 30px;
    transform: skewX(-10deg);
    width: 90px;
}

.product-visual-autoglas {
    background:
        linear-gradient(90deg, rgba(5, 8, 12, 0.64) 0%, rgba(5, 8, 12, 0.22) 48%, rgba(5, 8, 12, 0.5) 100%),
        url("assets/products/autoglas-placeholder.jpg") center / cover no-repeat;
}

.product-card:hover .product-visual-autoglas,
.product-card:focus-within .product-visual-autoglas {
    background:
        linear-gradient(90deg, rgba(5, 8, 12, 0.52) 0%, rgba(5, 8, 12, 0.14) 48%, rgba(5, 8, 12, 0.42) 100%),
        url("assets/products/autoglas-placeholder.jpg") center / cover no-repeat;
}

.product-visual-autoglas::before {
    display: none;
}

.product-code {
    background: rgba(5, 10, 18, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 177, 26, 0.2);
    border-radius: 6px;
    color: var(--muted);
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    position: relative;
    transition: border-color 0.2s ease, color 0.2s ease;
    z-index: 1;
}

.product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 0 20px 20px 20px;
}

.view-form {
    margin: 0;
    padding: 0;
}

.product-card-clickable .product-card-link-form {
    inset: 0;
    position: absolute;
    z-index: 2;
}

.view-product-button {
    appearance: none;
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    display: block;
    font: inherit;
    margin: 0;
    padding: 0;
    text-align: left;
    text-decoration: none;
    width: 100%;
}

.product-card-overlay-link {
    height: 100%;
    inset: 0;
    position: absolute;
    z-index: 2;
}

.product-card-clickable .product-visual,
.product-card-clickable .product-title,
.product-card-clickable .product-body {
    position: relative;
    z-index: 3;
}

.product-card-clickable .product-visual,
.product-card-clickable .product-title,
.product-card-clickable .product-body {
    pointer-events: none;
}

.product-card-clickable .add-form,
.product-card-clickable .add-form * {
    pointer-events: auto;
}

.product-card-clickable .add-form {
    position: relative;
    z-index: 4;
}

.view-product-button:hover,
.view-product-button:focus-visible {
    background: transparent;
    box-shadow: none;
    outline: none;
}

.product-card:hover .product-title,
.product-card:focus-within .product-title {
    color: #fff7e6;
}

.product-card:hover .product-visual,
.product-card:focus-within .product-visual {
    background: linear-gradient(135deg, #2a2215 0%, #191816 100%);
}

.product-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    padding: 20px 20px 12px 20px;
    letter-spacing: -0.3px;
    transition: color 0.2s ease;
}

.product-meta {
    color: var(--muted);
    display: grid;
    font-size: 14px;
    gap: 6px;
    margin-bottom: 20px;
}

.price-row {
    align-items: flex-end;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: auto;
}

.price {
    color: var(--ink);
    font-size: 24px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.old-price {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    text-decoration: line-through;
}

.old-price.inline {
    display: inline;
    margin-right: 6px;
}

.discount-note {
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    margin-top: 2px;
}

.discount-note.inline {
    display: inline-block;
    margin: 0 0 0 6px;
}

.minimum {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}

.add-form {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 70px 1fr;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 0.5px solid var(--surface-border);
}

.product-card .add-form {
    grid-template-columns: 70px minmax(0, 1fr);
}

.add-form input,
.cart-quantity {
    text-align: center;
    font-weight: 600;
    background: #2C2C2E;
}

.empty {
    background: var(--surface);
    border-radius: 18px;
    color: var(--muted);
    font-size: 15px;
    padding: 60px 20px;
    text-align: center;
}

.pagination {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 32px 0 10px;
}

.pagination span {
    background: var(--surface);
    border-radius: 10px;
    color: var(--ink);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 14px;
}

.cart-list {
    display: grid;
    gap: 12px;
}

.cart-row {
    align-items: center;
    background: var(--surface);
    border-radius: 16px;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) 100px 120px auto;
    padding: 16px 20px;
}

.cart-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.cart-meta,
.muted {
    color: var(--muted);
}

.cart-meta {
    display: block;
    font-size: 13px;
    margin-top: 4px;
}

.line-total {
    color: var(--ink);
    font-size: 17px;
    font-weight: 600;
    text-align: right;
}

.link-button {
    color: var(--danger);
    font-size: 14px;
    padding: 6px;
    background: none;
}

.link-button:hover {
    background: rgba(255, 69, 58, 0.1);
}

.cart-total {
    align-items: center;
    background: #1C1C1E;
    border-radius: 16px;
    display: flex;
    font-size: 22px;
    font-weight: 700;
    justify-content: space-between;
    margin-top: 20px;
    padding: 20px;
}

.checkout-page {
    max-width: 1120px;
}

.checkout-layout {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) 380px;
}

.checkout-input-layout {
    grid-template-columns: minmax(0, 1fr);
}

.checkout-final-stack {
    display: grid;
    gap: 16px;
    margin: 0 auto;
    max-width: 760px;
    width: min(100%, 760px);
}

.checkout-final-summary {
    position: static;
    width: 100%;
}

.checkout-final-actions {
    background: rgba(28, 28, 30, 0.72);
    border: 0.5px solid var(--surface-border);
    border-radius: 16px;
    justify-content: flex-end;
    margin: 0;
    padding: 14px;
    width: 100%;
}

.checkout-form {
    display: grid;
    gap: 16px;
}

.checkout-form-layout {
    align-items: start;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
}

.checkout-main-fields {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.checkout-side-summary {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-width: 0;
    position: sticky;
    top: 92px;
}

.checkout-form-footer {
    grid-column: 1;
}

.checkout-side-summary .order-review {
    border: 1px solid var(--surface-border);
}

.checkout-shipping-section {
    border-top: 0.5px solid var(--surface-border);
    display: grid;
    gap: 14px;
    margin-top: 4px;
    padding-top: 18px;
}

.checkout-shipping-head {
    display: grid;
    gap: 4px;
}

.checkout-shipping-head h3 {
    font-size: 18px;
    letter-spacing: 0;
    margin: 0;
}

.checkout-shipping-head p {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
}

.checkout-field-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-field-full {
    grid-column: 1 / -1;
}

.shipping-same-check {
    min-height: auto;
}

.choice-section {
    display: grid;
    gap: 10px;
}

.choice-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}

.shipping-choice {
    align-items: center;
    background: #25272a;
    border: 1px solid rgba(111, 105, 94, 0.34);
    border-radius: 12px;
    cursor: pointer;
    display: grid;
    gap: 14px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 86px;
    padding: 14px 18px;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.shipping-choice:hover,
.shipping-choice:focus-within,
.shipping-choice:has(input:checked) {
    background: #3A3A3C;
    border-color: var(--brand-ring);
    box-shadow: 0 0 0 3px rgba(255, 177, 26, 0.12);
}

.shipping-choice strong {
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.shipping-choice span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
    margin-top: 2px;
}

.shipping-choice > span {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.shipping-choice input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    align-self: center;
    background: #121418;
    border: 1px solid rgba(232, 225, 214, 0.28);
    border-radius: 50%;
    box-shadow: inset 0 0 0 4px rgba(0, 0, 0, 0.16);
    display: grid;
    height: 22px;
    justify-self: center;
    margin: 0;
    min-height: 22px;
    padding: 0;
    place-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    width: 22px;
}

.shipping-choice input[type="radio"]::before {
    background: var(--brand);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 177, 26, 0.48);
    content: "";
    height: 10px;
    transform: scale(0);
    transition: transform 0.16s ease;
    width: 10px;
}

.shipping-choice input[type="radio"]:checked {
    background: rgba(255, 177, 26, 0.12);
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(255, 177, 26, 0.13);
}

.shipping-choice input[type="radio"]:checked::before {
    transform: scale(1);
}

.shipping-choice input[type="radio"]:focus-visible {
    outline: 2px solid rgba(255, 177, 26, 0.7);
    outline-offset: 3px;
}

.order-review {
    background: var(--surface);
    border-radius: 18px;
    display: grid;
    gap: 20px;
    padding: 24px;
}

.eyebrow {
    color: var(--brand);
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.review-heading,
.summary-head {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.summary-head {
    margin-bottom: 16px;
}

.order-review h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0;
}

.order-review .checkout-summary-title {
    font-size: 28px;
    text-align: center;
}

.checkout-summary-lines {
    display: grid;
    gap: 24px;
}

.checkout-summary-line,
.checkout-summary-total {
    align-items: start;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.checkout-summary-copy {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.checkout-summary-copy strong {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.25;
}

.checkout-summary-copy span,
.checkout-summary-copy a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.checkout-summary-copy a {
    color: var(--brand);
    justify-self: start;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.checkout-summary-amount {
    color: var(--ink);
    font-size: 20px;
    line-height: 1.25;
    text-align: right;
    white-space: nowrap;
}

.checkout-summary-total {
    border-top: 1px solid var(--surface-border);
    padding-top: 20px;
}

.checkout-summary-total strong {
    color: var(--ink);
    font-size: 22px;
    line-height: 1.2;
}

.checkout-summary-total strong:last-child {
    color: var(--brand);
    text-align: right;
    white-space: nowrap;
}

.review-badge,
.summary-count {
    background: #2C2C2E;
    border-radius: 12px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
}

.review-table {
    border: 0.5px solid var(--surface-border);
    border-radius: 12px;
    overflow: hidden;
}

.review-table-head,
.review-line {
    align-items: start;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) 70px 100px 110px;
    padding: 12px 16px;
}

.review-table-head {
    background: #2C2C2E;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 0.5px solid var(--surface-border);
}

.review-table-head span:not(:first-child) {
    text-align: right;
}

.review-line {
    background: var(--surface);
}

.review-line + .review-line {
    border-top: 0.5px solid var(--surface-border);
}

.review-line strong {
    font-size: 14px;
    font-weight: 500;
}

.review-line .muted {
    display: block;
    font-size: 13px;
    margin-top: 4px;
}

.review-line > span,
.review-line > strong:last-child {
    text-align: right;
    font-weight: 600;
}

.review-line small {
    color: var(--muted);
    display: none;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.review-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.8fr);
}

.review-breakdown,
.review-info-grid,
.summary-breakdown,
.summary-legal {
    display: grid;
    gap: 10px;
}

.review-breakdown,
.summary-breakdown {
    background: #2C2C2E;
    border-radius: 14px;
    padding: 16px;
}

.review-breakdown > div,
.summary-breakdown > div {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.review-breakdown span,
.summary-breakdown span,
.summary-legal span {
    color: var(--muted);
    font-size: 14px;
}

.review-breakdown strong,
.summary-breakdown strong,
.summary-legal strong {
    font-size: 14px;
    font-weight: 500;
}

.review-breakdown-total {
    border-top: 0.5px solid var(--surface-border);
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-top: 8px;
    padding-top: 12px;
}

.review-info-card {
    background: #2C2C2E;
    border-radius: 14px;
    display: grid;
    gap: 6px;
    padding: 16px;
}

.review-info-card span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.review-info-card strong {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.review-info-card a,
.summary-legal a,
.terms-check a {
    color: var(--brand);
    font-weight: 500;
}

.withdrawal-card {
    border: 1px solid rgba(255, 177, 26, 0.28);
}

.terms-check {
    align-items: center;
    background: #25272a;
    border: 1px solid rgba(111, 105, 94, 0.34);
    border-radius: 12px;
    cursor: pointer;
    display: grid;
    gap: 14px;
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 86px;
    padding: 14px 18px;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.terms-check:hover,
.terms-check:focus-within,
.terms-check:has(input:checked) {
    background: #3A3A3C;
    border-color: var(--brand-ring);
    box-shadow: 0 0 0 3px rgba(255, 177, 26, 0.12);
}

.terms-check span {
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.terms-check span a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
}

.terms-check span a:hover {
    text-decoration: underline;
}

.terms-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    align-self: center;
    background: #121418;
    border: 1px solid rgba(232, 225, 214, 0.28);
    border-radius: 6px;
    box-shadow: inset 0 0 0 4px rgba(0, 0, 0, 0.16);
    display: grid;
    height: 22px;
    justify-self: center;
    margin: 0;
    min-height: 22px;
    padding: 0;
    place-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    width: 22px;
    cursor: pointer;
}

.terms-check input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--brand);
    border-bottom: 2px solid var(--brand);
    transform: rotate(-45deg) scale(0);
    transition: transform 0.16s ease;
    margin-top: -3px;
}

.terms-check input[type="checkbox"]:checked {
    background: rgba(255, 177, 26, 0.12);
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(255, 177, 26, 0.13);
}

.terms-check input[type="checkbox"]:checked::before {
    transform: rotate(-45deg) scale(1);
}

.terms-check input[type="checkbox"]:focus-visible {
    outline: 2px solid rgba(255, 177, 26, 0.7);
    outline-offset: 3px;
}

.legal-content {
    line-height: 1.6;
    font-size: 15px;
}

.legal-content h2,
.legal-content h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 0 10px;
}

.legal-content h3 {
    font-size: 18px;
    margin-top: 24px;
}

.legal-content a,
.legal-link-grid a,
.cookie-consent a {
    color: var(--brand);
}

.legal-content ul {
    padding-left: 22px;
}

.legal-link-grid {
    display: grid;
    gap: 12px;
}

.legal-link-grid > a {
    background: #25272a;
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    display: grid;
    gap: 5px;
    padding: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.legal-link-grid > a:hover,
.legal-link-grid > a:focus-visible {
    background: #33302a;
    border-color: var(--brand-ring);
    transform: translateY(-1px);
}

.legal-link-grid strong {
    color: var(--ink);
}

.legal-link-grid span {
    color: var(--muted);
    line-height: 1.45;
}

.legal-table-wrap {
    overflow-x: auto;
}

.legal-table {
    border-collapse: collapse;
    min-width: 620px;
    width: 100%;
}

.legal-table th,
.legal-table td {
    border-bottom: 1px solid var(--surface-border);
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    color: var(--ink);
}

.legal-form {
    display: grid;
    gap: 16px;
}

.withdrawal-function {
    border-color: rgba(255, 177, 26, 0.38);
}

.withdrawal-function h2 {
    margin-top: 6px;
}

.legal-review-list {
    display: grid;
    gap: 10px;
    margin: 20px 0;
}

.legal-review-list > div {
    background: #25272a;
    border-radius: 10px;
    display: grid;
    gap: 4px;
    padding: 12px 14px;
}

.legal-review-list dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.legal-review-list dd {
    margin: 0;
}

.legal-checkout-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.legal-config-warning strong {
    color: inherit;
}

.cookie-consent {
    align-items: center;
    background: rgba(18, 20, 24, 0.98);
    border: 1px solid rgba(255, 177, 26, 0.38);
    border-radius: 14px;
    bottom: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    display: flex;
    gap: 20px;
    justify-content: space-between;
    left: 50%;
    max-width: 920px;
    padding: 16px 18px;
    position: fixed;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    z-index: 1200;
}

.cookie-consent p {
    color: var(--muted);
    margin: 5px 0 0;
}

.cookie-consent-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.cookie-consent-actions button {
    width: auto;
}

.summary-row {
    align-items: center;
    border-top: 0.5px solid var(--surface-border);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding-top: 16px;
}

.checkout-summary {
    position: sticky;
    top: 80px;
}

.checkout-summary.checkout-final-summary {
    position: static;
    top: auto;
}

.summary-head h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0;
}

.summary-total-card {
    background: #2C2C2E;
    border-radius: 16px;
    display: grid;
    gap: 6px;
    margin-bottom: 20px;
    padding: 20px;
}

.summary-total-card span,
.summary-total-card small {
    color: var(--muted);
    font-size: 14px;
}

.summary-total-card strong {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0;
}

.summary-list {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}

.account-profile-form {
    display: grid;
    gap: 14px;
}

.account-profile-form .actions {
    margin-top: 6px;
}

.account-address-value {
    max-width: 340px;
    text-align: right;
    white-space: normal;
}

.profile-head {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 8px;
}

.profile-head h2 {
    margin: 0;
}

.profile-head .button {
    flex-shrink: 0;
    font-size: 13px;
    padding: 8px 16px;
    min-height: 36px;
}

.summary-item {
    align-items: start;
    border-bottom: 0.5px solid var(--surface-border);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding-bottom: 12px;
}

.summary-item strong {
    font-size: 14px;
    font-weight: 500;
}

.summary-item > div {
    min-width: 0;
}

.summary-item > strong {
    color: var(--ink);
    font-weight: 600;
}

.summary-legal {
    border-top: 0.5px solid var(--surface-border);
    margin-top: 16px;
    padding-top: 16px;
}

.summary-legal > div {
    align-items: start;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.admin-tool-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-tool-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    color: inherit;
    display: grid;
    gap: 10px;
    min-height: 190px;
    padding: 22px;
    text-decoration: none;
    transition: var(--transition);
}

.admin-tool-card:hover,
.admin-tool-card:focus-visible {
    border-color: var(--brand-ring);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px);
}

.admin-tool-card span {
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.admin-tool-card h3 {
    color: var(--ink);
    font-size: 24px;
    letter-spacing: 0;
    line-height: 1.14;
    margin: 0;
}

.admin-tool-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

.admin-tool-card strong {
    align-self: end;
    color: var(--brand);
    font-size: 14px;
}

.admin-user-filter-grid {
    grid-template-columns: minmax(260px, 2fr) repeat(3, minmax(150px, 1fr));
}

.admin-user-list {
    display: grid;
    gap: 18px;
}

.admin-user-card {
    display: grid;
    gap: 18px;
    min-width: 0;
    scroll-margin-top: 24px;
}

.admin-user-card:target {
    border-color: var(--brand-ring);
    box-shadow: 0 0 0 3px rgba(255, 177, 26, 0.14);
}

.admin-user-head {
    align-items: start;
    border-bottom: 0.5px solid var(--surface-border);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding-bottom: 16px;
}

.admin-user-head h2,
.admin-user-grid h3 {
    margin: 0;
}

.admin-user-head h2 {
    font-size: 24px;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.admin-user-head .muted {
    overflow-wrap: anywhere;
}

.admin-user-status-panel {
    display: grid;
    gap: 10px;
    min-width: 260px;
}

.admin-user-status {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.admin-user-actions {
    align-items: stretch;
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) 44px;
}

.admin-user-orders-button {
    margin-top: 0;
    width: 100%;
}

.admin-user-detail-toggle {
    width: 44px;
}

.admin-user-details {
    display: grid;
    gap: 18px;
}

.admin-user-details[hidden] {
    display: none;
}

.admin-user-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-user-grid h3 {
    border-left: 3px solid var(--brand);
    color: var(--brand);
    font-size: 18px;
    padding-left: 8px;
}

.admin-user-edit-section {
    border-top: 0.5px solid var(--surface-border);
    display: grid;
    gap: 14px;
    padding-top: 18px;
}

.admin-user-edit-section summary {
    list-style: none;
}

.admin-user-edit-section summary::-webkit-details-marker {
    display: none;
}

.admin-user-edit-summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 14px;
    justify-content: space-between;
}

.admin-user-edit-summary strong {
    color: var(--brand);
    font-size: 18px;
    letter-spacing: 0;
}

.admin-user-edit-toggle {
    flex: 0 0 44px;
}

.admin-user-edit-section[open] .admin-order-toggle-icon {
    transform: rotate(180deg);
}

.admin-user-edit-form {
    display: grid;
    gap: 16px;
    margin-top: 14px;
}

.admin-user-address-edit {
    margin-top: 0;
}

.admin-user-address-warning {
    background: rgba(255, 177, 26, 0.12);
    border: 1px solid rgba(255, 177, 26, 0.32);
    border-radius: 8px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.4;
    margin: 0;
    padding: 10px 12px;
}

.admin-user-address-warning[hidden] {
    display: none;
}

.admin-user-address-edit input[aria-invalid="true"] {
    border-color: var(--brand-ring);
    box-shadow: 0 0 0 3px rgba(255, 177, 26, 0.14);
}

.admin-user-edit-actions {
    justify-content: flex-end;
    margin-top: 0;
}

.admin-user-pagination button {
    width: auto;
}

.admin-user-orders-link {
    color: var(--brand);
    overflow-wrap: anywhere;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.admin-user-order-summary {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-user-order-summary > div {
    background: #171717;
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    display: grid;
    gap: 6px;
    padding: 14px;
}

.admin-user-order-summary span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.admin-user-order-summary strong {
    color: var(--ink);
    font-size: 14px;
    overflow-wrap: anywhere;
}

.admin-user-order-card-actions {
    align-items: stretch;
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) 44px;
    margin-top: 10px;
}

.admin-order-list {
    display: grid;
    gap: 32px;
    min-width: 0;
}

.admin-order-filter-tabs {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 18px;
}

.admin-order-filter-tab {
    align-items: start;
    background:
        linear-gradient(180deg, rgba(21, 23, 25, 0.96), rgba(12, 13, 14, 0.96));
    border: 1px solid rgba(111, 105, 94, 0.42);
    border-radius: 8px;
    color: var(--ink);
    display: grid;
    gap: 6px 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 106px;
    padding: 15px;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.admin-order-filter-tab:hover,
.admin-order-filter-tab:focus-visible {
    background:
        linear-gradient(180deg, rgba(33, 31, 26, 0.98), rgba(18, 18, 18, 0.98));
    border-color: rgba(255, 177, 26, 0.48);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
    opacity: 1;
    transform: translateY(-1px);
}

.admin-order-filter-tab.is-active {
    background:
        linear-gradient(135deg, rgba(255, 177, 26, 0.18), rgba(255, 255, 255, 0.04)),
        rgba(21, 23, 25, 0.98);
    border-color: rgba(255, 177, 26, 0.7);
    box-shadow: 0 0 0 3px rgba(255, 177, 26, 0.12);
}

.admin-order-filter-tab span {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
}

.admin-order-filter-tab strong {
    align-items: center;
    background: var(--brand);
    border-radius: 8px;
    color: #17120a;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    justify-content: center;
    line-height: 1;
    min-width: 36px;
    padding: 7px 9px;
}

.admin-order-filter-tab small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
    grid-column: 1 / -1;
    line-height: 1.45;
}

#admin-orders-message {
    scroll-margin-top: 96px;
}

.admin-top-status-message {
    align-items: center;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin: 0;
    padding-left: 24px;
    padding-right: 24px;
    position: sticky;
    top: var(--admin-topbar-offset, 128px);
    z-index: 99;
}

.admin-top-status-message.is-hidden {
    display: none;
}

.admin-top-status-close {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: inherit;
    display: inline-flex;
    flex: 0 0 30px;
    font-size: 20px;
    font-weight: 700;
    height: 30px;
    justify-content: center;
    line-height: 1;
    min-height: 30px;
    padding: 0;
    width: 30px;
}

.admin-top-status-close:hover,
.admin-top-status-close:focus-visible {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.admin-order-card {
    background: linear-gradient(180deg, rgba(44, 44, 46, 0.98), rgba(28, 28, 30, 0.98));
    border: 1px solid rgba(255, 177, 26, 0.18);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 0;
    min-width: 0;
    padding: 24px;
    position: relative;
    width: 100%;
}

.admin-order-card + .admin-order-card {
    margin-top: 4px;
}

.admin-order-head {
    align-items: start;
    border-bottom: 1px solid rgba(255, 177, 26, 0.16);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding-bottom: 18px;
}

.admin-order-head > div {
    min-width: 0;
}

.admin-order-head h2,
.admin-order-grid h3,
.admin-products h3 {
    margin: 0;
}

.admin-order-head h2 {
    font-size: 24px;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.admin-order-customer-preview {
    color: var(--paper);
    display: grid;
    font-size: 14px;
    font-weight: 650;
    gap: 4px;
    margin-top: 8px;
}

.admin-order-customer-preview span {
    overflow-wrap: anywhere;
}

.admin-order-customer-preview span + span {
    color: var(--muted);
    font-weight: 600;
}

.admin-order-total {
    min-width: 180px;
    text-align: right;
}

.admin-order-total span {
    color: var(--muted);
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.admin-order-total strong {
    color: var(--brand);
    font-size: 24px;
}

.admin-order-actions {
    align-items: stretch;
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) 44px;
    margin-top: 10px;
}

.admin-invoice-button {
    margin-top: 0;
    width: 100%;
}

.admin-order-detail-toggle {
    align-items: center;
    background: #171717;
    border: 1px solid rgba(255, 177, 26, 0.22);
    border-radius: 8px;
    color: var(--brand);
    display: inline-flex;
    height: 44px;
    justify-content: center;
    min-height: 44px;
    padding: 0;
    width: 44px;
}

.admin-order-detail-toggle:hover,
.admin-order-detail-toggle:focus-visible {
    background: #25272a;
    box-shadow: 0 0 0 3px rgba(255, 177, 26, 0.12);
}

.admin-order-toggle-icon {
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    height: 9px;
    transform: rotate(45deg);
    transition: transform 0.18s ease, margin-top 0.18s ease;
    width: 9px;
}

.admin-order-detail-toggle[aria-expanded="true"] .admin-order-toggle-icon {
    margin-top: 6px;
    transform: rotate(-135deg);
}

.admin-order-details {
    display: grid;
    gap: 22px;
}

.admin-order-details[hidden] {
    display: none;
}

.admin-order-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-status-editor {
    background: rgba(23, 23, 23, 0.86);
    border: 1px solid rgba(232, 225, 214, 0.12);
    border-radius: 8px;
    padding: 16px;
}

.admin-status-editor h3 {
    font-size: 18px;
    margin: 0;
}

.admin-status-form {
    display: grid;
    gap: 10px;
}

.admin-status-form-grid {
    align-items: end;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(280px, 420px) auto;
    justify-content: start;
}

.admin-status-form-grid button {
    min-height: 44px;
    white-space: nowrap;
}

.admin-status-dropdown-stack {
    display: grid;
    gap: 10px;
    min-width: 0;
    width: min(100%, 420px);
}

.admin-status-choice-label {
    color: var(--muted);
    display: block;
    font-size: 13px;
    font-weight: 500;
}

.admin-status-dropdown-groups {
    display: grid;
    gap: 14px;
}

.admin-status-dropdown-card {
    background: #25272a;
    border: 1px solid rgba(111, 105, 94, 0.34);
    border-radius: 8px;
    display: grid;
    gap: 8px;
    margin: 0;
    min-width: 0;
    padding: 12px;
}

.admin-status-dropdown-card:focus-within {
    border-color: var(--brand-ring);
    box-shadow: 0 0 0 3px rgba(255, 177, 26, 0.12);
}

.admin-status-dropdown-card label {
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

.admin-status-dropdown-card select,
.admin-status-dropdown-card input {
    background: #121418;
    border: 1px solid rgba(232, 225, 214, 0.28);
    min-height: 46px;
    padding-left: 14px;
}

.admin-order-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.admin-order-grid h3,
.admin-products h3 {
    font-size: 18px;
}

.admin-summary-list {
    margin: 12px 0 0;
}

.admin-summary-list .summary-row {
    align-items: start;
}

.admin-summary-list strong {
    max-width: 70%;
    overflow-wrap: anywhere;
    text-align: right;
}

.admin-products {
    border-top: 1px solid rgba(232, 225, 214, 0.13);
    padding-top: 18px;
}

.admin-product-list {
    display: grid;
    gap: 10px;
}

.admin-product-row {
    align-items: center;
    background: #171717;
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1.5fr) minmax(150px, 0.55fr) minmax(120px, 0.4fr);
    padding: 12px;
}

.admin-product-row strong,
.admin-product-row span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.admin-product-row > strong {
    text-align: right;
}

.admin-product-row .muted {
    display: block;
    font-size: 13px;
    margin-top: 4px;
}

.neutral-product-link {
    color: inherit;
    text-decoration: none;
}

.neutral-product-link:hover {
    color: inherit;
    opacity: 0.78;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.admin-order-breakdown {
    margin-top: 0;
}

.admin-order-events {
    border-top: 1px solid rgba(232, 225, 214, 0.13);
    padding-top: 18px;
}

.admin-order-events h3 {
    font-size: 18px;
    margin: 0;
}

.admin-event-list {
    display: grid;
    gap: 10px;
}

.admin-event-row {
    background: #171717;
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    display: grid;
    gap: 8px;
    padding: 12px;
}

.admin-event-row div {
    align-items: start;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.admin-event-row strong {
    color: var(--ink);
    font-size: 14px;
}

.admin-event-row span,
.admin-event-row p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.admin-event-row span {
    text-align: right;
}

.admin-audit-filters form {
    display: grid;
    gap: 18px;
}

.admin-audit-filter-grid {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
}

.admin-audit-list {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.admin-audit-card {
    background: linear-gradient(180deg, rgba(44, 44, 46, 0.98), rgba(28, 28, 30, 0.98));
    border: 1px solid rgba(255, 177, 26, 0.16);
    border-radius: 8px;
    display: grid;
    gap: 16px;
    min-width: 0;
    padding: 18px;
    scroll-margin-top: 24px;
}

.admin-audit-card:target {
    border-color: var(--brand-ring);
    box-shadow: 0 0 0 3px rgba(255, 177, 26, 0.14);
}

.admin-audit-head {
    align-items: start;
    border-bottom: 1px solid rgba(232, 225, 214, 0.13);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding-bottom: 14px;
}

.admin-audit-head h2 {
    font-size: 20px;
    letter-spacing: 0;
    margin: 0;
    overflow-wrap: anywhere;
}

.admin-audit-status {
    display: grid;
    gap: 8px;
    justify-items: end;
    min-width: 190px;
    text-align: right;
}

.admin-audit-status strong {
    color: var(--muted);
    font-size: 13px;
}

.admin-audit-badge {
    border: 1px solid var(--surface-border);
    border-radius: 999px;
    color: var(--muted);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    min-width: 86px;
    padding: 6px 10px;
}

.admin-audit-badge.outcome-success {
    background: rgba(50, 215, 75, 0.12);
    border-color: rgba(50, 215, 75, 0.34);
    color: var(--success);
}

.admin-audit-badge.outcome-failure,
.admin-audit-badge.outcome-denied {
    background: rgba(255, 69, 58, 0.12);
    border-color: rgba(255, 69, 58, 0.34);
    color: var(--danger);
}

.admin-audit-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-audit-grid > div {
    background: #171717;
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    display: grid;
    gap: 6px;
    min-width: 0;
    padding: 12px;
}

.admin-audit-grid span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.admin-audit-grid strong {
    color: var(--ink);
    font-size: 13px;
    overflow-wrap: anywhere;
}

.admin-audit-json {
    background: #111;
    border: 1px solid rgba(232, 225, 214, 0.13);
    border-radius: 8px;
    color: var(--muted);
    font: 12px/1.55 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    padding: 12px;
    white-space: pre-wrap;
}

.admin-audit-detail-layout {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-audit-hero-card {
    display: grid;
    gap: 18px;
}

.admin-audit-hero-head {
    align-items: start;
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.admin-audit-hero-head h2 {
    font-size: 28px;
    letter-spacing: 0;
    margin: 0;
    overflow-wrap: anywhere;
}

.admin-audit-hero-head p {
    color: var(--muted);
    font-size: 14px;
    margin: 8px 0 0;
}

.admin-audit-hero-actions {
    align-items: end;
    display: grid;
    gap: 10px;
    justify-items: end;
}

.admin-audit-focus-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-audit-focus-grid > div {
    background: #171717;
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    display: grid;
    gap: 6px;
    min-width: 0;
    padding: 14px;
}

.admin-audit-focus-grid span,
.admin-audit-clean-list span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.admin-audit-focus-grid strong {
    color: var(--ink);
    font-size: 16px;
    overflow-wrap: anywhere;
}

.admin-audit-focus-grid small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.admin-audit-focus-grid .integrity-verified {
    background: rgba(50, 215, 75, 0.1);
    border-color: rgba(50, 215, 75, 0.34);
}

.admin-audit-focus-grid .integrity-failed {
    background: rgba(255, 69, 58, 0.1);
    border-color: rgba(255, 69, 58, 0.34);
}

.admin-audit-focus-grid .integrity-legacy {
    background: rgba(255, 177, 26, 0.1);
    border-color: rgba(255, 177, 26, 0.28);
}

.admin-audit-compact-panel {
    display: grid;
    gap: 14px;
}

.admin-audit-clean-list {
    display: grid;
    gap: 0;
}

.admin-audit-clean-list > div {
    align-items: center;
    border-top: 1px solid rgba(232, 225, 214, 0.11);
    display: grid;
    gap: 14px;
    grid-template-columns: 150px minmax(0, 1fr);
    padding: 12px 0;
}

.admin-audit-clean-list > div:first-child {
    border-top: 0;
    padding-top: 0;
}

.admin-audit-clean-list strong {
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.admin-audit-details-block {
    display: grid;
    gap: 14px;
}

.admin-audit-details-block summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    list-style: none;
}

.admin-audit-details-block summary::-webkit-details-marker {
    display: none;
}

.admin-audit-details-block summary strong {
    color: var(--ink);
    font-size: 18px;
}

.admin-audit-details-block summary small {
    color: var(--brand);
    font-size: 13px;
    font-weight: 700;
}

.admin-audit-mini-list {
    display: grid;
    gap: 10px;
}

.admin-audit-mini-row {
    background: #171717;
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    display: grid;
    gap: 4px;
    padding: 12px;
    text-decoration: none;
}

.admin-audit-mini-row:hover,
.admin-audit-mini-row:focus-visible {
    border-color: var(--brand-ring);
    opacity: 1;
}

.admin-audit-mini-row.is-current {
    border-color: rgba(255, 177, 26, 0.48);
}

.admin-audit-mini-row span,
.admin-audit-mini-row small {
    color: var(--muted);
    font-size: 12px;
}

.admin-audit-mini-row strong {
    color: var(--ink);
    font-size: 14px;
    overflow-wrap: anywhere;
}

/* Single Product Detail Page */
.product-detail-actions {
    margin-bottom: 24px;
}

.breadcrumbs {
    margin-bottom: 24px;
    font-size: 14px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    min-width: 0;
}

.breadcrumbs li + li::before {
    content: "\203A";
    color: var(--muted);
}

.breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--ink);
    text-decoration: underline;
}

.breadcrumbs [aria-current="page"] {
    color: var(--ink);
    overflow-wrap: anywhere;
}

.back-button {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--muted) !important;
    padding: 8px 16px !important;
    min-height: 38px !important;
    border-radius: 12px !important;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--ink) !important;
}

.product-detail-visual {
    min-height: 180px;
}

.product-detail-card {
    margin: 0 auto;
    max-width: 760px;
    min-height: 0;
    width: 100%;
}

.product-detail-card:hover,
.product-detail-card:focus-within {
    transform: none;
}

.product-detail-title {
    font-size: 26px;
    padding-bottom: 16px;
}

.product-detail-price {
    margin-bottom: 0;
}

.price.large {
    font-size: 30px;
    letter-spacing: 0;
}

.product-detail-add {
    grid-template-columns: 90px minmax(0, 1fr);
}

.sr-only {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

/* Demo modal */
body.demo-modal-open {
    overflow: hidden;
}

.demo-modal {
    align-items: center;
    background: rgba(5, 5, 4, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 500;
}

.demo-modal.is-hidden {
    display: none;
}

.demo-modal-card {
    background:
        linear-gradient(135deg, rgba(255, 177, 26, 0.18), rgba(255, 255, 255, 0.03) 36%),
        #151719;
    border: 1px solid rgba(255, 177, 26, 0.34);
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.62);
    max-width: 720px;
    padding: 34px;
    width: min(100%, 720px);
}

.demo-modal-badge {
    color: var(--brand);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.demo-modal-card h2 {
    font-size: 42px;
    letter-spacing: 0;
    line-height: 1.05;
    margin: 0;
}

.demo-modal-card p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
    margin: 18px 0 28px;
    max-width: 620px;
}

.demo-modal-card button {
    width: 100%;
}

/* Home page */
.demo-ribbon {
    align-items: center;
    background: var(--brand);
    color: #151008;
    display: flex;
    font-size: 12px;
    font-weight: 800;
    justify-content: center;
    letter-spacing: 0;
    min-height: 32px;
    padding: 6px 18px;
    position: sticky;
    text-align: center;
    text-transform: uppercase;
    top: 0;
    z-index: 130;
}

.has-demo-ribbon .topbar {
    top: 32px;
}

.home-page main {
    overflow: hidden;
}

.home-shell {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 24px;
    width: 100%;
}

.home-hero {
    align-items: center;
    display: flex;
    min-height: calc(100svh - 86px);
    padding: 44px 0 56px;
    position: relative;
}

.home-hero-grid {
    align-items: center;
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
}

.home-kicker,
.entry-label {
    color: var(--brand);
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.home-hero h1 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.02;
    margin: 0;
    max-width: 760px;
}

.home-hero p,
.section-heading p,
.search-entry p,
.blog-preview-card p,
.site-footer p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.home-hero p {
    margin: 20px 0 0;
    max-width: 620px;
}

.home-trust-row {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
    max-width: 660px;
}

.home-trust-row span {
    background: rgba(21, 23, 25, 0.72);
    border: 1px solid rgba(111, 105, 94, 0.42);
    border-radius: 8px;
    color: var(--muted);
    display: block;
    font-size: 13px;
    line-height: 1.35;
    min-height: 82px;
    padding: 14px 16px;
}

.home-trust-row strong {
    color: var(--ink);
    display: block;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 8px;
}

.home-actions,
.home-entry-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.home-visual {
    background:
        linear-gradient(135deg, rgba(255, 177, 26, 0.16), rgba(89, 196, 255, 0.09) 34%, rgba(21, 23, 25, 0.92)),
        #111315;
    border: 1px solid rgba(255, 177, 26, 0.24);
    border-radius: 8px;
    box-shadow: var(--shadow);
    min-height: 500px;
    overflow: hidden;
    position: relative;
}

.home-visual::before {
    background:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 22px);
    content: "";
    inset: 0;
    opacity: 0.7;
    position: absolute;
}

.hero-scan-panel,
.hero-trust-panel {
    background: rgba(8, 8, 6, 0.74);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(232, 225, 214, 0.16);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
    display: grid;
    gap: 10px;
    padding: 18px;
    position: absolute;
    z-index: 3;
}

.hero-scan-panel {
    left: 28px;
    top: 28px;
    width: min(48%, 290px);
}

.hero-trust-panel {
    bottom: 30px;
    left: 28px;
    width: 264px;
}

.panel-label {
    color: var(--brand);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.hero-scan-panel strong,
.hero-trust-panel strong {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.2;
}

.scan-lines {
    display: grid;
    gap: 8px;
    margin-top: 4px;
}

.scan-lines span {
    background: linear-gradient(90deg, rgba(255, 177, 26, 0.92), rgba(89, 196, 255, 0.72));
    border-radius: 999px;
    display: block;
    height: 8px;
}

.scan-lines span:nth-child(2) {
    opacity: 0.72;
    width: 76%;
}

.scan-lines span:nth-child(3) {
    opacity: 0.46;
    width: 54%;
}

.hero-trust-panel ul {
    color: var(--muted);
    display: grid;
    font-size: 13px;
    gap: 8px;
    line-height: 1.35;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-trust-panel li {
    align-items: center;
    display: flex;
    gap: 8px;
}

.hero-trust-panel li::before {
    background: #59c4ff;
    border-radius: 50%;
    content: "";
    flex: 0 0 7px;
    height: 7px;
    width: 7px;
}

.glass-plate {
    background: linear-gradient(135deg, rgba(255, 177, 26, 0.2), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 177, 26, 0.48);
    border-radius: 8px;
    height: 154px;
    left: 12%;
    position: absolute;
    top: 38%;
    transform: skewX(-11deg);
    width: 68%;
    z-index: 1;
}

.glass-plate span {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    display: block;
    height: 2px;
    left: 10%;
    position: absolute;
    right: 12%;
}

.glass-plate span:nth-child(1) {
    top: 34%;
}

.glass-plate span:nth-child(2) {
    top: 52%;
}

.glass-plate span:nth-child(3) {
    top: 70%;
}

.tire-plate {
    align-items: center;
    background:
        conic-gradient(from 24deg, #2c2c2e, #0d0f12, #43413a, #0d0f12, #2c2c2e);
    border: 1px solid rgba(232, 225, 214, 0.2);
    border-radius: 50%;
    bottom: 36px;
    box-shadow: inset 0 0 0 18px rgba(0, 0, 0, 0.28), 0 18px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    height: 170px;
    justify-content: center;
    position: absolute;
    right: 54px;
    width: 170px;
    z-index: 2;
}

.tire-plate span {
    background: #151719;
    border: 1px solid rgba(255, 177, 26, 0.28);
    border-radius: 50%;
    height: 74px;
    width: 74px;
}

.visual-stat {
    background: rgba(8, 8, 6, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 177, 26, 0.24);
    border-radius: 8px;
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    position: absolute;
    z-index: 3;
}

.visual-stat strong {
    color: var(--ink);
    font-size: 26px;
    line-height: 1;
}

.visual-stat span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.visual-stat-products {
    right: 34px;
    top: 114px;
}

.visual-stat-modules {
    right: 34px;
    top: 32px;
}

.home-section {
    padding: 42px 0;
}

.home-search-section {
    padding-top: 12px;
}

.section-heading {
    margin-bottom: 20px;
    max-width: 760px;
}

.section-heading h2 {
    font-size: 34px;
    letter-spacing: 0;
    line-height: 1.12;
    margin: 0;
}

.section-heading p {
    margin: 10px 0 0;
}

.compact-heading {
    align-items: end;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 480px);
    max-width: none;
}

.section-title-stack .eyebrow {
    margin-bottom: 12px;
}

.compact-heading p {
    margin: 0;
    max-width: 480px;
}

.home-search-stack {
    display: grid;
    gap: 18px;
}

.search-entry {
    background: linear-gradient(180deg, #151719 0%, #101112 100%);
    border: 1px solid rgba(111, 105, 94, 0.4);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 0;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    min-height: 318px;
    overflow: hidden;
}

.search-entry-copy {
    background:
        linear-gradient(135deg, rgba(255, 177, 26, 0.12), rgba(255, 255, 255, 0.02)),
        rgba(11, 18, 29, 0.52);
    border-right: 1px solid rgba(111, 105, 94, 0.32);
    padding: 28px;
}

.search-entry-link {
    color: inherit;
    display: block;
    text-decoration: none;
}

.search-entry-link .entry-label,
.search-entry-link h3 {
    color: var(--ink);
}

.search-entry-link:hover,
.search-entry-link:focus-visible {
    background:
        linear-gradient(135deg, rgba(255, 177, 26, 0.2), rgba(255, 255, 255, 0.04)),
        rgba(18, 22, 27, 0.72);
    opacity: 1;
}

.search-entry-link:focus-visible {
    outline: 2px solid var(--brand-ring);
    outline-offset: -4px;
}

.search-entry h3 {
    font-size: 28px;
    letter-spacing: 0;
    line-height: 1.12;
    margin: 0;
}

.search-entry p {
    margin: 12px 0 0;
}

.home-search-form {
    align-content: center;
    display: grid;
    padding: 28px;
}

.home-filter-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-filter-grid input:disabled {
    background: rgba(44, 44, 46, 0.76);
    border-color: rgba(111, 105, 94, 0.32);
    color: rgba(243, 247, 251, 0.66);
    opacity: 1;
}

.search-entry-placeholder {
    border-color: rgba(232, 225, 214, 0.22);
}

.search-entry-placeholder .search-entry-copy {
    background:
        linear-gradient(135deg, rgba(70, 143, 190, 0.18), rgba(255, 177, 26, 0.08)),
        rgba(11, 18, 29, 0.52);
}

.recommendation-grid,
.blog-preview-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.recommendation-card,
.blog-preview-card,
.category-card {
    background: linear-gradient(180deg, #151719 0%, #101112 100%);
    border: 1px solid rgba(111, 105, 94, 0.36);
    border-radius: 8px;
    color: var(--ink);
    min-width: 0;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.recommendation-card {
    display: grid;
    gap: 10px;
    min-height: 236px;
    padding: 18px;
}

.recommendation-card:hover,
.recommendation-card:focus-visible,
.category-card:hover,
.category-card:focus-visible,
.blog-preview-card:hover {
    background: linear-gradient(180deg, #211f1a 0%, #171614 100%);
    border-color: var(--brand-ring);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
    opacity: 1;
    transform: translateY(-2px);
}

.recommendation-card h3,
.blog-preview-card h3 {
    color: var(--ink);
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1.3;
    margin: 0;
}

.recommendation-card span:not(.product-code),
.recommendation-card small {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.recommendation-card strong {
    align-self: end;
    color: var(--brand);
    font-size: 21px;
}

.category-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card-form {
    display: flex;
    margin: 0;
    min-width: 0;
}

.category-card {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
    min-height: 116px;
    padding: 18px;
    text-align: left;
    width: 100%;
}

.category-card span {
    color: var(--ink);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.category-card strong {
    color: var(--brand);
    font-size: 13px;
    margin-top: auto;
}

.blog-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-preview-card {
    display: block;
    min-height: 210px;
    padding: 22px;
    text-decoration: none;
}

.blog-landing-grid {
    margin-top: 16px;
}

.blog-landing-card {
    min-height: 236px;
}

.blog-preview-card span {
    color: var(--brand);
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.blog-preview-card p {
    margin: 10px 0 0;
}

.blog-card-action {
    color: var(--brand);
    display: block;
    font-size: 13px;
    margin-top: 18px;
}

.article-body {
    background:
        linear-gradient(180deg, #0b0d0f 0%, #111315 42%, #070706 100%);
}

.article-body .topbar {
    margin-bottom: 0;
    position: static;
}

.article-main {
    overflow: hidden;
}

.article-guide {
    border-bottom: 1px solid rgba(111, 105, 94, 0.26);
}

.article-hero-section {
    background:
        linear-gradient(180deg, rgba(255, 177, 26, 0.08), transparent 60%),
        linear-gradient(90deg, rgba(5, 7, 9, 0.86), rgba(13, 15, 17, 0.62));
    border-bottom: 1px solid rgba(111, 105, 94, 0.26);
    padding: 56px 0 48px;
}

.article-hero-grid {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
}

.article-hero-copy {
    min-width: 0;
}

.article-back-link {
    align-items: center;
    border-bottom: 1px solid rgba(255, 177, 26, 0.42);
    color: var(--muted);
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 4px;
}

.article-back-link:hover {
    color: var(--brand);
    opacity: 1;
}

.article-hero-copy h1 {
    color: #ffffff;
    font-size: 46px;
    font-weight: 800;
    hyphens: none;
    letter-spacing: 0;
    line-height: 1.02;
    margin: 0;
    max-width: 780px;
    overflow-wrap: normal;
}

.article-hero-copy p {
    color: rgba(232, 225, 214, 0.76);
    font-size: 17px;
    line-height: 1.7;
    margin: 22px 0 0;
    max-width: 660px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.article-meta span {
    background: rgba(255, 177, 26, 0.08);
    border: 1px solid rgba(255, 177, 26, 0.24);
    border-radius: 8px;
    color: rgba(243, 247, 251, 0.78);
    font-size: 12px;
    font-weight: 700;
    padding: 7px 10px;
}

.article-visual {
    background: #0d0f12;
    border: 1px solid rgba(255, 177, 26, 0.26);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
    margin: 0;
    overflow: hidden;
    position: relative;
}

.article-visual::before {
    background: linear-gradient(90deg, rgba(255, 177, 26, 0.16), transparent 22%, transparent 78%, rgba(255, 177, 26, 0.1));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.article-visual img {
    aspect-ratio: 1.48;
    display: block;
    object-fit: cover;
    object-position: center top;
    position: relative;
    width: 100%;
    z-index: 0;
}

.article-visual figcaption {
    background: rgba(8, 8, 6, 0.82);
    border-top: 1px solid rgba(255, 177, 26, 0.22);
    color: rgba(232, 225, 214, 0.7);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    padding: 13px 16px;
    position: relative;
    z-index: 2;
}

.article-anchor-wrap {
    background: rgba(8, 8, 6, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(111, 105, 94, 0.34);
    position: sticky;
    top: 0;
    z-index: 60;
}

.article-anchor-bar {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    padding-top: 10px;
    scrollbar-width: none;
}

.article-anchor-bar::-webkit-scrollbar {
    display: none;
}

.article-anchor-bar a {
    background: rgba(21, 23, 25, 0.82);
    border: 1px solid rgba(111, 105, 94, 0.34);
    border-radius: 8px;
    color: rgba(243, 247, 251, 0.82);
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 12px;
    white-space: nowrap;
}

.article-anchor-bar a:hover,
.article-anchor-bar a:focus-visible {
    border-color: rgba(255, 177, 26, 0.46);
    color: var(--brand);
    opacity: 1;
}

.article-content-shell {
    display: grid;
    gap: 42px;
    grid-template-columns: 244px minmax(0, 1fr);
    max-width: 1180px;
    padding-top: 46px;
}

.article-index {
    align-self: start;
    border-left: 2px solid rgba(255, 177, 26, 0.38);
    display: grid;
    gap: 12px;
    padding-left: 18px;
    position: sticky;
    top: 74px;
}

.article-index span {
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.article-index a {
    color: rgba(232, 225, 214, 0.72);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
}

.article-index a:hover,
.article-index a:focus-visible {
    color: #ffffff;
    opacity: 1;
}

.article-flow {
    display: grid;
    gap: 54px;
    min-width: 0;
}

.article-lead-panel {
    background:
        linear-gradient(135deg, rgba(255, 177, 26, 0.14), rgba(116, 183, 255, 0.07)),
        rgba(21, 23, 25, 0.82);
    border: 1px solid rgba(255, 177, 26, 0.26);
    border-radius: 8px;
    display: grid;
    gap: 24px 32px;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    padding: 30px;
}

.article-lead-panel h2,
.article-chapter h2 {
    color: #ffffff;
    font-size: 32px;
    letter-spacing: 0;
    line-height: 1.12;
    margin: 0;
}

.article-lead-panel p,
.article-chapter p,
.article-chapter li {
    color: rgba(232, 225, 214, 0.76);
    font-size: 16px;
    line-height: 1.72;
}

.article-lead-panel p {
    margin: 0;
}

.article-lead-points {
    border-top: 1px solid rgba(255, 177, 26, 0.22);
    display: grid;
    gap: 12px;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 20px;
}

.article-lead-points span {
    color: rgba(243, 247, 251, 0.86);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    padding-left: 16px;
    position: relative;
}

.article-lead-points span::before {
    background: var(--brand);
    border-radius: 999px;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    top: 8px;
    width: 6px;
}

.article-section-label {
    color: var(--brand);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.article-chapter {
    border-top: 1px solid rgba(111, 105, 94, 0.34);
    padding-top: 38px;
    scroll-margin-top: 86px;
}

.article-chapter-heading {
    max-width: 760px;
}

.article-chapter-heading p,
.article-chapter-copy p {
    margin: 16px 0 0;
}

.article-chapter-split {
    align-items: start;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
}

.article-chapter-muted,
.article-check-panel,
.article-label-section {
    background: rgba(21, 23, 25, 0.58);
    border: 1px solid rgba(111, 105, 94, 0.34);
    border-radius: 8px;
    padding: 30px;
}

.article-code-card {
    background:
        linear-gradient(145deg, rgba(255, 177, 26, 0.14), transparent 46%),
        #0d0f12;
    border: 1px solid rgba(255, 177, 26, 0.24);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
    display: grid;
    gap: 14px;
    padding: 24px;
}

.article-code-line,
.article-code-labels {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.article-eu-label-card .article-code-line,
.article-eu-label-card .article-code-labels {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-code-line span {
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 177, 26, 0.24);
    border-radius: 8px;
    color: #ffffff;
    display: inline-flex;
    font-size: 28px;
    font-weight: 800;
    justify-content: center;
    min-height: 64px;
}

.article-code-labels span {
    color: rgba(232, 225, 214, 0.66);
    font-size: 9px;
    font-weight: 800;
    overflow-wrap: anywhere;
    text-align: center;
    text-transform: uppercase;
}

.article-number-grid,
.article-marker-grid,
.article-decision-grid,
.article-label-grid {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.article-number-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-number-grid > div,
.article-marker-grid > div,
.article-decision-grid > div,
.article-label-grid > div {
    background: linear-gradient(180deg, rgba(26, 29, 32, 0.94), rgba(15, 17, 19, 0.94));
    border: 1px solid rgba(111, 105, 94, 0.34);
    border-radius: 8px;
    min-width: 0;
}

.article-number-grid > div {
    display: grid;
    gap: 10px;
    min-height: 142px;
    padding: 20px;
}

.article-number-grid strong {
    color: var(--brand);
    font-size: 34px;
    line-height: 1;
}

.article-number-grid span,
.article-decision-grid span,
.article-label-grid span {
    color: rgba(232, 225, 214, 0.72);
    font-size: 14px;
    line-height: 1.55;
}

.article-marker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-marker-grid > div {
    padding: 20px;
}

.article-marker-grid span {
    color: #ffffff;
    display: block;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
}

.article-marker-grid p {
    font-size: 15px;
    margin: 0;
}

.article-decision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-decision-grid > div {
    border-left: 3px solid rgba(255, 177, 26, 0.7);
    display: grid;
    gap: 8px;
    min-height: 126px;
    padding: 20px;
}

.article-decision-grid strong,
.article-label-grid strong {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.35;
}

.article-table {
    border: 1px solid rgba(111, 105, 94, 0.34);
    border-radius: 8px;
    overflow: hidden;
}

.article-table > div {
    display: grid;
    gap: 14px;
    grid-template-columns: 76px minmax(0, 0.7fr) minmax(0, 1.3fr);
    padding: 14px 16px;
}

.article-table > div:first-child {
    background: rgba(255, 177, 26, 0.12);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.article-table > div + div {
    border-top: 1px solid rgba(111, 105, 94, 0.34);
    color: rgba(232, 225, 214, 0.76);
}

.article-label-section {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
}

.article-label-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
}

.article-label-grid > div {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.article-checklist {
    counter-reset: article-check;
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
}

.article-checklist li {
    align-items: start;
    background: rgba(8, 8, 6, 0.38);
    border: 1px solid rgba(111, 105, 94, 0.3);
    border-radius: 8px;
    counter-increment: article-check;
    display: grid;
    gap: 12px;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 14px 16px;
}

.article-checklist li::before {
    align-items: center;
    background: var(--brand);
    border-radius: 8px;
    color: #17120a;
    content: counter(article-check);
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.article-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.article-sources p {
    margin: 16px 0 0;
}

.article-sources ul {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding-left: 20px;
}

.article-related-section {
    padding-top: 38px;
}

.tyre-size-stage {
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 177, 26, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(13, 15, 17, 0.98), rgba(5, 7, 9, 1));
    min-height: calc(100vh - 86px);
    padding: 62px 0 74px;
}

.tyre-size-shell {
    max-width: 1280px;
}

.tyre-size-stage h1 {
    color: #ffffff;
    font-size: 64px;
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
}

.tyre-size-layout {
    align-items: center;
    display: grid;
    gap: 46px;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    margin-top: 42px;
}

.tyre-size-visual {
    background: #080b0f;
    border: 1px solid rgba(255, 177, 26, 0.22);
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.46);
    margin: 0;
    overflow: hidden;
}

.tyre-size-visual img {
    aspect-ratio: 1.774;
    display: block;
    object-fit: cover;
    width: 100%;
}

.tyre-size-visual figcaption {
    background: rgba(8, 8, 6, 0.84);
    border-top: 1px solid rgba(255, 177, 26, 0.2);
    color: rgba(232, 225, 214, 0.72);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    padding: 13px 16px;
}

.tyre-size-copy {
    min-width: 0;
}

.tyre-size-intro h2 {
    color: #ffffff;
    font-size: 34px;
    letter-spacing: 0;
    line-height: 1.1;
    margin: 0;
}

.tyre-size-intro p {
    color: rgba(232, 225, 214, 0.76);
    font-size: 17px;
    line-height: 1.68;
    margin: 18px 0 0;
}

.tyre-size-list {
    display: grid;
    gap: 0;
    margin: 28px 0 0;
}

.tyre-size-list > div {
    border-top: 1px solid rgba(111, 105, 94, 0.34);
    display: grid;
    gap: 18px;
    grid-template-columns: 78px minmax(0, 1fr);
    padding: 18px 0;
}

.tyre-size-list > div:last-child {
    border-bottom: 1px solid rgba(111, 105, 94, 0.34);
}

.tyre-size-list dt {
    color: var(--brand);
    font-size: 34px;
    font-weight: 850;
    line-height: 1;
}

.tyre-size-list dd {
    color: rgba(243, 247, 251, 0.84);
    font-size: 16px;
    line-height: 1.58;
    margin: 0;
}

.alpine-stage {
    background: linear-gradient(180deg, #111820 0%, #080b0f 56%, #050709 100%);
    padding: 58px 0 74px;
}

.alpine-shell {
    max-width: 1160px;
}

.alpine-stage h1 {
    color: #ffffff;
    font-size: 50px;
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.06;
    margin: 0;
    max-width: 1020px;
}

.alpine-hero-image {
    background: #0a1017;
    border: 1px solid rgba(142, 173, 199, 0.28);
    border-radius: 8px;
    box-shadow: 0 28px 74px rgba(0, 0, 0, 0.48);
    margin: 34px 0 0;
    overflow: hidden;
}

.alpine-hero-image img {
    aspect-ratio: 1.951;
    display: block;
    object-fit: cover;
    width: 100%;
}

.alpine-hero-image figcaption {
    background: rgba(8, 12, 16, 0.88);
    border-top: 1px solid rgba(142, 173, 199, 0.24);
    color: rgba(232, 238, 243, 0.72);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    padding: 13px 16px;
}

.alpine-content {
    display: grid;
    gap: 34px;
    margin: 42px auto 0;
    max-width: 880px;
}

.alpine-lead {
    border-left: 3px solid var(--brand);
    padding-left: 22px;
}

.alpine-lead p,
.alpine-section p,
.alpine-rules p,
.alpine-check p {
    color: rgba(232, 238, 243, 0.78);
    font-size: 17px;
    line-height: 1.72;
    margin: 0;
}

.alpine-section,
.alpine-rules,
.alpine-check,
.alpine-sources {
    border-top: 1px solid rgba(142, 173, 199, 0.24);
    padding-top: 30px;
}

.alpine-section h2,
.alpine-rules h2,
.alpine-check h2,
.alpine-sources h2 {
    color: #ffffff;
    font-size: 31px;
    letter-spacing: 0;
    line-height: 1.14;
    margin: 0;
}

.alpine-section p + p,
.alpine-icon-section p + .alpine-icon-grid,
.alpine-rules-heading p,
.alpine-check p {
    margin-top: 16px;
}

.alpine-icon-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.alpine-icon-grid > div {
    background: linear-gradient(180deg, rgba(21, 29, 36, 0.9), rgba(13, 17, 21, 0.92));
    border: 1px solid rgba(142, 173, 199, 0.24);
    border-radius: 8px;
    padding: 22px;
}

.alpine-pictogram {
    display: block;
    height: 96px;
    margin-bottom: 18px;
    max-width: 140px;
    object-fit: contain;
    object-position: left center;
    width: auto;
}

.alpine-icon-grid strong {
    color: var(--brand);
    display: block;
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 10px;
}

.alpine-rule-grid {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.alpine-rule-grid > div {
    background: linear-gradient(180deg, rgba(21, 29, 36, 0.9), rgba(13, 17, 21, 0.92));
    border: 1px solid rgba(142, 173, 199, 0.24);
    border-radius: 8px;
    padding: 22px;
}

.alpine-rule-grid strong {
    color: var(--brand);
    display: block;
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 10px;
}

.alpine-sources ul {
    color: rgba(232, 238, 243, 0.78);
}

.tread-stage {
    background:
        radial-gradient(circle at 72% 18%, rgba(255, 177, 26, 0.12), transparent 28%),
        linear-gradient(180deg, #111111 0%, #080806 58%, #050505 100%);
    padding: 58px 0 74px;
}

.tread-shell {
    max-width: 1120px;
}

.tread-stage h1 {
    color: #ffffff;
    font-size: 52px;
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.06;
    margin: 0;
    max-width: 980px;
}

.tread-hero-image {
    background: #090909;
    border: 1px solid rgba(255, 177, 26, 0.28);
    border-radius: 8px;
    box-shadow: 0 28px 74px rgba(0, 0, 0, 0.5);
    margin: 34px auto 0;
    max-width: 660px;
    overflow: hidden;
}

.tread-hero-image img {
    display: block;
    height: auto;
    width: 100%;
}

.tread-hero-image figcaption {
    background: rgba(8, 8, 6, 0.9);
    border-top: 1px solid rgba(255, 177, 26, 0.24);
    color: rgba(242, 232, 211, 0.72);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    padding: 13px 16px;
}

.tread-content {
    display: grid;
    gap: 34px;
    margin: 42px auto 0;
    max-width: 880px;
}

.tread-lead {
    border-left: 3px solid var(--brand);
    padding-left: 22px;
}

.tread-lead p,
.tread-section p,
.tread-check p {
    color: rgba(242, 232, 211, 0.78);
    font-size: 17px;
    line-height: 1.72;
    margin: 0;
}

.tread-section,
.tread-check,
.tread-sources {
    border-top: 1px solid rgba(255, 177, 26, 0.24);
    padding-top: 30px;
}

.tread-section h2,
.tread-sources h2 {
    color: #ffffff;
    font-size: 31px;
    letter-spacing: 0;
    line-height: 1.14;
    margin: 0;
}

.tread-section p,
.tread-check p,
.tread-sources p {
    margin-top: 16px;
}

.tread-warning-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tread-warning-grid > div {
    background: linear-gradient(180deg, rgba(24, 22, 17, 0.92), rgba(12, 12, 10, 0.94));
    border: 1px solid rgba(255, 177, 26, 0.24);
    border-radius: 8px;
    min-height: 154px;
    padding: 22px;
}

.tread-warning-grid strong {
    color: var(--brand);
    display: block;
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 10px;
}

.tread-warning-grid p {
    color: rgba(242, 232, 211, 0.76);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.tread-sources ul {
    color: rgba(242, 232, 211, 0.78);
}

@media (max-width: 1320px) and (min-width: 1101px) {
    body:not(.article-body) .topbar {
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 12px 16px;
    }

    body:not(.article-body) .nav-toggle-button {
        display: inline-flex;
    }

    body:not(.article-body) .nav-panel {
        display: none;
        grid-column: 1 / -1;
        order: 3;
        width: 100%;
    }

    body:not(.article-body) .nav-toggle:checked ~ .nav-panel {
        display: block;
    }

    body:not(.article-body) .nav-toggle:checked + .nav-toggle-button span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body:not(.article-body) .nav-toggle:checked + .nav-toggle-button span:nth-child(2) {
        opacity: 0;
    }

    body:not(.article-body) .nav-toggle:checked + .nav-toggle-button span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    body:not(.article-body) .main-nav {
        align-items: stretch;
        background: rgba(21, 23, 25, 0.98);
        border: 1px solid var(--surface-border);
        border-radius: 8px;
        display: grid;
        gap: 4px;
        padding: 8px;
        width: 100%;
    }

    body:not(.article-body) .main-nav a,
    body:not(.article-body) .main-nav summary,
    body:not(.article-body) .main-nav button {
        justify-content: flex-start;
        padding: 12px 14px;
        text-align: left;
        width: 100%;
    }

    body:not(.article-body) .nav-submenu-list {
        box-shadow: none;
        min-width: 0;
        padding: 4px 0 0 12px;
        position: static;
    }

    body:not(.article-body) .nav-menu:not([open]) .nav-submenu-list {
        display: none;
    }

    body:not(.article-body) .nav-menu[open] .nav-submenu-list {
        opacity: 1;
        pointer-events: auto;
        transform: none;
        visibility: visible;
    }

    body:not(.article-body) .cart-link {
        display: inline-flex;
        grid-column: 1 / -1;
        order: 4;
        width: 100%;
    }

    body:not(.article-body) .language-switcher,
    body:not(.article-body) .theme-switcher {
        justify-self: end;
    }
}

@media (max-width: 1320px) and (min-width: 1101px) {
    .article-body .topbar {
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 12px 16px;
    }

    .article-body .nav-toggle-button {
        display: inline-flex;
    }

    .article-body .nav-panel {
        display: none;
        grid-column: 1 / -1;
        order: 3;
        width: 100%;
    }

    .article-body .nav-toggle:checked ~ .nav-panel {
        display: block;
    }

    .article-body .nav-toggle:checked + .nav-toggle-button span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .article-body .nav-toggle:checked + .nav-toggle-button span:nth-child(2) {
        opacity: 0;
    }

    .article-body .nav-toggle:checked + .nav-toggle-button span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .article-body .main-nav {
        align-items: stretch;
        background: rgba(21, 23, 25, 0.98);
        border: 1px solid var(--surface-border);
        border-radius: 8px;
        display: grid;
        gap: 4px;
        padding: 8px;
        width: 100%;
    }

    .article-body .main-nav a,
    .article-body .main-nav summary,
    .article-body .main-nav button {
        justify-content: flex-start;
        padding: 12px 14px;
        text-align: left;
        width: 100%;
    }

    .article-body .nav-submenu-list {
        box-shadow: none;
        min-width: 0;
        padding: 4px 0 0 12px;
        position: static;
    }

    .article-body .nav-menu:not([open]) .nav-submenu-list {
        display: none;
    }

    .article-body .nav-menu[open] .nav-submenu-list {
        opacity: 1;
        pointer-events: auto;
        transform: none;
        visibility: visible;
    }

    .article-body .cart-link {
        display: inline-flex;
        grid-column: 1 / -1;
        order: 4;
        width: 100%;
    }

    .article-body .language-switcher,
    .article-body .theme-switcher {
        justify-self: end;
    }
}

.site-footer {
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 177, 26, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(18, 18, 16, 0.98), #080806);
    border-top: 1px solid rgba(255, 177, 26, 0.28);
    margin-top: 56px;
    padding: 48px 0 24px;
}

.footer-shell {
    display: grid;
    gap: 28px;
}

.footer-main {
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(240px, 1.2fr) minmax(300px, 1.35fr) minmax(190px, 0.8fr);
}

.footer-brand-block {
    align-content: start;
    display: grid;
    gap: 14px;
    max-width: 340px;
}

.footer-brand {
    align-items: center;
    color: var(--ink);
    display: flex;
    gap: 12px;
    text-decoration: none;
}

.footer-brand strong,
.footer-brand small {
    display: block;
}

.footer-brand strong {
    font-size: 18px;
}

.footer-brand small {
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}

.footer-brand-block p {
    margin: 0;
}

.footer-country {
    background: var(--brand-soft);
    border: 1px solid rgba(255, 177, 26, 0.32);
    border-radius: 999px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
    justify-self: start;
    padding: 6px 10px;
    text-transform: uppercase;
}

.footer-column {
    align-content: start;
    display: grid;
    gap: 10px;
}

.footer-column > strong,
.footer-column nav > strong,
.footer-contact > strong {
    color: var(--ink);
    font-size: 13px;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.footer-column a,
.footer-contact a {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition: var(--transition);
}

.footer-shop-service {
    align-items: start;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-shop-service nav {
    align-content: start;
    display: grid;
    gap: 10px;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: var(--brand);
}

.footer-column .footer-withdrawal-link {
    color: var(--brand);
    font-weight: 700;
}

.footer-contact {
    align-items: start;
    border-top: 1px solid var(--surface-border);
    display: flex;
    flex-wrap: wrap;
    font-style: normal;
    gap: 8px 20px;
    padding-top: 20px;
}

.footer-contact > strong {
    flex-basis: 100%;
}

.footer-contact span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.footer-trust-strip {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
}

.footer-trust-strip span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    padding: 14px 18px 14px 40px;
    position: relative;
}

.footer-trust-strip span + span {
    border-left: 1px solid var(--surface-border);
}

.footer-trust-strip span::before {
    color: var(--brand);
    content: "✓";
    font-size: 15px;
    font-weight: 800;
    left: 18px;
    position: absolute;
    top: 14px;
}

.footer-trust-strip strong {
    color: var(--ink);
}

.footer-bottom {
    align-items: center;
    border-top: 1px solid var(--surface-border);
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 12px;
    margin: 0;
}

@media (max-width: 1100px) {
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand-block {
        grid-column: 1 / -1;
        max-width: 520px;
    }

    .topbar {
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 12px 16px;
    }

    .nav-toggle-button {
        display: inline-flex;
    }

    .nav-panel {
        display: none;
        grid-column: 1 / -1;
        order: 3;
        width: 100%;
    }

    .nav-toggle:checked ~ .nav-panel {
        display: block;
    }

    .nav-toggle:checked + .nav-toggle-button span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle:checked + .nav-toggle-button span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked + .nav-toggle-button span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
        align-items: stretch;
        background: rgba(21, 23, 25, 0.98);
        border: 1px solid var(--surface-border);
        border-radius: 8px;
        display: grid;
        gap: 4px;
        padding: 8px;
        width: 100%;
    }

    .main-nav a,
    .main-nav summary,
    .main-nav button {
        justify-content: flex-start;
        padding: 12px 14px;
        text-align: left;
        width: 100%;
    }

    .nav-submenu-list {
        box-shadow: none;
        min-width: 0;
        padding: 4px 0 0 12px;
        position: static;
    }

    .nav-menu:not([open]) .nav-submenu-list {
        display: none;
    }

    .nav-menu[open] .nav-submenu-list {
        opacity: 1;
        pointer-events: auto;
        transform: none;
        visibility: visible;
    }

    .cart-link {
        display: inline-flex;
        grid-column: 1 / -1;
        order: 5;
        width: 100%;
    }

    .language-switcher,
    .theme-switcher {
        justify-self: end;
    }

    .filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-user-filter-grid,
    .admin-user-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-hero {
        min-height: auto;
        padding: 48px 0;
    }

    .home-hero-grid,
    .article-hero-grid,
    .search-entry {
        grid-template-columns: 1fr;
    }

    .article-hero-section {
        padding: 46px 0 38px;
    }

    .article-hero-copy h1 {
        font-size: 46px;
        max-width: 820px;
    }

    .article-content-shell {
        gap: 0;
        grid-template-columns: 1fr;
        max-width: 960px;
        padding-top: 38px;
    }

    .article-index {
        display: none;
    }

    .article-chapter-split,
    .article-lead-panel,
    .article-label-section {
        grid-template-columns: 1fr;
    }

    .tyre-size-layout {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .tyre-size-stage h1 {
        font-size: 52px;
    }

    .alpine-stage h1 {
        font-size: 42px;
    }

    .tread-stage h1 {
        font-size: 44px;
    }

    .article-label-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-visual {
        min-height: 430px;
    }

    .hero-scan-panel {
        left: 24px;
        top: 24px;
        width: min(50%, 270px);
    }

    .hero-trust-panel {
        bottom: 24px;
        left: 24px;
        width: 250px;
    }

    .visual-stat-products {
        right: 24px;
        top: 106px;
    }

    .visual-stat-modules {
        right: 24px;
        top: 24px;
    }

    .search-entry-copy {
        border-bottom: 1px solid rgba(111, 105, 94, 0.32);
        border-right: 0;
    }

    .home-filter-grid,
    .recommendation-grid,
    .category-grid,
    .blog-preview-grid,
    .article-number-grid,
    .article-decision-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-order-filter-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-form-layout {
        grid-template-columns: 1fr;
    }

    .checkout-side-summary {
        grid-column: auto;
        grid-row: auto;
        position: static;
    }

    .checkout-form-footer {
        grid-column: auto;
    }

    .checkout-summary {
        position: static;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .site-footer {
        margin-top: 40px;
        padding: 36px 0 20px;
    }

    .footer-main {
        gap: 28px;
        grid-template-columns: 1fr;
    }

    .footer-brand-block {
        grid-column: auto;
    }

    .footer-column {
        border-top: 1px solid var(--surface-border);
        padding-top: 20px;
    }

    .footer-shop-service {
        gap: 28px;
        grid-template-columns: 1fr;
    }

    .footer-shop-service nav + nav {
        border-top: 1px solid var(--surface-border);
        padding-top: 20px;
    }

    .footer-trust-strip {
        grid-template-columns: 1fr;
    }

    .footer-trust-strip span + span {
        border-left: 0;
        border-top: 1px solid var(--surface-border);
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .topbar {
        padding: 12px 16px;
    }

    .checkout-field-grid {
        grid-template-columns: 1fr;
    }

    .brand-title {
        font-size: 18px;
    }

    .brand-subtitle {
        display: none;
    }

    .page {
        padding: 16px;
    }

    .demo-ribbon {
        font-size: 11px;
        min-height: 30px;
        padding: 5px 14px;
    }

    .demo-modal {
        align-items: end;
        padding: 16px;
    }

    .demo-modal-card {
        padding: 24px 20px 20px;
    }

    .demo-modal-card h2 {
        font-size: 30px;
    }

    .demo-modal-card p {
        font-size: 15px;
        margin: 14px 0 22px;
    }

    .has-demo-ribbon .topbar {
        top: 30px;
    }

    .home-shell {
        padding: 0 16px;
    }

    .home-hero {
        padding: 34px 0 38px;
    }

    .home-hero-grid {
        gap: 24px;
    }

    .home-hero h1 {
        font-size: 38px;
        line-height: 1.05;
    }

    .home-trust-row {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .home-trust-row span {
        min-height: 0;
        padding: 13px 14px;
    }

    .home-trust-row strong {
        font-size: 21px;
        margin-bottom: 5px;
    }

    .article-hero-copy h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .article-hero-copy p {
        font-size: 16px;
    }

    .article-hero-section {
        padding: 30px 0 24px;
    }

    .article-hero-grid {
        gap: 22px;
    }

    .article-back-link {
        margin-bottom: 18px;
    }

    .article-meta {
        gap: 6px;
        margin-top: 16px;
    }

    .article-meta span {
        font-size: 11px;
        padding: 6px 8px;
    }

    .article-visual img {
        max-height: 260px;
    }

    .article-visual figcaption {
        font-size: 12px;
        padding: 11px 12px;
    }

    .article-anchor-wrap {
        position: static;
    }

    .article-anchor-bar {
        padding-bottom: 8px;
        padding-top: 8px;
    }

    .article-anchor-bar a {
        font-size: 12px;
        padding: 8px 10px;
    }

    .article-content-shell {
        padding-top: 30px;
    }

    .article-flow {
        gap: 36px;
    }

    .article-lead-panel,
    .article-chapter-muted,
    .article-check-panel,
    .article-label-section {
        padding: 20px;
    }

    .article-lead-panel h2,
    .article-chapter h2 {
        font-size: 25px;
    }

    .article-lead-panel p,
    .article-chapter p,
    .article-chapter li {
        font-size: 15px;
    }

    .article-lead-points,
    .article-marker-grid,
    .article-label-grid {
        grid-template-columns: 1fr;
    }

    .article-chapter {
        padding-top: 30px;
        scroll-margin-top: 20px;
    }

    .article-chapter-split {
        gap: 20px;
    }

    .article-code-card {
        padding: 16px;
    }

    .article-code-line,
    .article-code-labels {
        gap: 5px;
    }

    .article-code-line span {
        font-size: 19px;
        min-height: 48px;
    }

    .article-code-labels span {
        font-size: 9px;
    }

    .tyre-size-stage {
        min-height: auto;
        padding: 30px 0 42px;
    }

    .tyre-size-stage h1 {
        font-size: 42px;
    }

    .tyre-size-layout {
        gap: 26px;
        margin-top: 28px;
    }

    .tyre-size-intro h2 {
        font-size: 26px;
    }

    .tyre-size-intro p,
    .tyre-size-list dd {
        font-size: 15px;
    }

    .tyre-size-list > div {
        gap: 12px;
        grid-template-columns: 58px minmax(0, 1fr);
        padding: 16px 0;
    }

    .tyre-size-list dt {
        font-size: 28px;
    }

    .alpine-stage {
        padding: 30px 0 42px;
    }

    .alpine-stage h1 {
        font-size: 32px;
        line-height: 1.12;
    }

    .alpine-hero-image {
        margin-top: 24px;
    }

    .alpine-hero-image figcaption {
        font-size: 12px;
        padding: 11px 12px;
    }

    .alpine-content {
        gap: 28px;
        margin-top: 30px;
    }

    .alpine-lead {
        padding-left: 16px;
    }

    .alpine-lead p,
    .alpine-section p,
    .alpine-rules p,
    .alpine-check p {
        font-size: 15px;
    }

    .alpine-section,
    .alpine-rules,
    .alpine-check,
    .alpine-sources {
        padding-top: 24px;
    }

    .alpine-section h2,
    .alpine-rules h2,
    .alpine-check h2,
    .alpine-sources h2 {
        font-size: 25px;
    }

    .alpine-icon-grid {
        grid-template-columns: 1fr;
    }

    .alpine-pictogram {
        height: 84px;
        margin-bottom: 14px;
    }

    .alpine-icon-grid > div,
    .alpine-rule-grid > div {
        padding: 18px;
    }

    .tread-stage {
        padding: 30px 0 42px;
    }

    .tread-stage h1 {
        font-size: 32px;
        line-height: 1.12;
    }

    .tread-hero-image {
        margin-top: 24px;
    }

    .tread-hero-image figcaption {
        font-size: 12px;
        padding: 11px 12px;
    }

    .tread-content {
        gap: 28px;
        margin-top: 30px;
    }

    .tread-lead {
        padding-left: 16px;
    }

    .tread-lead p,
    .tread-section p,
    .tread-check p {
        font-size: 15px;
    }

    .tread-section,
    .tread-check,
    .tread-sources {
        padding-top: 24px;
    }

    .tread-section h2,
    .tread-sources h2 {
        font-size: 25px;
    }

    .tread-warning-grid {
        grid-template-columns: 1fr;
    }

    .tread-warning-grid > div {
        min-height: 0;
        padding: 18px;
    }

    .home-hero p,
    .section-heading p,
    .search-entry p,
    .blog-preview-card p,
    .site-footer p {
        font-size: 15px;
    }

    .home-actions,
    .home-entry-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-visual {
        min-height: 360px;
    }

    .hero-scan-panel {
        left: 18px;
        padding: 14px;
        right: 18px;
        top: 18px;
        width: auto;
    }

    .hero-scan-panel strong,
    .hero-trust-panel strong {
        font-size: 16px;
    }

    .hero-trust-panel {
        display: none;
    }

    .glass-plate {
        height: 106px;
        left: 8%;
        top: 44%;
        width: 72%;
    }

    .tire-plate {
        bottom: 22px;
        height: 118px;
        right: 24px;
        width: 118px;
    }

    .tire-plate span {
        height: 50px;
        width: 50px;
    }

    .visual-stat {
        padding: 11px 12px;
    }

    .visual-stat strong {
        font-size: 21px;
    }

    .visual-stat-products {
        display: none;
    }

    .visual-stat-modules {
        right: 18px;
        top: 118px;
    }

    .home-section {
        padding: 30px 0;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .compact-heading {
        align-items: stretch;
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr;
    }

    .section-title-stack .eyebrow {
        margin-bottom: 10px;
    }

    .search-entry {
        min-height: 0;
    }

    .search-entry-copy,
    .home-search-form,
    .blog-preview-card {
        padding: 20px;
    }

    .search-entry h3 {
        font-size: 24px;
    }

    .home-filter-grid,
    .recommendation-grid,
    .category-grid,
    .blog-preview-grid,
    .article-decision-grid {
        grid-template-columns: 1fr;
    }

    .article-number-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-number-grid > div,
    .article-decision-grid > div {
        min-height: 0;
        padding: 16px;
    }

    .article-number-grid strong {
        font-size: 27px;
    }

    .article-table > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .article-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .shop-intro {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .stat {
        text-align: left;
    }

    .filter-grid,
    .admin-order-filter-tabs,
    .add-form,
    .cart-row,
    .review-line {
        grid-template-columns: 1fr;
    }

    .review-table-head {
        display: none;
    }

    .review-line > span,
    .review-line > strong:last-child,
    .review-breakdown strong,
    .summary-breakdown strong,
    .summary-legal strong {
        max-width: none;
        text-align: left;
    }

    .review-line small {
        display: block;
    }

    .review-heading,
    .summary-head,
    .admin-audit-hero-head,
    .review-breakdown > div,
    .summary-breakdown > div,
    .summary-legal > div,
    .admin-order-head,
    .admin-user-head,
    .admin-audit-head,
    .admin-event-row div,
    .admin-summary-list .summary-row {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
    }

    .summary-count {
        align-self: flex-start;
    }

    .order-review .checkout-summary-title {
        font-size: 24px;
    }

    .checkout-summary-line,
    .checkout-summary-total {
        gap: 12px;
    }

    .checkout-summary-copy strong,
    .checkout-summary-amount {
        font-size: 17px;
    }

    .checkout-summary-total strong {
        font-size: 20px;
    }

    .admin-order-grid,
    .admin-tool-grid,
    .admin-status-form-grid,
    .admin-user-order-summary,
    .admin-user-filter-grid,
    .admin-user-grid,
    .admin-audit-filter-grid,
    .admin-audit-grid,
    .admin-audit-detail-layout,
    .admin-audit-focus-grid,
    .admin-product-row {
        grid-template-columns: 1fr;
    }

    .admin-audit-hero-actions {
        align-items: stretch;
        justify-items: stretch;
        width: 100%;
    }

    .admin-audit-clean-list > div {
        align-items: start;
        gap: 6px;
        grid-template-columns: 1fr;
    }

    .admin-event-row span {
        text-align: left;
    }

    .admin-order-total,
    .admin-user-status-panel,
    .admin-user-status,
    .admin-audit-status,
    .admin-summary-list strong,
    .admin-product-row > strong {
        justify-items: start;
        max-width: none;
        text-align: left;
        width: 100%;
    }

    .admin-user-status-panel {
        min-width: 0;
    }

    .admin-user-status {
        justify-content: flex-start;
    }

    .summary-item {
        flex-direction: column;
        gap: 6px;
    }

    .summary-item > strong {
        text-align: left;
    }

    .filter-actions,
    .actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button,
    button {
        width: 100%;
    }

    .line-total {
        text-align: left;
    }
}
