/* ==========================================================================
   АВТОСТОП — ДИЗАЙН-СИСТЕМА «ИНЖЕНЕРНАЯ ТОЧНОСТЬ»
   Цветовая палитра:
   - Базовый темный: Графитовый асфальт #16191F
   - Фоновое пространство: Чистый белый #FFFFFF и холодный серый #F4F6F8
   - Конверсионный акцент: Сигнальный янтарный #FF5E1E
   - Функциональный акцент: Контрольный кобальт #1A56DB
   - Верифицированный статус: Инженерный зеленый #0E9F6E
   Шрифты:
   - Заголовки: Space Grotesk
   - Основной текст: Inter
   - Артикулы и VIN: JetBrains Mono
   ========================================================================== */

:root {
    --bg-graphite: #0A0D14;
    --bg-graphite-surface: #111622;
    --bg-graphite-card: #151D2A;
    --bg-canvas-white: #FFFFFF;
    --bg-canvas-cold: #0A0D14;
    --border-graphite: #1E293B;
    --border-light: #2D3A4F;
    --border-mid: #3F4F68;
    
    /* Professional Automotive Palette: Solid, Matte, No Neon, No AI Cliches */
    --color-amber: #E53935;          /* Automotive Red (Brand Identity) */
    --color-amber-hover: #C62828;
    --color-cobalt: #CBD5E1;         /* Crisp Neutral Silver */
    --color-cobalt-light: rgba(255, 255, 255, 0.06);
    --color-teal: #94A3B8;           /* Muted Slate */
    --color-sky: #E2E8F0;            /* Light Silver */
    --color-ice: #FFFFFF;            /* Crisp White */
    --color-green: #22C55E;          /* Clean Automotive Green */
    --color-green-light: rgba(34, 197, 94, 0.12);

    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --text-white: #FFFFFF;
    --text-ice: #F1F5F9;

    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', Consolas, Monaco, monospace;

    /* Sharp, Daring, Precision Angles (Less rounded) */
    --radius-sm: 2px;
    --radius-md: 3px;
    --radius-lg: 4px;
    --radius-xl: 4px;
    --radius-pill: 2px;
}

/* Reset & Box Sizing */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.site-body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-canvas-cold);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Accessible Focus Rings (Excluding inputs which have dedicated border states) */
button:focus-visible, a:focus-visible {
    outline: 2px solid var(--color-cobalt);
    outline-offset: 2px;
}

input, select, textarea {
    outline: none !important;
}

input:focus, input:focus-visible,
select:focus, select:focus-visible,
textarea:focus, textarea:focus-visible {
    outline: none !important;
    outline-offset: 0 !important;
}

/* Base Utility Classes */
.site-container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.mono-text {
    font-family: var(--font-mono) !important;
}

.uppercase {
    text-transform: uppercase;
}

.hidden {
    display: none !important;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Technical Vector SVG Icon styles */
.ui-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: -2px;
    flex-shrink: 0;
}

.ui-icon-lg {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.shrink-0 {
    flex-shrink: 0;
}

.garage-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.garage-arrow-svg {
    width: 12px;
    height: 12px;
    color: var(--text-muted);
}

.status-dot-green {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--color-green);
    margin-right: 4px;
}

.vin-assist-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--bg-graphite);
    color: #FFF;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vin-assist-icon-box svg {
    width: 26px;
    height: 26px;
}

.shield-icon-box {
    width: 40px;
    height: 40px;
    background-color: rgba(26, 86, 219, 0.15);
    border: 1px solid var(--color-cobalt);
    border-radius: var(--radius-sm);
    color: var(--color-cobalt);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon-box svg {
    width: 22px;
    height: 22px;
}

/* ==========================================================================
   1. TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-utility-bar {
    background-color: #0F1216;
    color: var(--text-muted);
    font-size: 12px;
    padding: 7px 0;
    border-bottom: 1px solid #1E232B;
}

.utility-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.utility-store {
    display: flex;
    align-items: center;
    gap: 8px;
}

.utility-store strong {
    color: #FFF;
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-green);
    box-shadow: 0 0 6px var(--color-green);
    animation: livePulse 2s infinite ease-in-out;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.utility-features {
    display: flex;
    align-items: center;
    gap: 10px;
}

.utility-sep {
    color: #374151;
}

.utility-phone {
    color: #FFF;
    text-decoration: none;
    font-weight: 600;
}
.utility-phone:hover {
    color: var(--color-amber);
}

/* ==========================================================================
   2. CARDNAV FLOATING HEADER (Daring & Sharp Palette)
   ========================================================================== */
.card-nav-header-wrapper {
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 1000;
    pointer-events: none;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    margin: 0;
}

.card-nav-container {
    width: 95%;
    max-width: 620px;
    margin: 0 auto;
    pointer-events: auto;
    box-sizing: border-box;
    transition: max-width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-nav-container.expanded,
.card-nav-container:has(.card-nav.open) {
    max-width: 1040px;
}

.card-nav {
    display: block;
    height: 60px;
    padding: 0;
    background: #111520;
    border: 1px solid #242B3A;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
    position: relative;
    overflow: hidden;
    will-change: height;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card-nav.open {
    border-color: #374151;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.75);
}

.card-nav-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.85rem;
    z-index: 2;
    cursor: pointer;
    user-select: none;
}

.hamburger-menu {
    height: 38px;
    width: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 6px;
    border-radius: 2px;
    background: #181D29;
    border: 1px solid #2B3345;
    color: #FFFFFF;
    transition: all 0.2s ease;
    user-select: none;
}

.hamburger-menu:hover {
    background: #202737;
    border-color: #3E4962;
    color: #FFFFFF;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: 50% 50%;
}

.hamburger-menu.open .hamburger-line:first-child {
    transform: translateY(4px) rotate(45deg);
}

.hamburger-menu.open .hamburger-line:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.card-nav .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    transform: none;
    flex: 1;
    padding: 0 8px;
}

.card-nav .logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease;
}

.card-nav .logo:hover {
    transform: scale(1.04);
}

.card-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-nav-cta-button {
    background: #E53935;
    color: #FFFFFF;
    border: none;
    border-radius: 2px;
    padding: 0 16px;
    height: 38px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.card-nav-cta-button:hover {
    background: #D32F2F;
    transform: translateY(-1px);
}

.card-nav-cart-btn {
    background: #181D29;
    border: 1px solid #2B3345;
    border-radius: 2px;
    padding: 0 12px;
    height: 38px;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.card-nav-cart-btn:hover {
    background: #202737;
    border-color: #3E4962;
    color: #FFFFFF;
}

.card-nav-cart-btn .cart-btn-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.card-nav-cart-btn .cart-badge-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #E53935;
    color: #FFF;
    font-size: 13px;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 2px;
    min-width: 16px;
    text-align: center;
    line-height: 14px;
}

/* CardNav Expanded Content */
.card-nav-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    bottom: 0;
    padding: 12px 14px 16px 14px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
    box-sizing: border-box;
}

.card-nav.open .card-nav-content {
    visibility: visible;
    pointer-events: auto;
}

.nav-card {
    height: 100%;
    flex: 1 1 0;
    min-width: 0;
    border-radius: 3px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 13px 15px;
    gap: 8px;
    user-select: none;
    background: #141824;
    border: 1px solid #232B3B;
    color: #FFFFFF;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.nav-card:hover {
    border-color: #38435A;
}

.nav-card.card-accent-blue {
    background: #151B28;
    border-color: #263042;
}

.nav-card.card-accent-graphite {
    background: #151B28;
    border-color: #263042;
}

.nav-card.card-accent-orange {
    background: #151B28;
    border-color: #263042;
}

.nav-card-label {
    font-weight: 800;
    font-size: 13.5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-card-badge {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: #1C2333;
    color: #CBD5E1;
    padding: 2px 7px;
    border-radius: 2px;
    border: 1px solid #2B374E;
}

.nav-card-sub {
    font-size: 13px;
    color: #94A3B8;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-card-sub strong {
    color: #FFFFFF;
}

.nav-card-links {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-card-link {
    font-size: 13px;
    font-weight: 600;
    color: #CBD5E1;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 3px 0;
    text-align: left;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-card-link:hover {
    color: #FFFFFF;
    transform: translateX(3px);
}

.nav-card-link.active-link {
    color: #E53935;
    font-weight: 700;
}

.nav-card-link.link-highlight {
    color: #FFFFFF;
    font-weight: 700;
}

.nav-card-link.link-highlight:hover {
    color: #E2E8F0;
}

.nav-card-link.link-cart-prominent {
    color: #E53935;
    font-weight: 800;
}

.nav-card-link.link-cart-prominent:hover {
    color: #FF5252;
}

.nav-card-link-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.85;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.nav-card-link:hover .nav-card-link-icon {
    opacity: 1;
    transform: translate(2px, -2px);
}

.nav-card-tool-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-card-tool-row .tool-label {
    font-size: 12.5px;
    color: #94A3B8;
}

.nav-card-select {
    background: #1C2333;
    border: 1px solid #2F3B52;
    color: #FFF;
    border-radius: 2px;
    padding: 4px 8px;
    font-size: 12.5px;
    font-weight: 700;
    outline: none;
    cursor: pointer;
}

.nav-card-select option {
    background: #181E29;
    color: #FFF;
}

.nav-card-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #CBD5E1;
    padding: 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-card-info-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-card-info-item .ui-icon-xs {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 680px) {
    .card-nav-container {
        width: 94%;
        top: 6px;
    }

    .card-nav-top {
        padding: 0.5rem 0.75rem;
    }

    .card-nav .logo-container {
        position: static;
        transform: none;
    }

    .card-nav .logo {
        height: 22px;
    }

    .card-nav-cta-button span {
        display: none;
    }

    .card-nav-cta-button {
        padding: 0 10px;
    }

    .card-nav-content {
        flex-direction: column;
        gap: 8px;
        top: 60px;
        bottom: 0;
        position: absolute;
        overflow-y: auto;
    }

    .nav-card {
        height: auto;
        min-height: auto;
        padding: 12px 14px;
    }
}



/* Logo */
.brand-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 2px 0;
}

.site-header-logo {
    height: 48px;
    width: auto;
    max-width: 195px;
    display: block;
    object-fit: contain;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.brand-logo-link:hover .site-header-logo {
    transform: scale(1.03);
    filter: drop-shadow(0 2px 12px rgba(229, 57, 53, 0.4));
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
}

.brand-subtitle {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-amber);
    font-weight: 700;
    margin-top: 3px;
}

/* Nav links in header */
.header-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link-btn {
    background: transparent;
    color: var(--text-muted);
    border: none;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.15s ease;
}

.nav-link-btn:hover {
    color: #FFF;
    background-color: rgba(255, 255, 255, 0.06);
}

.nav-link-btn.active {
    color: #FFF;
    background-color: rgba(255, 255, 255, 0.12);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Garage Widget */
.garage-widget {
    position: relative;
}

.garage-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #212631;
    border: 1px solid var(--border-graphite);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    color: #FFF;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s;
}

.garage-btn:hover {
    background-color: #2B313F;
}

.garage-icon {
    font-size: 18px;
}

.garage-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.garage-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.garage-car {
    font-size: 12px;
    font-weight: 700;
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.garage-arrow {
    font-size: 9px;
    color: var(--text-muted);
}

.garage-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    width: 280px;
    background: #FFF;
    color: var(--text-primary);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    border: 1px solid var(--border-light);
    z-index: 1010;
    overflow: hidden;
}

.garage-dropdown-header {
    background: #F9FAFB;
    padding: 10px 14px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.garage-list {
    list-style: none;
}

.garage-item {
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #F3F4F6;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.garage-item:hover {
    background-color: #F4F6F8;
}

.garage-item.active {
    background-color: var(--color-cobalt-light);
    border-left: 3px solid var(--color-cobalt);
}

.garage-item strong {
    font-size: 13px;
    color: var(--text-primary);
}

.garage-item small {
    font-size: 13px;
    color: var(--text-secondary);
}

.garage-dropdown-footer {
    padding: 10px 14px;
    background: #F9FAFB;
    text-align: center;
}

.garage-dropdown-footer button {
    background: none;
    border: none;
    color: var(--color-cobalt);
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
}

/* Markup selector in header */
.markup-tool {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #212631;
    border: 1px solid var(--border-graphite);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
}

.markup-lbl {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.markup-select {
    background: transparent;
    color: #FFF;
    border: none;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    outline: none;
}
.markup-select option {
    background: #212631;
    color: #FFF;
}

/* Cart Button */
.cart-trigger-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-amber);
    color: #FFF;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 94, 30, 0.25);
    transition: all 0.15s ease;
}

.cart-trigger-btn:hover {
    background-color: var(--color-amber-hover);
    transform: translateY(-1px);
}

.cart-trigger-btn:active {
    transform: scale(0.96);
}

.cart-btn-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-btn-icon svg {
    width: 22px;
    height: 22px;
}

.cart-badge-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #16191F;
    color: #FFF;
    border: 2px solid var(--color-amber);
    font-size: 13px;
    font-weight: 800;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

.cart-btn-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.15;
}

.cart-btn-label {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.9;
}

.cart-btn-sum {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
}

/* ==========================================================================
   3. HERO SECTION & FINDER WIDGET
   ========================================================================== */
.hero-section {
    position: relative;
    background-color: var(--bg-graphite);
    color: #FFF;
    padding: 48px 0 60px 0;
    border-bottom: 1px solid var(--border-graphite);
    overflow: hidden;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 2;
    mask-image: radial-gradient(circle at 25% 75%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 25% 75%, black 40%, transparent 80%);
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-graphite-card);
    border: 1px solid var(--border-graphite);
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-cobalt);
    box-shadow: 0 0 8px var(--color-cobalt);
    animation: livePulse 1.8s infinite;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    max-width: 860px;
    margin-bottom: 16px;
    color: #FFF;
}

.hero-desc {
    font-size: 16px;
    color: #9CA3AF;
    max-width: 760px;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Hero Finder Widget */
.hero-finder-widget {
    background-color: var(--bg-graphite-surface);
    border: 1px solid var(--border-graphite);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
    max-width: 980px;
}

.finder-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border-graphite);
    padding-bottom: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.finder-tab {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid transparent;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
}

.finder-tab:hover {
    color: #FFF;
    background-color: rgba(255, 255, 255, 0.05);
}

.finder-tab.active {
    background-color: #2B3240;
    color: #FFF;
    border-color: #3F4756;
}

.finder-pane {
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.field-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.label-badge {
    color: var(--color-cobalt);
    font-size: 13px;
    font-weight: 700;
}

.text-input {
    width: 100%;
    height: 48px;
    background-color: #12151B;
    border: 2px solid var(--border-graphite);
    border-radius: var(--radius-md);
    padding: 0 16px;
    font-size: 15px;
    color: #FFF;
    transition: all 0.15s ease;
    outline: none;
}

.text-input:focus {
    outline: none !important;
    border-color: var(--color-cobalt);
    box-shadow: none;
    background-color: #0E1015;
}

.text-input::placeholder {
    color: #4B5563;
}

.car-quick-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: end;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    background-color: var(--color-amber);
    color: #FFF;
    border: none;
    border-radius: var(--radius-md);
    padding: 0 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255, 94, 30, 0.3);
    transition: all 0.15s ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn-cta:hover {
    background-color: var(--color-amber-hover);
}

.btn-cta:active {
    transform: scale(0.96);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    background-color: transparent;
    color: #FFF;
    border: 2px solid #374151;
    border-radius: var(--radius-md);
    padding: 0 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
}

.btn-cta-outline:hover {
    background-color: rgba(255,255,255,0.06);
    border-color: #FFF;
}

.btn-cta-full {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    background-color: var(--color-amber);
    color: #FFF;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255, 94, 30, 0.3);
    transition: all 0.15s ease;
}

.btn-cta-full:hover {
    background-color: var(--color-amber-hover);
}

.btn-cta-full:active {
    transform: scale(0.96);
}

/* VIN Field with Laser Scanner Effect */
.vin-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: end;
}

.vin-field-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.scanner-laser {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    display: none;
    box-shadow: none;
    pointer-events: none;
    opacity: 0;
}

.vin-field-wrap.scanning .scanner-laser {
    opacity: 1;
    animation: laserScan 1.5s infinite;
}

@keyframes laserScan {
    0% { transform: translateY(-2px); }
    100% { transform: translateY(48px); }
}

.field-aux-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--color-cobalt);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.field-hint {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
}

.code-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: end;
}

/* 3 Hero Trust Pillars */
.hero-trust-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-column {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.trust-icon-box {
    width: 44px;
    height: 44px;
    background-color: var(--bg-graphite-card);
    border: 1px solid var(--border-graphite);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon-box svg {
    width: 24px;
    height: 24px;
}

.text-cobalt { color: var(--color-cobalt); }
.text-green { color: var(--color-green); }
.text-amber { color: var(--color-amber); }

.trust-column-body strong {
    display: block;
    font-size: 14px;
    color: #FFF;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.trust-column-body p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.45;
}

/* ==========================================================================
   4. QUICK MAINTENANCE SETS IN 1-CLICK
   ========================================================================== */
.sets-section {
    padding: 56px 0;
    background-color: #0A0D14;
    border-bottom: 1px solid #283042;
}

.section-title-wrap {
    margin-bottom: 32px;
}

.title-with-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.badge-cobalt {
    background-color: #181E2B;
    color: var(--color-cobalt);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    border: none;
}

.badge-amber {
    background-color: rgba(252, 68, 69, 0.12);
    color: var(--color-amber);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    border: none;
}

.badge-green {
    background-color: rgba(85, 188, 201, 0.12);
    color: var(--color-teal);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    border: none;
}

.section-h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: #FFFFFF;
}

.section-p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 700px;
}

.sets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.set-card {
    background: #0E131E;
    border: 1px solid #283042;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.set-card:hover {
    border-color: #5CDB95;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.8);
    transform: translateY(-3px);
}

.set-card-img-wrap {
    position: relative;
    width: 100%;
    height: 190px;
    background: #07090E;
    overflow: hidden;
}

.set-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    display: block;
}

.set-card:hover .set-card-img {
    transform: scale(1.05);
}

.set-badge-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(10, 13, 20, 0.88);
    color: #5CDB95;
    font-size: 12.5px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 2px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.set-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.set-car-label {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #907163;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.set-title {
    font-size: 15px;
    font-weight: 800;
    color: #EDF5E1;
    margin-bottom: 8px;
    line-height: 1.35;
}

.set-desc {
    font-size: 12px;
    color: #94A3B8;
    line-height: 1.45;
    margin-bottom: 12px;
}

.set-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    margin-bottom: 14px;
}

.set-oem {
    font-family: var(--font-mono);
    color: #8EE4AF;
    font-weight: 700;
}

.set-stock {
    color: #5CDB95;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.set-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.set-price {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    color: #5CDB95;
}

.set-old-price {
    font-size: 12px;
    color: #64748B;
    text-decoration: line-through;
    margin-left: 6px;
}

.btn-sm-cta {
    background-color: #FC4445;
    color: #FFF;
    border: none;
    border-radius: 2px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 2px 8px rgba(252, 68, 69, 0.35);
}

.btn-sm-cta:hover {
    background-color: #E03637;
    box-shadow: 0 0 14px rgba(252, 68, 69, 0.6);
}

/* ==========================================================================
   5. CAR CATALOG & MODEL SELECTION (39 брендов с логотипами)
   ========================================================================== */
.car-catalog-section {
    padding: 56px 0;
    background-color: var(--bg-canvas-cold);
}

.car-step-panel {
    background: #0E131E;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.car-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.step-indicator {
    width: 28px;
    height: 28px;
    background-color: #FC4445;
    color: #FFF;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.step-title-text {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

/* Brands Grid with Logos */
.car-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    gap: 10px;
}

.car-brand-btn {
    background: #121824;
    color: #F8FAFC;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.15s ease;
}

.car-brand-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: #172132;
    transform: translateY(-1px);
    box-shadow: none;
}

.car-brand-btn.active {
    background-color: #FC4445;
    color: #FFF;
    border-color: #FC4445;
    box-shadow: 0 0 14px rgba(252, 68, 69, 0.5);
}

.car-brand-logo-wrap {
    width: 36px;
    height: 36px;
    background: #FFF;
    border: none;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    flex-shrink: 0;
}

.car-brand-logo {
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
}

.car-brand-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    overflow: hidden;
}

.car-brand-name {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.car-brand-btn small {
    font-size: 13px;
    color: var(--text-muted);
}

.car-brand-btn.active small {
    color: #FFF;
}

/* Models Grid */
.car-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px;
    background: transparent;
    border: none;
    padding: 0;
}

.car-model-btn {
    background: #121824;
    color: #F8FAFC;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    text-align: left;
    transition: all 0.15s ease;
}

.car-model-btn:hover {
    background-color: #172132;
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.car-model-btn.active {
    background-color: #FC4445;
    color: #FFF;
    border-color: #FC4445;
    font-weight: 700;
}

.car-model-btn .model-years {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.car-model-btn:hover .model-years,
.car-model-btn.active .model-years {
    color: #E2E8F0;
}

.btn-back {
    background: #181E2B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
}
.btn-back:hover {
    background: #181E2B;
    color: #E2E8F0;
}

/* Selected Vehicle Banner */
.vehicle-selected-banner {
    background: #131A26;
    border: none;
    border-left: 3px solid #FC4445;
    color: #FFF;
    padding: 16px 22px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
    box-shadow: none;
}

.vehicle-h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.vehicle-p {
    font-size: 12px;
    color: var(--text-muted);
}

.btn-change-car {
    background: #FC4445;
    color: #FFF;
    border: none;
    border-radius: 2px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 2px 8px rgba(252, 68, 69, 0.35);
}

.btn-change-car:hover {
    background: #E03637;
    box-shadow: 0 0 14px rgba(252, 68, 69, 0.6);
}

/* Parts Toolbar */
.parts-toolbar {
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 24px;
}

.parts-search-field-wrap {
    margin-bottom: 14px;
}

.parts-cat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.parts-cat-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #141C2A;
    color: #94A3B8;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.parts-cat-tab .ui-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    opacity: 0.85;
}

.parts-cat-tab:hover {
    background: #1C2638;
    color: #FFFFFF;
}

.parts-cat-tab.active {
    background-color: #243147;
    color: #FFFFFF;
    border: none;
}

.parts-cat-tab.active .ui-icon {
    stroke: #FC4445;
    opacity: 1;
}

.parts-count-info {
    font-size: 12px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Product Cards Grid */
.car-parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 16px;
}

/* ==========================================================================
   6. PRODUCT CARD COMPONENT (Инженерная точность)
   ========================================================================== */
.car-part-card {
    background: #0E131E;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.car-part-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.7);
    transform: translateY(-2px);
}

.card-top-badge-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.badge-compat-vin {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #172030;
    color: #FFFFFF;
    font-size: 12.5px;
    font-weight: 800;
    padding: 4px 9px;
    border-radius: 3px;
    border: none;
}

.card-icon-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.card-part-glyph {
    background: #172030;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FFFFFF;
    transition: all 0.2s ease;
}

.car-part-card:hover .card-part-glyph {
    background: #1E283C;
    color: #FFFFFF;
}

.card-part-glyph svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-cat-name {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
}

.card-part-title {
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.35;
    margin-top: 2px;
}

.card-meta-box {
    background-color: #0A0E17;
    border: none;
    border-radius: 3px;
    padding: 8px 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.card-meta-lbl {
    color: var(--text-secondary);
}

.card-meta-code {
    font-family: var(--font-mono);
    font-weight: 700;
    color: #E2E8F0;
}

.card-stock-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 16px;
}

.card-action-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.btn-lookup-part {
    background-color: #FC4445;
    color: #FFF;
    border: none;
    padding: 10px 14px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s ease;
    box-shadow: 0 2px 8px rgba(252, 68, 69, 0.35);
}

.btn-lookup-part:hover {
    background-color: #E03637;
    box-shadow: 0 0 14px rgba(252, 68, 69, 0.6);
}

.btn-lookup-part:active {
    transform: scale(0.96);
}

.btn-reserve-quick {
    background: #141A26;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 10px 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
}
.btn-reserve-quick:hover {
    background: #1B2333;
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

/* VIN Assist Card */
.vin-assist-card {
    background-color: #131A26;
    border: none;
    border-left: 3px solid #FC4445;
    border-radius: 4px;
    padding: 22px 24px;
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.vin-assist-icon {
    font-size: 32px;
}

.vin-assist-body {
    flex-grow: 1;
}

.vin-assist-body strong {
    font-size: 15px;
    display: block;
    margin-bottom: 4px;
    color: #FFFFFF;
}

.vin-assist-body p {
    font-size: 13px;
    color: var(--text-secondary);
    max-width: 700px;
}

/* ==========================================================================
   7. ARTICLE SEARCH & OFFERS TABLE (Trinity-Parts Live Data)
   ========================================================================== */
.search-section {
    padding: 56px 0;
    background-color: #0A0D14;
    border-bottom: 1px solid #283042;
}

.main-search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    max-width: 900px;
    margin-bottom: 16px;
}

.search-input-wrap {
    width: 100%;
}

.search-input {
    width: 100%;
    height: 52px;
    border: 1px solid #283042;
    border-radius: 2px;
    padding: 0 18px;
    font-size: 16px;
    outline: none;
    transition: all 0.15s;
    background-color: #0E131E;
    color: #FFF;
}

.search-input:focus {
    outline: none !important;
    border-color: var(--color-cobalt);
    box-shadow: none;
}

.quick-examples {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.quick-lbl {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
}

.chip-btn {
    background-color: #121824;
    border: 1px solid #283042;
    border-radius: 2px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    color: #E2E8F0;
    cursor: pointer;
    transition: all 0.15s;
}

.chip-btn:hover {
    background-color: #181E2B;
    border-color: #3B465E;
    color: #FFFFFF;
}

/* Loader Card */
.loader-card {
    background-color: #0E131E;
    border: 1px solid #283042;
    border-radius: 3px;
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.scanner-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-cobalt), var(--color-amber), transparent);
    animation: scannerBar 1.6s infinite ease-in-out;
}

@keyframes scannerBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.loader-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.spinner-dot {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--color-cobalt);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Brand Choice */
.brand-choice-box {
    background: #181E2B;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 24px;
}

.brand-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.brand-chip-btn {
    background: #0A0D14;
    border: 1px solid #FC4445;
    color: #FC4445;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
}

.brand-chip-btn:hover {
    background: #FC4445;
    color: #FFF;
}

/* Results Box */
.results-box {
    background: #0E131E;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.results-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.results-h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
}

.results-meta-text {
    font-size: 13px;
    color: var(--text-secondary);
}

.results-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ctrl-lbl {
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ctrl-select {
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 10px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    background: #0A0D14;
    color: #FFF;
}

.results-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.res-tab {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    margin-bottom: -2px;
}

.res-tab.active {
    color: #FC4445;
    border-bottom-color: #FC4445;
}

/* Offers Data Table */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.offers-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    text-align: left;
}

.offers-data-table th {
    background-color: #F9FAFB;
    color: var(--text-secondary);
    font-weight: 700;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-light);
    white-space: nowrap;
}

.offers-data-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #F3F4F6;
    vertical-align: middle;
}

.offers-data-table tr:hover td {
    background-color: #FAFBFB;
}

.brand-badge {
    background-color: #0A0D14;
    color: #E2E8F0;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 800;
    display: inline-block;
    border: none;
}

.price-retail {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: #FC4445;
}

.price-wholesale {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
}

.btn-buy-row {
    background-color: #FC4445;
    color: #FFF;
    border: none;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(252, 68, 69, 0.3);
}

.btn-buy-row:hover {
    background-color: #E03637;
    box-shadow: 0 0 12px rgba(252, 68, 69, 0.6);
    transform: translateY(-1px);
}

.empty-state-msg {
    padding: 32px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* ==========================================================================
   8. OMNICHANNEL PHYSICAL STORE BLOCK
   ========================================================================== */
.store-trust-section {
    padding: 60px 0;
    background-color: #0A0D14;
}

.omnichannel-card {
    background: linear-gradient(135deg, #0D121B 0%, #151D2A 100%);
    border-radius: 4px;
    padding: 48px;
    color: #FFF;
    border: 1px solid #283042;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.omnichannel-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.omni-h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    margin: 12px 0;
    line-height: 1.2;
}

.omni-p {
    color: #9CA3AF;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.omni-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.omni-detail-item {
    font-size: 14px;
    color: #D1D5DB;
}

.omni-detail-item strong {
    color: #FFF;
    margin-right: 6px;
}

.omni-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.omni-guarantee-box {
    background: rgba(10, 14, 22, 0.5);
    border: none;
    border-radius: 4px;
    padding: 30px;
}

.guarantee-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.shield-big {
    font-size: 28px;
    color: #FFFFFF;
}

.guarantee-header h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
}

.guarantee-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guarantee-list li strong {
    display: block;
    color: #FFF;
    font-size: 14px;
    margin-bottom: 2px;
}

.guarantee-list li span {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.45;
}

/* ==========================================================================
   9. FOOTER
   ========================================================================== */
.site-footer {
    background-color: #0F1216;
    color: var(--text-muted);
    padding: 60px 0 40px 0;
    border-top: 1px solid #1E232B;
    font-size: 13px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 12px;
}

.footer-brand p {
    max-width: 440px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-copy {
    font-size: 12px;
    color: #4B5563;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #FFF;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
}
.footer-col a:hover {
    color: #FFF;
}

/* ==========================================================================
   10. MODALS (Shopping Cart & Order Success)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.65);
    
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-card {
    background: #FFF;
    border-radius: 4px;
    border: 1px solid #283042;
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    animation: modalSlide 0.25s ease-out;
}

.modal-card.modal-sm {
    max-width: 480px;
}

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    background: #FAFBFB;
}

.modal-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
}

.cart-items-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    max-height: 280px;
    overflow-y: auto;
}

.cart-row {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 12px;
    align-items: center;
    background: #F9FAFB;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 12px 14px;
}

.cart-row-title {
    font-size: 13px;
    font-weight: 700;
}

.cart-row-meta {
    font-size: 13px;
    color: var(--text-secondary);
}

.cart-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-qty-btn {
    width: 26px;
    height: 26px;
    background: #FFF;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.cart-row-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    min-width: 80px;
    text-align: right;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #EF4444;
    cursor: pointer;
    padding: 4px;
}

.cart-totals-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F3F4F6;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.totals-sum strong {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: #FC4445;
}

.checkout-box h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
}

.form-row {
    margin-bottom: 12px;
}

.payment-note {
    background: #181E2B;
    border: 1px solid #283042;
    color: #0369A1;
    font-size: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    margin: 16px 0;
    line-height: 1.4;
}

/* Success Modal */
.success-badge {
    display: inline-block;
    background: var(--color-green-light);
    color: var(--color-green);
    font-size: 14px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.success-p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.success-point {
    background: #F9FAFB;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px;
    font-size: 13px;
    margin-bottom: 20px;
}

/* ==========================================================================
   11. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-heading {
        font-size: 32px;
    }
    .hero-trust-columns {
        grid-template-columns: 1fr;
    }
    .omnichannel-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .utility-features {
        display: none;
    }
    .header-nav {
        display: none;
    }
    .garage-car {
        display: none;
    }
    .car-quick-row,
    .vin-form,
    .code-form,
    .main-search-form {
        grid-template-columns: 1fr;
    }
    .btn-cta {
        width: 100%;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Toast Notifications (solid engineering feedback) */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast-item {
    pointer-events: auto;
    background: #16191F;
    color: #FFFFFF;
    border-left: 4px solid var(--color-cobalt);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
    max-width: 440px;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    font-size: 13px;
    line-height: 1.4;
}

.toast-item.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-item.toast-success {
    border-left-color: var(--color-green);
}

.toast-item.toast-amber {
    border-left-color: var(--color-amber);
}

.toast-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.toast-title {
    font-weight: 700;
    font-size: 13px;
    color: #FFFFFF;
}

.toast-desc {
    font-size: 12px;
    color: #94A3B8;
    margin-top: 2px;
}

.cart-remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    transition: color 0.15s ease;
}

.cart-remove-btn:hover {
    color: #EF4444;
}

/* ==========================================================================
   FULLSCREEN 3D SUPERCAR CINEMATIC STAGE & FLOATING CARD
   ========================================================================== */
.hero-fullscreen-stage {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 720px;
    max-height: 980px;
    background-color: #d8dcde;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0;
    border-bottom: 1px solid #283042;
}

.hero-fullscreen-stage .hero-grid-pattern {
    display: none !important;
}

.car-3d-stage-full {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
    background: #d8dcde;
}

.car-3d-canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
    outline: none;
    pointer-events: auto;
    cursor: grab;
}

.car-3d-canvas:active {
    cursor: grabbing;
}

.car-3d-fade-overlay {
    position: absolute;
    inset: 0;
    background: #000000;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.car-3d-fade-overlay.fade-black {
    opacity: 1;
}

.car-3d-loader {
    position: absolute;
    inset: 0;
    background: #d8dcde;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: opacity 0.45s ease;
}

.car-3d-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner-wrap {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-ring-spinner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-cobalt);
    border-right-color: var(--color-amber);
    animation: spin 1s linear infinite;
}

.loader-progress-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

#car3DProgressText {
    font-size: 12px;
    color: #94A3B8;
    font-family: var(--font-mono);
}

.loader-progress-bar {
    width: 180px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-cobalt), var(--color-amber));
    border-radius: 2px;
    transition: width 0.2s ease;
}

/* Floating Bottom-Left Console (Expanded engineering card + embedded store map) */
.hero-floating-wrap {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 25;
    pointer-events: none;
    max-width: 585px;
    width: calc(100% - 48px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-floating-wrap.collapsed {
    left: 24px;
    bottom: 24px;
    max-width: 280px;
    width: auto;
}

.hero-floating-wrap.collapsed .hero-bottom-left-card {
    display: none;
}

.hero-store-launcher-btn {
    display: none;
    pointer-events: auto;
    background: rgba(10, 14, 22, 0.94);
    
    
    border: 1px solid #283042;
    border-radius: 3px;
    padding: 8px 16px;
    color: #E2E8F0;
    font-size: 13px;
    font-weight: 700;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.hero-floating-wrap.collapsed .hero-store-launcher-btn {
    display: inline-flex;
}

.hero-store-launcher-btn:hover {
    background: rgba(15, 22, 35, 0.98);
    border-color: #3B465E;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
}

.hero-store-launcher-btn .launcher-title {
    font-family: var(--font-heading);
    color: #FFFFFF;
}

.hero-store-launcher-btn .launcher-sub {
    font-size: 12.5px;
    color: #94A3B8;
}

.hero-store-launcher-btn .launcher-arrow {
    color: #FC4445;
    font-weight: 800;
}

.hero-bottom-left-card {
    pointer-events: auto;
    width: 100%;
    position: relative;
    background: rgba(10, 14, 22, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 20px 22px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
}

.btn-store-card-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 5;
}

.btn-store-card-close:hover {
    background: rgba(252, 68, 69, 0.2);
    color: #FC4445;
}

/* Top Meta Bar */
.hero-card-top-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.hero-brand-pill {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: #E2E8F0;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 10px;
    border-radius: 3px;
    border: none;
}

.hero-brand-logo-img {
    height: 20px;
    width: auto;
    max-width: 85px;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}

.launcher-logo-img {
    height: 20px;
    width: auto;
    max-width: 80px;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}

.footer-brand-logo-img {
    height: 52px;
    width: auto;
    max-width: 220px;
    display: block;
    object-fit: contain;
    margin-bottom: 16px;
}

.hero-live-badge {
    font-size: 13px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.pulse-beacon {
    width: 7px;
    height: 7px;
    background: #E53935;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7);
    animation: beaconPulse 2s infinite;
}

@keyframes beaconPulse {
    0% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(229, 57, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}

.hero-bottom-left-card .hero-heading {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    color: #FFFFFF;
}

.hero-bottom-left-card .hero-desc {
    font-size: 12px;
    color: #94A3B8;
    line-height: 1.45;
    margin-bottom: 12px;
}

.hero-bottom-left-card .hero-finder-widget {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    max-width: 100%;
    margin-bottom: 14px;
}

.hero-bottom-left-card .finder-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    padding-bottom: 2px;
    margin-bottom: 12px;
    width: 100%;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero-bottom-left-card .finder-tabs::-webkit-scrollbar {
    display: none;
    height: 0;
    width: 0;
}

.hero-bottom-left-card .finder-tab {
    flex: 1 1 0;
    min-width: 0;
    padding: 7px 6px;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
    text-align: center;
    color: #94A3B8;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
}

.hero-bottom-left-card .finder-tab:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
}

.hero-bottom-left-card .finder-tab.active {
    background: #243147;
    color: #FFFFFF;
    border: none;
}

.hero-bottom-left-card .finder-tab .ui-icon {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.hero-bottom-left-card .field-label {
    font-size: 13px;
    margin-bottom: 5px;
    color: #94A3B8;
}

.hero-bottom-left-card .text-input {
    height: 40px;
    font-size: 12.5px;
    padding: 0 12px;
    border-radius: 2px;
    border: 1px solid #283042;
    background: #0E131E;
}

.hero-bottom-left-card .text-input:focus {
    outline: none !important;
    border-color: #3B465E;
    box-shadow: none;
}

.hero-bottom-left-card .btn-cta {
    height: 40px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border-radius: 2px;
    background: #FC4445;
    box-shadow: 0 4px 14px rgba(252, 68, 69, 0.35);
}

.hero-bottom-left-card .btn-cta:hover {
    background: #E03637;
    box-shadow: 0 0 16px rgba(252, 68, 69, 0.6);
}

/* Quick One-Click Pills */
.hero-quick-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding-top: 4px;
}

.hero-quick-pills .pills-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #64748B;
    margin-right: 2px;
}

.hero-pill-btn {
    background: rgba(85, 188, 201, 0.1);
    border: 1px solid rgba(85, 188, 201, 0.3);
    color: #E2E8F0;
    font-size: 12.5px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.hero-pill-btn:hover {
    background: #181E2B;
    border-color: #3B465E;
    color: #FFFFFF;
    transform: translateY(-1px);
}

/* Tab 4: Map pane content */
.map-pane-content {
    padding: 6px 0;
}

.map-pane-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.map-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #CBD5E1;
}

.map-feature-item strong {
    color: #FFFFFF;
    display: block;
    font-size: 13px;
}

/* Embedded Store Map Block */
.hero-embedded-map-block {
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    padding: 14px 0 0 0;
}

.map-block-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.map-location-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-spot-name {
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    display: block;
    line-height: 1.3;
}

.map-spot-sub {
    font-size: 12.5px;
    color: #64748B;
    display: block;
    line-height: 1.2;
}

.map-badge-time {
    font-size: 12.5px;
    font-family: var(--font-mono);
    color: #FFFFFF;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #181E2B;
    padding: 3px 8px;
    border-radius: 2px;
    border: 1px solid #283042;
    white-space: nowrap;
}

.status-dot-green {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E53935;
}

.map-frame-container {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid #283042;
    background: #12151B;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-yandex-map {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: contrast(1.05) brightness(0.92);
}

.map-pin-overlay-pill {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 5;
    background: rgba(10, 14, 22, 0.90);
    
    border: 1px solid #283042;
    border-radius: 2px;
    padding: 4px 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: #E2E8F0;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.map-bottom-cta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.btn-map-nav {
    flex: 1.2;
    height: 38px;
    background: #FC4445;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(252, 68, 69, 0.35);
}

.btn-map-nav:hover {
    transform: translateY(-1px);
    background: #E03637;
    box-shadow: 0 0 16px rgba(252, 68, 69, 0.6);
    color: #FFFFFF;
}

.btn-map-call {
    height: 38px;
    padding: 0 12px;
    background: #181E2B;
    border: 1px solid #283042;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-map-call:hover {
    background: #181E2B;
    border-color: #3B465E;
    color: #E2E8F0;
}

.btn-map-info {
    height: 38px;
    padding: 0 12px;
    background: transparent;
    border: 1px solid rgba(85, 188, 201, 0.35);
    color: #E2E8F0;
    font-size: 13px;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-map-info:hover {
    background: rgba(85, 188, 201, 0.12);
    border-color: #3B465E;
    color: #FFFFFF;
}

/* Explicitly enforce icon scales */
.ui-icon-xs,
.btn-map-nav svg,
.btn-map-call svg,
.btn-map-info svg,
.map-location-title svg,
.map-pin-overlay-pill svg {
    width: 15px !important;
    height: 15px !important;
    min-width: 15px !important;
    min-height: 15px !important;
    max-width: 15px !important;
    max-height: 15px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

/* Dedicated Trust Strip directly below Hero */
.hero-trust-bar-section {
    background-color: #12151B;
    border-bottom: 1px solid var(--border-graphite);
    padding: 28px 0;
}

.hero-trust-bar-section .hero-trust-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

@media (max-width: 1100px) {
    .hero-fullscreen-stage {
        height: auto;
        min-height: 680px;
        padding-top: 260px;
    }
    .hero-bottom-left-card {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .hero-trust-bar-section .hero-trust-columns {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==========================================================================
   PORSCHE 718 CAYMAN 360° INTERACTIVE SHOWROOM STYLING
   High-end automotive configurator aesthetic (Studio Light / Dark Glassmorphism)
   ========================================================================== */

.hero-floating-wrap.collapsed {
    left: 24px;
    bottom: 24px;
    max-width: 280px;
    width: auto;
}

/* ==========================================================================
   MODAL DIALOGS (Cart & Order Success) - Obsidian Dark & High Contrast
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 6, 10, 0.88);
    
    
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.modal-card {
    background: #0E131E;
    border: 1px solid #283042;
    border-radius: 4px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.92);
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #EDF5E1;
}

.modal-card.modal-sm {
    max-width: 480px;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #0A0D14;
}

.modal-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-title-wrap h3 {
    font-size: 18px;
    font-weight: 800;
    color: #EDF5E1;
    margin: 0;
    letter-spacing: -0.01em;
}

.modal-close-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94A3B8;
    width: 32px;
    height: 32px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background: rgba(252, 68, 69, 0.2);
    border-color: #FC4445;
    color: #FC4445;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    background: #0E131E;
}

/* Cart items wrap */
.cart-items-wrap {
    margin-bottom: 20px;
}

.cart-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: #131826;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    margin-bottom: 8px;
    gap: 12px;
}

.cart-row-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #EDF5E1;
    margin-bottom: 3px;
}

.cart-row-meta {
    font-size: 13px;
    color: #94A3B8;
}

.cart-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0A0D14;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    padding: 2px 6px;
}

.cart-qty-btn {
    background: transparent;
    border: none;
    color: #94A3B8;
    font-size: 14px;
    cursor: pointer;
    padding: 2px 6px;
    transition: color 0.15s ease;
}

.cart-qty-btn:hover {
    color: #5CDB95;
}

.cart-row-price {
    font-size: 15px;
    font-weight: 800;
    color: #5CDB95;
    white-space: nowrap;
}

.cart-remove-btn {
    background: transparent;
    border: none;
    color: #907163;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.cart-remove-btn:hover {
    color: #FC4445;
}

.cart-totals-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #131826;
    border: none;
    border-radius: 3px;
    padding: 14px 18px;
    margin-bottom: 20px;
}

.totals-count {
    font-size: 13px;
    color: #94A3B8;
}

.totals-count strong {
    color: #EDF5E1;
}

.totals-sum {
    font-size: 14px;
    color: #94A3B8;
}

.totals-sum strong {
    font-size: 20px;
    font-weight: 800;
    color: #FC4445;
    margin-left: 6px;
}

.checkout-box h4 {
    font-size: 13px;
    font-weight: 800;
    color: #EDF5E1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.form-row {
    margin-bottom: 14px;
}

.field-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #94A3B8;
    margin-bottom: 6px;
}

.modal-body .text-input {
    width: 100%;
    background: #0A0D14 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #EDF5E1 !important;
    border-radius: 2px;
    padding: 10px 12px;
    font-size: 13.5px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.modal-body .text-input:focus {
    border-color: #5CDB95 !important;
    box-shadow: none; !important;
    outline: none !important;
}

.modal-body select.text-input option {
    background: #0E131E;
    color: #EDF5E1;
}

.payment-note {
    background: rgba(92, 219, 149, 0.08);
    border: none;
    border-left: 3px solid #5CDB95;
    border-radius: 3px;
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 12px;
    color: #EDF5E1;
    line-height: 1.45;
    margin-bottom: 18px;
}

.payment-note strong {
    color: #5CDB95;
}

.btn-cta-full {
    width: 100%;
    background: #FC4445;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 14px 20px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(252, 68, 69, 0.4);
    transition: all 0.2s ease;
}

.btn-cta-full:hover {
    background: #E03637;
    box-shadow: 0 0 22px rgba(252, 68, 69, 0.6);
    transform: translateY(-1px);
}

/* Success modal styles */
.success-badge {
    background: rgba(92, 219, 149, 0.12);
    border: none;
    color: #5CDB95;
    padding: 8px 16px;
    border-radius: 2px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 14px;
}

.success-badge strong {
    color: #EDF5E1;
    letter-spacing: 1px;
}

.success-p {
    font-size: 13.5px;
    color: #94A3B8;
    line-height: 1.5;
    margin-bottom: 16px;
}

.success-point {
    background: #131826;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 14px;
    border-radius: 2px;
    font-size: 12.5px;
    color: #EDF5E1;
    margin-bottom: 20px;
    text-align: left;
}

.success-point strong {
    color: #5CDB95;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast-item {
    background: #0E131E;
    border: 1px solid #283042;
    border-radius: 3px;
    padding: 12px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    color: #EDF5E1;
    min-width: 260px;
    max-width: 380px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
}

.toast-item.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-item.toast-success {
    border-left: 4px solid #5CDB95;
}

.toast-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.toast-title {
    font-size: 13px;
    font-weight: 700;
    color: #5CDB95;
}

.toast-msg {
    font-size: 12px;
    color: #94A3B8;
}





