:root {
    --site-bg: #f9f9ff;
    --site-surface: #ffffff;
    --site-surface-2: #f1f3ff;
    --site-surface-dim: #d4daea;
    --site-primary: #0057ff;
    --site-text: #1f2937;
    --site-text-soft: #5b6475;
    --site-border: #dbe2f1;
    --site-radius: 4px;

    color-scheme: light;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--site-text);
    background: var(--site-bg);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(0, 87, 255, 0.09), transparent 32%),
        radial-gradient(circle at bottom right, rgba(0, 87, 255, 0.06), transparent 34%),
        var(--site-bg);
    color: var(--site-text);
    overflow-x: hidden;
    padding-top: 132px;
}

body.site-nav-open {
    overflow: hidden;
}

a {
    color: var(--site-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.site-container,
.site-shell {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.site-shell {
    min-height: 1000px;
    padding: 0 0 32px;
}

.site-page {
    display: grid;
    gap: 18px;
    align-content: start;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid var(--site-border);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.site-header__inner {
    min-height: 100px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "brand icons"
        "nav nav";
    align-items: center;
    gap: 4px 18px;
    padding: 10px 0 8px;
}

.site-brand {
    grid-area: brand;
    justify-self: start;
    display: inline-flex;
    align-items: flex-end;
    gap: 12px;
    min-width: 0;
    color: var(--site-text);
    text-decoration: none;
    flex: 0 0 auto;
}

.site-brand__logo {
    width: 52px;
    height: 52px;
    border-radius: var(--site-radius);
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--site-primary);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.site-brand__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-brand__fallback {
    line-height: 1;
}

.site-brand__text {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.site-brand__name {
    min-width: 0;
    color: var(--site-text);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-nav {
    grid-area: nav;
    justify-self: center;
    width: auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    flex-wrap: wrap;
}

.site-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 12px;
    border-radius: var(--site-radius);
    color: var(--site-text-soft);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    transition: color 160ms ease, background-color 160ms ease;
}

.site-nav-link:hover {
    color: var(--site-primary);
    background: rgba(0, 87, 255, 0.06);
}

.site-nav-link.is-active {
    color: var(--site-primary);
    font-weight: 800;
}

.site-nav-link.is-active::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 8px;
    height: 2px;
    border-radius: 2px;
    background: var(--site-primary);
}

.site-nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: rgba(255, 255, 255, 0.95);
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    cursor: pointer;
    transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.site-nav-toggle:hover,
.site-nav-toggle:focus {
    transform: translateY(-2px);
    border-color: rgba(0, 87, 255, 0.28);
    box-shadow: 0 12px 24px rgba(0, 87, 255, 0.12);
}

.site-nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--site-primary);
}

.site-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(31, 41, 55, 0.38);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.site-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(219, 226, 241, 0.92);
    border-radius: var(--site-radius);
    box-shadow: 0 16px 40px rgba(0, 28, 78, 0.08);
}

.site-hero {
    padding: clamp(22px, 5vw, 56px);
}

.site-section {
    padding: clamp(18px, 4vw, 32px);
}

.site-grid {
    display: grid;
    gap: 18px;
}

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

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

.site-kicker {
    margin: 0 0 10px;
    color: var(--site-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-text-soft {
    color: var(--site-text-soft);
}

.site-hero h1,
.site-section h2,
.site-card h1,
.site-card h2 {
    margin: 0;
    color: var(--site-text);
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.site-hero h1 {
    font-size: clamp(32px, 4vw, 54px);
}

.site-section h2,
.site-card h2 {
    font-size: clamp(20px, 2.2vw, 30px);
}

.site-hero p,
.site-section p,
.site-card p {
    margin: 14px 0 0;
    line-height: 1.65;
    font-size: 16px;
}

.site-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 18px;
    border: 0;
    border-radius: var(--site-radius);
    background: var(--site-primary);
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(0, 87, 255, 0.22);
    transition: transform 170ms ease, box-shadow 170ms ease, filter 170ms ease, border-color 170ms ease;
}

.site-button:hover,
.site-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 87, 255, 0.28);
    filter: brightness(1.02);
}

.site-button-secondary {
    background: var(--site-surface-2);
    color: var(--site-primary);
    border: 1px solid rgba(0, 87, 255, 0.14);
    box-shadow: none;
}

.site-button-secondary:hover,
.site-button-secondary:focus {
    border-color: rgba(0, 87, 255, 0.28);
    box-shadow: 0 12px 26px rgba(0, 87, 255, 0.10);
}

.site-button-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.site-pill-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.site-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: var(--site-radius);
    background: rgba(0, 87, 255, 0.08);
    color: var(--site-primary);
    font-size: 13px;
    font-weight: 800;
}

.site-card-list,
.site-checklist {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.site-list-card {
    padding: 14px 15px;
    border-radius: var(--site-radius);
    border: 1px solid rgba(219, 226, 241, 0.98);
    background: rgba(249, 249, 255, 0.72);
    font-size: 14px;
    line-height: 1.45;
}

.home-hero {
    margin-top: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(18px, 3vw, 32px);
    align-items: stretch;
}

.home-hero-copy {
    display: grid;
    align-content: center;
    gap: 16px;
    min-width: 0;
}

.home-hero-title {
    margin: 0;
    color: var(--site-text);
    font-size: clamp(40px, 5vw, 74px);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.95;
    max-width: 12ch;
}

.home-hero-description {
    margin: 0;
    max-width: 50ch;
    color: var(--site-text-soft);
    font-size: 18px;
    line-height: 1.6;
}

.home-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.home-hero-media {
    min-width: 0;
}

.home-hero-slideshow {
    position: relative;
    min-height: 460px;
    height: 100%;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.home-hero-slides {
    position: relative;
    height: 100%;
    min-height: inherit;
}

.home-hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    gap: 0;
    padding: 0;
    opacity: 0;
    transform: scale(1.015) translateY(8px);
    filter: saturate(0.92) blur(1px);
    transition: opacity 1400ms ease, transform 1600ms cubic-bezier(0.22, 1, 0.36, 1), filter 1400ms ease;
    pointer-events: none;
}

.home-hero-slide.is-active {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: saturate(1) blur(0);
    pointer-events: auto;
}

.home-hero-slide-media {
    min-height: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: 0 18px 42px rgba(0, 28, 78, 0.10);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero-slide-link {
    width: 100%;
    height: 100%;
    display: block;
    color: inherit;
    text-decoration: none;
}

.home-hero-slide-media img,
.home-hero-slide-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 5200ms ease;
}

.home-hero-slide.is-active .home-hero-slide-media img,
.home-hero-slide.is-active .home-hero-slide-media video {
    transform: scale(1.09) translate3d(-1.5%, -1.5%, 0);
}

.home-hero-slide-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 20px;
    color: var(--site-text-soft);
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(0, 87, 255, 0.08), rgba(241, 243, 255, 0.98));
}

.home-hero-slide-caption {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
}

.home-hero-slide-meta {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.home-hero-slide-category {
    color: var(--site-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-hero-slide-title {
    min-width: 0;
    color: var(--site-text);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-hero-slide-index {
    flex: 0 0 auto;
    color: var(--site-text-soft);
    font-size: 12px;
    font-weight: 700;
}

.home-hero-empty {
    display: grid;
    place-items: center;
    height: 100%;
    min-height: 240px;
    padding: 24px;
    text-align: center;
    color: var(--site-text-soft);
}

.home-highlight-card {
    min-height: 100%;
}

.home-arrivals,
.home-favorites {
    display: grid;
    gap: 18px;
    padding: 8px 0 28px;
}

.home-favorites-rows {
    display: grid;
    gap: 26px;
}

.home-favorite-row {
    display: grid;
    gap: 12px;
}

.home-favorite-row h3 {
    margin: 0;
    color: var(--site-text-soft);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

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

.home-favorite-card {
    min-width: 0;
    display: grid;
    gap: 10px;
}

.home-favorite-media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--site-radius);
    background: var(--site-surface-2);
    text-decoration: none;
}

.home-favorite-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.home-favorite-card:hover .home-favorite-media img {
    transform: scale(1.025);
}

.home-favorite-title {
    min-width: 0;
    color: var(--site-text);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    white-space: nowrap;
}

.home-favorite-title:hover,
.home-favorite-title:focus {
    color: var(--site-primary);
}


.home-quick-actions {
    margin: 4px 0 34px;
    padding: clamp(18px, 3vw, 28px);
    background:
        linear-gradient(135deg, rgba(0, 87, 255, 0.08), rgba(241, 243, 255, 0.92)),
        rgba(255, 255, 255, 0.96);
    border-color: rgba(0, 87, 255, 0.14);
    box-shadow: 0 18px 44px rgba(0, 28, 78, 0.09);
}


.home-quick-actions .home-quick-actions-title {
    margin: 0 0 32px;
    color: var(--site-text);
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-align: center;
}

.home-quick-actions-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 840px;
    margin: 0 auto;
}

.home-quick-actions .site-button {
    min-height: 52px;
    text-align: center;
}

.home-arrivals-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.home-arrivals-head h2 {
    position: relative;
    margin: 0;
    color: var(--site-text);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.15;
}

.home-arrivals-head h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 72px;
    height: 3px;
    background: var(--site-primary);
}

.home-arrivals-controls {
    display: inline-flex;
    gap: 8px;
    flex: 0 0 auto;
}

.home-arrivals-button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: var(--site-surface);
    color: var(--site-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: transform 170ms ease, border-color 170ms ease, color 170ms ease, box-shadow 170ms ease;
}

.home-arrivals-button:hover,
.home-arrivals-button:focus {
    transform: translateY(-2px);
    border-color: rgba(0, 87, 255, 0.32);
    color: var(--site-primary);
    box-shadow: 0 10px 24px rgba(0, 87, 255, 0.10);
}

.home-arrivals-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 27%);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 0 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.home-arrivals-carousel::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.home-arrival-card {
    min-width: 0;
    scroll-snap-align: start;
}

.home-arrival-media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--site-radius);
    background: var(--site-surface-2);
    text-decoration: none;
}

.home-arrival-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.home-arrival-card:hover .home-arrival-media img {
    transform: scale(1.025);
}

.home-arrival-info {
    min-width: 0;
    display: grid;
    gap: 7px;
    padding-top: 12px;
}

.home-arrival-title-row,
.home-arrival-meta-row {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.home-arrival-info h3 {
    min-width: 0;
    margin: 0;
    color: var(--site-text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-arrival-material,
.home-arrival-price {
    min-width: 0;
    color: var(--site-text-soft);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-arrival-material {
    max-width: 96px;
    justify-self: end;
    text-align: right;
}

.home-arrival-price {
    justify-self: start;
    color: var(--site-primary);
    font-weight: 800;
    text-align: left;
}

.home-arrival-link {
    flex: 0 0 auto;
    justify-self: end;
    color: var(--site-primary);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.home-arrival-link:hover,
.home-arrival-link:focus {
    text-decoration: underline;
}

.legal-page {
    display: grid;
    gap: 18px;
}

.legal-page h1 {
    margin: 0;
    color: var(--site-text);
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.96;
}

.legal-page-content {
    color: var(--site-text-soft);
    font-size: 16px;
    line-height: 1.7;
}

.legal-page-content p,
.legal-page-content ul,
.legal-page-content ol {
    margin-top: 0;
}

.site-footer {
    margin-top: 22px;
    border-top: 1px solid var(--site-border);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.site-footer__inner {
    padding: 42px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr;
    gap: 42px;
    color: var(--site-text-soft);
    font-size: 15px;
    line-height: 1.55;
}

.site-footer-column {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 14px;
}

.site-footer-column h2 {
    margin: 0;
    color: var(--site-text);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.site-footer-links {
    display: grid;
    gap: 9px;
}

.site-footer-links a {
    color: var(--site-text-soft);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.site-footer-links a:hover,
.site-footer-links a:focus {
    color: var(--site-primary);
}

.site-footer-info-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
}

.site-footer-info-images figure {
    min-width: 0;
    margin: 0;
    display: grid;
    gap: 7px;
}

.site-footer-info-images a {
    display: block;
    text-decoration: none;
}

.site-footer-info-images img {
    width: 100%;
    height: 48px;
    object-fit: contain;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.site-footer-info p {
    margin: 0;
}

@media (max-width: 900px) {
    body {
        padding-top: 76px;
    }

    .site-header {
        z-index: 190;
    }

    .site-header__inner {
        min-height: 76px;
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas: "brand icons";
        align-items: center;
        gap: 18px;
        position: relative;
        z-index: 180;
        padding: 0 0 0 70px;
    }

    .site-nav-toggle {
        display: inline-flex;
        position: fixed;
        top: 14px;
        left: 14px;
        z-index: 210;
        flex: 0 0 auto;
    }

    .site-nav-backdrop {
        display: none;
        z-index: 180;
        background: rgba(15, 23, 42, 0.46);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }

    .site-nav {
        position: fixed;
        top: 12px;
        left: 12px;
        bottom: auto;
        width: min(320px, calc(100vw - 24px));
        max-height: calc(100dvh - 24px);
        z-index: 200;
        display: grid;
        align-content: start;
        gap: 10px;
        margin: 0;
        padding: 72px 18px 18px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(212, 218, 234, 0.96);
        border-radius: 20px;
        box-shadow: 0 22px 56px rgba(0, 28, 78, 0.16);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
        transform: translateX(-112%);
        transition: transform 220ms ease;
        overflow: auto;
        overscroll-behavior: contain;
        scrollbar-width: none;
        -ms-overflow-style: none;
        will-change: transform;
    }

    .site-nav::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    body.site-nav-open .site-nav {
        transform: translateX(0);
    }

    body.site-nav-open .site-nav-backdrop {
        display: block;
        pointer-events: auto;
    }

    body.site-nav-open .site-header {
        background: transparent;
        border-bottom-color: transparent;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        pointer-events: none;
    }

    body.site-nav-open .site-nav-toggle,
    body.site-nav-open .site-nav,
    body.site-nav-open .site-brand,
    body.site-nav-open .site-header-icons {
        pointer-events: auto;
    }

    body.site-nav-open .site-brand {
        position: relative;
        z-index: 205;
    }

    .site-nav-link {
        justify-content: flex-start;
        width: 100%;
        min-height: 44px;
        padding: 0 14px;
        font-size: 15px;
        border-radius: 12px;
    }

    .site-nav-link.is-active::after {
        left: 14px;
        right: 14px;
        bottom: 6px;
    }

    .site-grid-two,
    .site-grid-three {
        grid-template-columns: 1fr;
    }

    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-title {
        max-width: none;
        font-size: 38px;
    }

    .home-hero-description {
        font-size: 16px;
    }

    .home-hero-slideshow {
        min-height: 360px;
    }

    .home-arrivals-carousel {
        grid-auto-columns: calc((100% - 18px) / 2);
    }
}

@media (max-width: 640px) {
    .site-container,
    .site-shell {
        width: min(1280px, calc(100% - 16px));
    }

    .site-header__inner {
        gap: 12px;
    }

    .site-brand {
        align-items: center;
    }

    .site-brand__logo {
        width: 44px;
        height: 44px;
    }

    .site-brand__name {
        font-size: 16px;
    }

    .site-brand__label {
        font-size: 10px;
    }

    .site-hero,
    .site-section {
        padding: 18px;
    }

    .site-hero h1 {
        font-size: 28px;
    }

    .site-hero p,
    .site-section p,
    .site-card p {
        font-size: 15px;
    }

    .site-button {
        width: 100%;
    }

    .home-hero {
        padding: 18px;
    }

    .home-hero-title {
        font-size: 32px;
    }

    .home-hero-slideshow {
        min-height: 320px;
    }


    .home-quick-actions {
        margin-bottom: 24px;
        padding: 14px;
    }

    .home-quick-actions-inner {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-quick-actions .site-button {
        min-height: 46px;
    }

    .home-arrivals,
    .home-favorites {
        gap: 14px;
    }

    .home-favorite-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .home-favorite-row h3,
    .home-favorite-title {
        font-size: 13px;
    }

    .home-arrivals-head h2 {
        font-size: 19px;
    }

    .home-arrivals-carousel {
        grid-auto-columns: 78%;
        gap: 12px;
    }

    .home-arrival-info {
        gap: 8px;
    }

    .home-arrival-info h3 {
        font-size: 14px;
    }

    .home-arrival-link {
        font-size: 11px;
    }

    .home-hero-slide-title {
        font-size: 17px;
    }

    .site-footer__inner {
        padding: 16px 0 24px;
        font-size: 12px;
    }
}


.site-products-page {
    display: grid;
    align-content: start;
    gap: 30px;
}

.site-products-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.site-products-head h1 {
    margin: 0;
    color: var(--site-text);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.95;
}

.site-products-head p {
    max-width: 560px;
    margin: 14px 0 0;
    color: var(--site-text-soft);
    font-size: 17px;
    line-height: 1.55;
}

.site-products-count {
    flex: 0 0 auto;
    padding: 10px 14px;
    border-radius: var(--site-radius);
    background: var(--site-surface-2);
    color: var(--site-primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}


.site-products-filter-toggle {
    display: none;
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(0, 87, 255, 0.18);
    border-radius: var(--site-radius);
    background:
        linear-gradient(135deg, rgba(0, 87, 255, 0.08), rgba(241, 243, 255, 0.92)),
        rgba(255, 255, 255, 0.96);
    color: var(--site-primary);
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    box-shadow: 0 12px 28px rgba(0, 28, 78, 0.08);
    transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.site-products-filter-toggle:hover,
.site-products-filter-toggle:focus {
    transform: translateY(-2px);
    border-color: rgba(0, 87, 255, 0.30);
    box-shadow: 0 16px 34px rgba(0, 87, 255, 0.12);
}

.site-products-filter-toggle span[aria-hidden="true"] {
    transition: transform 170ms ease;
}

.site-products-filter-toggle.is-open span[aria-hidden="true"] {
    transform: rotate(180deg);
}


.site-products-filter-summary {
    display: none;
    gap: 7px;
    color: var(--site-text-soft);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.site-products-filter-summary span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-products-filters {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(150px, 0.68fr) minmax(150px, 0.68fr) minmax(150px, 0.68fr) auto;
    align-items: end;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(0, 87, 255, 0.14);
    border-radius: var(--site-radius);
    background:
        linear-gradient(135deg, rgba(0, 87, 255, 0.08), rgba(241, 243, 255, 0.92)),
        rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(0, 28, 78, 0.09);
}

.site-products-filters label {
    min-width: 0;
    display: grid;
    gap: 7px;
    color: var(--site-text);
    font-size: 13px;
    font-weight: 800;
}

.site-products-search {
    max-width: 33vw;
}

.site-products-filters input,
.site-products-filters select {
    width: 100%;
    min-width: 0;
    height: 46px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: #fff;
    color: var(--site-text);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    padding: 0 12px;
}

.site-products-filters input:focus,
.site-products-filters select:focus {
    border-color: var(--site-primary);
    box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.12);
}

.site-products-filter-button {
    height: 46px;
    border: 1px solid rgba(0, 87, 255, 0.22);
    border-radius: var(--site-radius);
    background: var(--site-surface-2);
    color: var(--site-primary);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.03em;
    padding: 0 20px;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 170ms ease, background 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.site-products-filter-button:hover,
.site-products-filter-button:focus {
    transform: translateY(-2px);
    background: rgba(0, 87, 255, 0.08);
    border-color: rgba(0, 87, 255, 0.30);
    box-shadow: 0 12px 24px rgba(0, 87, 255, 0.10);
    text-decoration: none;
}

.site-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px 28px;
}

.site-products-card {
    min-width: 0;
}

.site-products-empty {
    padding: 34px;
}

.site-products-empty p {
    margin: 0;
    color: var(--site-text-soft);
    font-weight: 700;
}

.site-products-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
}

.site-products-page-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.site-products-page-link {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: #fff;
    color: var(--site-text);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.site-products-page-link.is-active {
    border-color: var(--site-primary);
    background: var(--site-primary);
    color: #fff;
}

.site-products-page-link.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

@media (max-width: 980px) {
    .site-products-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-products-search {
        max-width: none;
    }

    .site-products-filter-button {
        grid-column: 1 / -1;
    }

    .site-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
    }
}

@media (max-width: 640px) {
    .site-products-page {
        gap: 22px;
    }


    .site-products-filter-toggle {
        display: inline-flex;
    }


    .site-products-filter-summary {
        display: grid;
    }

    .site-products-filters {
        display: none;
    }

    .site-products-filters.is-open {
        display: grid;
    }

    .site-products-head {
        align-items: start;
        flex-direction: column;
        gap: 12px;
    }

    .site-products-head h1 {
        font-size: 38px;
    }

    .site-products-head p {
        margin-top: 10px;
        font-size: 15px;
    }

    .site-products-filters {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .site-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 14px;
    }

    .site-products-card .home-arrival-info {
        gap: 6px;
        padding-top: 9px;
    }

    .site-products-card .home-arrival-title-row,
    .site-products-card .home-arrival-meta-row {
        gap: 6px;
    }

    .site-products-card .home-arrival-info h3 {
        font-size: 13px;
    }

    .site-products-card .home-arrival-price,
    .site-products-card .home-arrival-link,
    .site-products-card .home-arrival-material {
        font-size: 10px;
    }

    .site-products-card .home-arrival-material {
        max-width: 70px;
    }
}


@media (prefers-reduced-motion: reduce) {
    .home-hero-slide,
    .home-hero-slide-media img,
    .home-hero-slide-media video {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }
}


.contact-page {
    display: grid;
    gap: 22px;
    padding: 26px 0 48px;
}

.contact-page-head {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.contact-page-head h1 {
    margin: 0;
    color: var(--site-text);
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.contact-page-head p {
    margin: 12px 0 0;
    color: var(--site-text-soft);
    font-size: 15px;
    line-height: 1.6;
}

.contact-alert {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 14px 16px;
    border-radius: var(--site-radius);
    font-weight: 800;
    line-height: 1.45;
    text-align: center;
}

.contact-alert-error {
    border: 1px solid rgba(220, 38, 38, 0.22);
    background: rgba(254, 242, 242, 0.92);
    color: #b91c1c;
}

.contact-alert-success {
    border: 1px solid rgba(22, 163, 74, 0.22);
    background: rgba(240, 253, 244, 0.92);
    color: #15803d;
}

.contact-form {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: clamp(22px, 4vw, 44px);
    display: grid;
    gap: 22px;
    background:
        linear-gradient(135deg, rgba(0, 87, 255, 0.055), rgba(241, 243, 255, 0.94)),
        rgba(255, 255, 255, 0.96);
    border-color: rgba(0, 87, 255, 0.12);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 22px;
    align-items: start;
}

.contact-field {
    display: grid;
    grid-template-rows: auto auto minmax(15px, auto);
    gap: 8px;
}

.contact-field span,
.contact-captcha-input span {
    color: var(--site-text);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-field input,
.contact-field textarea,
.contact-captcha-input input {
    width: 100%;
    border: 1px solid rgba(212, 218, 234, 0.98);
    border-radius: var(--site-radius);
    background: rgba(255, 255, 255, 0.94);
    color: var(--site-text);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: border-color 170ms ease, box-shadow 170ms ease;
}

.contact-field input,
.contact-captcha-input input {
    height: 46px;
    padding: 0 12px;
}

.contact-field textarea {
    min-height: 150px;
    resize: none;
    padding: 12px;
    line-height: 1.55;
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-captcha-input input:focus {
    border-color: var(--site-primary);
    box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.12);
}

.contact-field.is-invalid input,
.contact-field.is-invalid textarea,
.contact-captcha-input.is-invalid input {
    border-color: rgba(220, 38, 38, 0.55);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.contact-field-error {
    min-height: 15px;
    color: #b91c1c;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
}

.contact-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.contact-submit-button {
    min-width: 220px;
}

.contact-submit-icon {
    margin-left: 10px;
}

.contact-captcha {
    display: grid;
    grid-template-columns: auto minmax(150px, 170px);
    align-items: end;
    gap: 8px 12px;
}

.contact-captcha-code {
    height: 46px;
    padding: 0 14px;
    border: 1px dashed rgba(0, 87, 255, 0.36);
    border-radius: var(--site-radius);
    background: rgba(255, 255, 255, 0.68);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    user-select: none;
}

.contact-captcha-code span {
    min-width: 20px;
    color: var(--site-primary);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    transform: rotate(-4deg);
}

.contact-captcha-code span:nth-child(even) {
    color: var(--site-text);
    transform: rotate(5deg) translateY(1px);
}

.contact-captcha-input {
    display: grid;
    gap: 8px;
    min-width: 170px;
}

.contact-captcha-error {
    grid-column: 1 / -1;
}

.contact-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 700px) {
    .contact-page {
        padding-top: 18px;
    }

    .contact-form-grid,
    .contact-submit-row {
        grid-template-columns: 1fr;
    }

    .contact-captcha {
        grid-template-columns: 1fr;
    }

    .contact-submit-row {
        display: grid;
    }

    .contact-submit-button {
        width: 100%;
        min-width: 0;
    }

    .contact-captcha {
        width: 100%;
    }

    .contact-captcha-code {
        justify-content: center;
    }
}



.contact-captcha-input span {
    margin-top: -23px;
}


.public-page-hero {
    align-self: start;
    min-height: 0 !important;
    height: auto !important;
    padding: clamp(28px, 5vw, 56px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(0, 87, 255, 0.055), rgba(241, 243, 255, 0.9)),
        rgba(255, 255, 255, 0.96);
    border-color: rgba(0, 87, 255, 0.12);
}

.public-page-hero h1,
.public-page-hero h2 {
    max-width: 980px;
    margin: 0 auto !important;
}

.public-page-hero h1 {
    color: var(--site-text);
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4.8vw, 64px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1;
}

.public-page-hero h2 {
    color: var(--site-text-soft);
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 600;
    letter-spacing: -0.018em;
    line-height: 1.42;
}


.series-products-cta {
    margin-top: 14px;
}

.series-products-cta-row {
    display: flex;
    justify-content: center;
}

.series-products-benefits {
    margin-top: 2px;
    display: grid;
    gap: 22px;
}

.series-products-benefits h2 {
    margin: 0;
    color: var(--site-text);
    font-family: 'Inter', sans-serif;
    font-size: clamp(22px, 2.8vw, 38px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.12;
    text-align: center;
}

.series-products-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.series-products-benefit-card {
    min-height: 100%;
    padding: 22px 20px 20px;
    border: 1px solid rgba(0, 87, 255, 0.12);
    border-radius: var(--site-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 243, 255, 0.92));
    box-shadow: 0 14px 26px rgba(0, 28, 78, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
}

.series-products-benefit-number {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(0, 87, 255, 0.1);
    color: var(--site-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.series-products-benefit-card p {
    margin: 0;
    color: var(--site-text);
    font-size: 17px;
    line-height: 1.55;
    text-align: left;
}

.series-products-showcase {
    display: grid;
    gap: 18px;
}

.series-products-showcase h2 {
    text-align: center;
}

.series-products-showcase-description {
    margin: 0 auto;
    max-width: 1040px;
    color: var(--site-text-soft);
    font-size: 17px;
    line-height: 1.7;
    text-align: center;
}

.series-products-showcase-copy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}

.series-products-showcase-copy-card {
    min-height: 100%;
    padding: 18px 18px 16px;
    border: 1px solid rgba(0, 87, 255, 0.12);
    border-radius: var(--site-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 243, 255, 0.92));
    box-shadow: 0 14px 26px rgba(0, 28, 78, 0.06);
    display: flex;
    align-items: center;
}

.series-products-showcase-copy-card p {
    margin: 0;
    color: var(--site-text);
    font-size: 16px;
    line-height: 1.55;
}

.series-products-showcase-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
}

.series-products-showcase-media-card {
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(0, 87, 255, 0.12);
    border-radius: var(--site-radius);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 243, 255, 0.9));
    box-shadow: 0 14px 26px rgba(0, 28, 78, 0.06);
}

.series-products-showcase-media-card img,
.series-products-showcase-media-placeholder {
    width: 100%;
    height: 100%;
}

.series-products-showcase-media-card img {
    object-fit: cover;
}

.series-products-showcase-media-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 87, 255, 0.06);
    color: var(--site-primary);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.series-products-auto-parts {
    display: grid;
    gap: 18px;
}

.series-products-auto-parts h2 {
    text-align: center;
}

.series-products-auto-parts-description {
    margin: 0 auto;
    max-width: 1080px;
    color: var(--site-text-soft);
    font-size: 17px;
    line-height: 1.7;
    text-align: center;
}

.series-products-auto-parts-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.series-products-auto-parts-card {
    min-height: 100%;
    padding: 18px 18px 16px;
    border: 1px solid rgba(0, 87, 255, 0.12);
    border-radius: var(--site-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 243, 255, 0.92));
    box-shadow: 0 14px 26px rgba(0, 28, 78, 0.06);
    display: flex;
    align-items: center;
}

.series-products-auto-parts-card p {
    margin: 0;
    color: var(--site-text);
    font-size: 15px;
    line-height: 1.5;
}

.series-products-auto-parts-details {
    display: grid;
    gap: 14px;
    padding: 22px;
    border: 1px solid rgba(0, 87, 255, 0.12);
    border-radius: var(--site-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 243, 255, 0.9));
    box-shadow: 0 14px 26px rgba(0, 28, 78, 0.06);
}

.series-products-auto-parts-details p {
    margin: 0;
    color: var(--site-text-soft);
    font-size: 16px;
    line-height: 1.7;
}

.series-products-audience {
    display: grid;
    gap: 18px;
}

.series-products-audience h2 {
    text-align: center;
}

.series-products-audience-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.series-products-audience-card {
    min-height: 100%;
    padding: 18px 18px 16px;
    border: 1px solid rgba(0, 87, 255, 0.12);
    border-radius: var(--site-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 243, 255, 0.92));
    box-shadow: 0 14px 26px rgba(0, 28, 78, 0.06);
    display: flex;
    align-items: center;
}

.series-products-audience-card p {
    margin: 0;
    color: var(--site-text);
    font-size: 16px;
    line-height: 1.55;
}

@media (max-width: 1199px) {
    .series-products-auto-parts-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    }

    .series-products-audience-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

.series-products-product-types {
    display: grid;
    gap: 18px;
}

.series-products-product-types h2 {
    text-align: center;
}

.series-products-product-types-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.series-products-product-types-card {
    min-height: 100%;
    padding: 18px 18px 16px;
    border: 1px solid rgba(0, 87, 255, 0.12);
    border-radius: var(--site-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 243, 255, 0.92));
    box-shadow: 0 14px 26px rgba(0, 28, 78, 0.06);
    display: flex;
    align-items: center;
}

.series-products-product-types-card p {
    margin: 0;
    color: var(--site-text);
    font-size: 16px;
    line-height: 1.55;
}

.series-products-materials {
    display: grid;
    gap: 18px;
}

.series-products-materials h2,
.series-products-reasons h2 {
    text-align: center;
}

.series-products-materials-description {
    margin: 0 auto;
    max-width: 1100px;
    color: var(--site-text-soft);
    font-size: 17px;
    line-height: 1.7;
    text-align: center;
}

.series-products-materials-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.series-products-materials-card {
    min-height: 66px;
    padding: 10px 14px;
    border: 1px solid rgba(0, 87, 255, 0.12);
    border-radius: 2px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 243, 255, 0.92));
    box-shadow: 0 14px 26px rgba(0, 28, 78, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.series-products-materials-card p {
    margin: 0;
    color: var(--site-text);
    font-size: 16px;
    line-height: 1.55;
}

.series-products-reasons-card p {
    margin: 0;
    color: var(--site-text);
    font-size: 17px;
    line-height: 1.55;
    text-align: left;
}

.series-products-reasons {
    display: grid;
    gap: 18px;
}

.series-products-reasons-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.series-products-reasons-card {
    min-height: 100%;
    padding: 22px 20px 20px;
    border: 1px solid rgba(0, 87, 255, 0.12);
    border-radius: var(--site-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 243, 255, 0.92));
    box-shadow: 0 14px 26px rgba(0, 28, 78, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
}

@media (max-width: 1199px) {
    .series-products-auto-parts-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    }

    .series-products-audience-cards-grid,
    .series-products-product-types-cards-grid,
    .series-products-reasons-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .series-products-materials-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .series-products-auto-parts-details {
        padding: 18px;
    }

    .series-products-materials-cards-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.product-detail-page {
    padding-top: clamp(18px, 4vw, 34px);
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.38fr) minmax(320px, 0.92fr);
    gap: clamp(18px, 3vw, 34px);
    align-items: start;
}

.product-detail-gallery {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.product-detail-primary-media {
    width: 100%;
    aspect-ratio: 1.34 / 1;
    overflow: hidden;
    border: 1px solid rgba(219, 226, 241, 0.92);
    border-radius: var(--site-radius);
    background: var(--site-surface-2);
}

.product-detail-primary-media img,
.product-detail-primary-media video,
.product-detail-thumbnail img,
.product-detail-thumbnail video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-media-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--site-text-soft);
    font-weight: 800;
}

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

.product-detail-thumbnail {
    appearance: none;
    padding: 0;
    cursor: pointer;
    min-height: 96px;
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
    border-radius: var(--site-radius);
    border: 1px solid rgba(219, 226, 241, 0.92);
    background: var(--site-surface-2);
    transition: border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.product-detail-thumbnail:hover,
.product-detail-thumbnail:focus,
.product-detail-thumbnail.is-active {
    border-color: rgba(0, 87, 255, 0.45);
    box-shadow: 0 14px 28px rgba(0, 87, 255, 0.12);
    transform: translateY(-2px);
}

.product-detail-description {
    display: grid;
    gap: 14px;
    margin-top: clamp(24px, 4vw, 42px);
    padding: clamp(20px, 3vw, 30px);
    border: 1px solid rgba(219, 226, 241, 0.92);
    border-radius: var(--site-radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 40px rgba(0, 28, 78, 0.08);
}

.product-detail-description-copy {
    color: var(--site-text-soft);
    font-size: 17px;
    line-height: 1.75;
    text-align: justify;
}

.product-detail-description-copy p,
.product-detail-description-copy ul,
.product-detail-description-copy ol,
.product-detail-description-copy blockquote,
.product-detail-description-copy h2,
.product-detail-description-copy h3,
.product-detail-description-copy h4 {
    margin: 0 0 14px;
}

.product-detail-description-copy > :last-child {
    margin-bottom: 0;
}

.product-detail-description-copy ul,
.product-detail-description-copy ol {
    padding-left: 24px;
}

.product-detail-description-copy li {
    margin-bottom: 8px;
}

.product-detail-description-copy a {
    color: var(--site-primary);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.product-detail-description-copy a:hover,
.product-detail-description-copy a:focus {
    color: #0f766e;
}

.product-detail-description-copy h2,
.product-detail-description-copy h3,
.product-detail-description-copy h4 {
    color: var(--site-text);
    line-height: 1.18;
}

.product-detail-summary {
    display: grid;
    align-content: start;
    gap: 24px;
    min-width: 0;
}

.product-detail-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-detail-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-detail-badge-category {
    border: 1px solid rgba(0, 87, 255, 0.20);
    background: rgba(0, 87, 255, 0.10);
    color: var(--site-primary);
}

.product-detail-badge-material {
    border: 1px solid rgba(13, 148, 136, 0.24);
    background: rgba(13, 148, 136, 0.11);
    color: #0f766e;
}

.product-detail-meta {
    color: var(--site-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-detail-summary h1 {
    margin: 0;
    color: var(--site-text);
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.98;
}

.product-detail-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: clamp(70px, 12vw, 150px);
}

.product-detail-actions-grid-single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 320px;
}

.product-detail-price-card,
.product-detail-quote-card {
    display: grid;
    align-content: space-between;
    gap: 18px;
    min-height: 170px;
    padding: 18px;
    border: 1px solid rgba(219, 226, 241, 0.92);
    border-radius: var(--site-radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 40px rgba(0, 28, 78, 0.08);
}

.product-detail-price-card span,
.product-detail-quote-card span {
    color: var(--site-text-soft);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-detail-price-card strong,
.product-detail-quote-card strong {
    color: var(--site-text);
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
}

.product-detail-price-card .site-button,
.product-detail-quote-card .site-button {
    width: 100%;
    min-height: 46px;
    font-size: 13px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
    }

    .product-detail-actions-grid {
        margin-top: 4px;
    }
}

@media (max-width: 620px) {
    .product-detail-page {
        padding: 14px;
    }

    .product-detail-summary h1 {
        font-size: clamp(30px, 12vw, 44px);
    }

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

    .product-detail-actions-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-thumbnail {
        min-height: 92px;
    }
}

.page-in-progress {
    min-height: clamp(420px, 62vh, 720px);
    display: grid;
    place-items: center;
    padding: clamp(32px, 6vw, 72px);
}

.page-in-progress img {
    display: block;
    width: min(100%, 720px);
    height: auto;
}

.contact-source-note {
    display: block;
    margin: 0;
    color: #263247;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.site-header-icons {
    grid-area: icons;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.site-login-link,
.site-cart-link {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(0, 87, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--site-text);
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 28, 78, 0.08);
}

.site-login-link svg,
.site-cart-link svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: var(--site-primary);
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-cart-link span {
    font-size: 21px;
    line-height: 1;
}

.site-cart-link strong {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--site-primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    line-height: 22px;
    text-align: center;
}

.product-detail-cart-form {
    margin: 0;
}

.product-detail-cart-form .site-button {
    width: 100%;
    border: 0;
}

.cart-page,
.checkout-start-page {
    display: grid;
    gap: 22px;
}

.cart-page-head {
    text-align: center;
}

.cart-page-head h1 {
    margin: 0;
    color: var(--site-text);
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -0.05em;
}

.cart-page-head p {
    margin: 10px auto 0;
    max-width: 620px;
    color: var(--site-text-soft);
    font-size: 17px;
    line-height: 1.6;
}

.cart-empty,
.checkout-placeholder,
.cart-list {
    width: min(920px, 100%);
    margin: 0 auto;
}

.cart-empty p,
.checkout-placeholder p {
    margin: 0;
    color: var(--site-text);
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}

.cart-list {
    display: grid;
    gap: 0;
    padding: clamp(18px, 3vw, 28px);
}

.cart-list-header,
.cart-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 110px 150px;
    gap: 18px;
    align-items: center;
}

.cart-list-header {
    padding: 0 0 14px;
    color: var(--site-text-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-row {
    padding: 16px 0;
    border-top: 1px solid rgba(219, 226, 241, 0.92);
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    color: var(--site-text);
    font-weight: 800;
    text-decoration: none;
}

.cart-product img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    object-fit: cover;
    background: #eef3ff;
}

.cart-product span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-row > strong {
    color: var(--site-text);
    font-size: 17px;
}

.cart-quantity-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: max-content;
}

.cart-quantity-control form {
    margin: 0;
}

.cart-quantity-control button {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(0, 87, 255, 0.18);
    border-radius: 999px;
    background: #eef4ff;
    color: var(--site-primary);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cart-quantity-control button:hover,
.cart-quantity-control button:focus {
    border-color: rgba(0, 87, 255, 0.42);
    background: #ffffff;
    transform: translateY(-1px);
}

.cart-quantity-control strong {
    min-width: 24px;
    color: var(--site-text);
    font-size: 17px;
    font-weight: 900;
    text-align: center;
}

.cart-total-row {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    gap: 18px;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 87, 255, 0.16);
    color: var(--site-text);
}

.cart-total-row span {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-total-row strong {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
}

.cart-next-button {
    justify-self: end;
    margin-top: 18px;
}

.checkout-layout {
    display: grid;
    gap: 18px;
    width: min(920px, 100%);
    margin: 0 auto;
}

.checkout-summary,
.checkout-customer-form {
    padding: clamp(16px, 2.4vw, 24px);
}

.checkout-summary {
    display: grid;
    gap: 0;
}

.checkout-summary-header,
.checkout-summary-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 90px 130px;
    gap: 14px;
    align-items: center;
}

.checkout-summary-header {
    padding-bottom: 10px;
    color: var(--site-text-soft);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-summary-row {
    padding: 10px 0;
    border-top: 1px solid rgba(219, 226, 241, 0.92);
    color: var(--site-text);
    font-size: 15px;
}

.checkout-summary-row strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
}

.checkout-summary-row span {
    font-weight: 800;
}

.checkout-summary-total {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    gap: 14px;
    padding-top: 14px;
    border-top: 2px solid rgba(0, 87, 255, 0.16);
    color: var(--site-text);
}

.checkout-summary-total span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-summary-total strong {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 900;
}

.checkout-customer-form {
    display: grid;
    gap: 18px;
    background:
        radial-gradient(circle at top left, rgba(0, 87, 255, 0.08), transparent 34%),
        #ffffff;
}

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

.checkout-field {
    display: grid;
    gap: 8px;
}

.checkout-field label {
    color: var(--site-text);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.checkout-field input,
.checkout-field textarea {
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(0, 87, 255, 0.16);
    border-radius: 16px;
    background: rgba(248, 251, 255, 0.9);
    color: var(--site-text);
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    outline: none;
    padding: 0 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.checkout-field textarea {
    min-height: 46px;
    padding: 12px 16px;
    resize: none;
}

.checkout-field input::placeholder,
.checkout-field textarea::placeholder {
    color: rgba(30, 41, 59, 0.38);
    font-weight: 700;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
    border-color: rgba(0, 87, 255, 0.58);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.1);
}

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

.checkout-address-group {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(0, 87, 255, 0.12);
    border-radius: 20px;
    background: rgba(248, 251, 255, 0.58);
}

.checkout-address-group h2 {
    margin: 0;
    color: var(--site-text);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.checkout-address-grid {
    display: grid;
    gap: 14px;
}

.checkout-address-grid-primary {
    grid-template-columns: minmax(220px, 2fr) repeat(2, minmax(110px, 0.7fr));
}

.checkout-address-grid-secondary {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.checkout-notes-field textarea {
    min-height: 54px;
    resize: none;
}

.checkout-address-optional-label {
    margin: 4px 0 -2px;
    color: var(--site-text-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.checkout-customer-status {
    padding: 14px 16px;
    border: 1px solid rgba(0, 87, 255, 0.18);
    border-radius: 14px;
    background: rgba(234, 241, 255, 0.72);
    color: var(--site-text);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.55;
}

.checkout-customer-status[hidden] {
    display: none;
}

.checkout-customer-status a {
    color: var(--site-primary);
    font-weight: 900;
    text-underline-offset: 3px;
}

.checkout-submit-button {
    justify-self: stretch;
    border: 0;
}

.checkout-alert {
    width: min(920px, 100%);
    margin: 0 auto;
}

.checkout-result-page {
    display: grid;
    place-items: center;
    min-height: 54vh;
}

.checkout-result-card {
    display: grid;
    gap: 18px;
    width: min(760px, 100%);
    text-align: center;
    padding: clamp(24px, 5vw, 48px);
}

.checkout-result-kicker {
    justify-self: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eaf1ff;
    color: var(--site-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-result-card h1 {
    margin: 0;
    color: var(--site-text);
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    letter-spacing: -0.05em;
}

.checkout-result-card p {
    margin: 0;
    color: var(--site-text-soft);
    font-size: 17px;
    line-height: 1.65;
}

.checkout-order-reference {
    display: grid;
    gap: 6px;
    justify-self: center;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(248, 251, 255, 0.94);
    border: 1px solid rgba(0, 87, 255, 0.14);
}

.checkout-order-reference span {
    color: var(--site-text-soft);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-order-reference strong {
    color: var(--site-text);
    font-size: 14px;
    overflow-wrap: anywhere;
}

.account-activation-card {
    text-align: left;
}

.account-activation-card .checkout-result-kicker,
.account-activation-card .site-button {
    justify-self: start;
}

.activation-form {
    box-shadow: none;
    padding: 0;
    background: transparent;
    border: 0;
}


.site-alert[data-auto-dismiss-alert] {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-alert[data-auto-dismiss-alert].is-dismissing {
    opacity: 0;
    transform: translateY(-6px);
}

.customer-password-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    gap: 10px;
    align-items: stretch;
}

.customer-password-row input {
    min-width: 0;
}

.customer-password-toggle {
    display: inline-grid;
    place-items: center;
    min-height: 54px;
    border: 1px solid rgba(0, 87, 255, 0.16);
    border-radius: 16px;
    background: rgba(248, 251, 255, 0.9);
    color: var(--site-primary);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.customer-password-toggle svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.customer-password-toggle:hover,
.customer-password-toggle:focus-visible,
.customer-password-toggle.is-visible {
    border-color: rgba(0, 87, 255, 0.46);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.1);
}


.customer-password-inline-error {
    margin: -4px 0 0;
    color: #dc2626;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.45;
}

.password-rules-card {
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(0, 87, 255, 0.14);
    border-radius: 18px;
    background: rgba(248, 251, 255, 0.72);
    color: var(--site-text);
}

.password-rules-card strong {
    font-size: 14px;
    font-weight: 900;
}

.password-rules-card ul {
    display: grid;
    gap: 6px;
    margin: 0;
    padding-left: 18px;
    color: var(--site-text-soft);
    font-size: 14px;
    line-height: 1.45;
}

.password-rules-card li::marker {
    color: var(--site-primary);
}

@media (max-width: 760px) {
    .cart-list-header {
        display: none;
    }

    .cart-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .cart-row > strong::before {
        display: inline-block;
        min-width: 70px;
        margin-right: 8px;
        color: var(--site-text-soft);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .cart-row > strong:nth-child(2)::before {
        content: 'Bucăți';
    }

    .cart-row > strong:nth-child(3)::before {
        content: 'Preț';
    }

    .cart-total-row,
    .cart-next-button {
        justify-self: stretch;
    }

    .cart-next-button {
        width: 100%;
    }

    .checkout-summary-header {
        display: none;
    }

    .checkout-summary-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .checkout-summary-row strong {
        white-space: normal;
    }

    .checkout-form-grid,
    .checkout-choice-grid,
    .checkout-address-grid-primary,
    .checkout-address-grid-secondary {
        grid-template-columns: 1fr;
    }

    .checkout-submit-button {
        justify-self: stretch;
        width: 100%;
    }
}



.customer-account-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}


.customer-account-actions-arrow {
    color: var(--site-text-soft);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}

.customer-account-actions form {
    margin: 0;
}

.customer-account-badge {
    display: inline-grid;
    place-items: center;
    min-height: 34px;
    padding: 8px 14px;
    border: 1px solid rgba(0, 87, 255, 0.16);
    border-radius: 999px;
    background: #eaf1ff;
    color: var(--site-primary);
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.customer-account-badge:hover,
.customer-account-badge:focus-visible {
    border-color: rgba(0, 87, 255, 0.42);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 87, 255, 0.1);
}

.customer-account-badge-danger {
    border-color: rgba(220, 38, 38, 0.2);
    background: #fff5f5;
    color: #dc2626;
}

.customer-account-badge-danger:hover,
.customer-account-badge-danger:focus-visible {
    border-color: rgba(220, 38, 38, 0.42);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.12);
}

.customer-settings-page {
    display: grid;
    place-items: center;
}

.customer-settings-card {
    display: grid;
    gap: 20px;
    width: min(820px, 100%);
    padding: clamp(22px, 4vw, 40px);
}

.customer-settings-head {
    display: grid;
    gap: 8px;
    text-align: center;
}

.customer-settings-head h1 {
    margin: 0;
    color: var(--site-text);
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    letter-spacing: -0.05em;
}

.customer-settings-head p {
    margin: 0;
    color: var(--site-text-soft);
    line-height: 1.6;
}

.customer-settings-field-note {
    margin: -2px 0 0;
    color: var(--site-text-soft);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.customer-settings-form {
    box-shadow: none;
}

.customer-account-page {
    display: grid;
    place-items: center;
}

.customer-account-card {
    display: grid;
    gap: 20px;
    width: min(880px, 100%);
    padding: clamp(22px, 4vw, 40px);
}

.customer-account-card h1,
.customer-orders h2 {
    margin: 0;
    color: var(--site-text);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.customer-account-card p {
    margin: 0;
    color: var(--site-text-soft);
    line-height: 1.6;
}

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

.customer-account-details div,
.customer-order-row {
    padding: 14px 16px;
    border: 1px solid rgba(0, 87, 255, 0.12);
    border-radius: 16px;
    background: rgba(248, 251, 255, 0.72);
}

.customer-account-details span,
.customer-order-row span {
    display: block;
    color: var(--site-text-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.customer-account-details strong,
.customer-order-row strong {
    display: block;
    margin-top: 4px;
    color: var(--site-text);
    overflow-wrap: anywhere;
}

.customer-orders {
    display: grid;
    gap: 12px;
}

.customer-orders-table {
    display: grid;
    gap: 8px;
}

.customer-orders-head,
.customer-orders-row {
    display: grid;
    grid-template-columns: 72px minmax(150px, 1fr) 130px 110px 100px 92px;
    gap: 12px;
    align-items: center;
}

.customer-orders-head {
    padding: 0 14px 6px;
    color: var(--site-text-soft);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.customer-order-entry {
    border: 1px solid rgba(0, 87, 255, 0.12);
    border-radius: 16px;
    background: rgba(248, 251, 255, 0.72);
    overflow: hidden;
}

.customer-order-entry.is-open {
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(0, 28, 78, 0.08);
}

.customer-orders-row {
    padding: 12px 14px;
    color: var(--site-text);
    font-size: 14px;
    font-weight: 800;
}

.customer-order-toggle {
    min-height: 36px;
    border: 1px solid rgba(0, 87, 255, 0.2);
    border-radius: 999px;
    background: #ffffff;
    color: var(--site-primary);
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.customer-order-toggle:hover,
.customer-order-toggle:focus {
    border-color: rgba(0, 87, 255, 0.46);
    box-shadow: 0 8px 20px rgba(0, 87, 255, 0.1);
}

.customer-order-cancel-form {
    margin: 0;
    justify-self: start;
}

.customer-order-cancel,
.customer-order-cancel-placeholder {
    display: inline-grid;
    place-items: center;
    min-height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.customer-order-cancel {
    border: 1px solid rgba(220, 38, 38, 0.22);
    background: #fff5f5;
    color: #dc2626;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.customer-order-cancel:hover,
.customer-order-cancel:focus-visible {
    border-color: rgba(220, 38, 38, 0.48);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.12);
    transform: translateY(-1px);
}

.customer-order-cancel-placeholder {
    border: 1px solid rgba(100, 116, 139, 0.14);
    background: rgba(241, 245, 249, 0.72);
    color: rgba(100, 116, 139, 0.72);
}

.customer-order-details {
    border-top: 1px solid rgba(0, 87, 255, 0.1);
}

.customer-order-details-inner {
    display: grid;
    gap: 12px;
    padding: 14px;
}

.customer-order-reference-small {
    display: grid;
    gap: 4px;
}

.customer-order-reference-small span {
    color: var(--site-text-soft);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.customer-order-reference-small strong {
    color: var(--site-text);
    overflow-wrap: anywhere;
}

.customer-order-items {
    display: grid;
    gap: 8px;
}

.customer-order-item-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 90px 120px;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(248, 251, 255, 0.86);
    color: var(--site-text);
}

.customer-order-item-row strong,
.customer-order-product-link {
    color: var(--site-text);
    font-weight: 900;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.customer-order-product-link:hover,
.customer-order-product-link:focus-visible {
    color: var(--site-primary);
    text-decoration: underline;
}

.customer-order-item-row span {
    color: var(--site-text-soft);
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 760px) {
    .customer-account-details,
    .customer-orders-head,
    .customer-orders-row,
    .customer-order-item-row {
        grid-template-columns: 1fr;
    }

    .customer-orders-head {
        display: none;
    }
}


.site-products-heading {
    max-width: 1180px;
    margin: 0 auto 24px;
    padding: 0 4px;
}

.site-products-heading h1 {
    margin: 0;
    color: #1f2937;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    font-weight: 900;
}


.product-detail-badge[href] {
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-detail-badge[href]:hover,
.product-detail-badge[href]:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(11, 99, 255, 0.16);
}
