/* ============================================
   VAZ AUTO SOLUTIONS — Design System
   Brand: Technical, Trustworthy, Premium, Industrial
   ============================================ */

:root {
    /* --- Brand Palette --- */
    --deep-navy: #0B1F33;
    --steel-blue: #2563EB;
    --steel-blue-dark: #1D4ED8;
    --steel-blue-light: #3B82F6;
    --graphite: #111827;
    --white: #FFFFFF;
    --light-gray: #F3F4F6;

    /* --- Mapped Tokens (keep compat with existing classes) --- */
    --theme-blue: var(--steel-blue);
    --theme-blue-dark: var(--steel-blue-dark);
    --theme-blue-light: var(--steel-blue-light);
    --theme-dark: var(--deep-navy);
    --bs-primary: var(--steel-blue);
    --bs-primary-rgb: 37, 99, 235;

    /* --- Surfaces --- */
    --surface-primary: var(--white);
    --surface-secondary: var(--light-gray);
    --surface-dark: var(--deep-navy);

    /* --- Text --- */
    --text-primary: var(--graphite);
    --text-secondary: #4B5563;
    --text-muted: #6B7280;
    --text-on-dark: #D1D5DB;

    /* --- Borders --- */
    --border-light: #E5E7EB;
    --border-default: #D1D5DB;
}

body {
    font-family: 'Google Sans Flex', sans-serif;
    font-weight: 400;
    background-color: var(--light-gray);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Typography System --- */

/* Headings — Barlow */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Google Sans Flex', sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--graphite);
}
h1 { font-weight: 700; }
h2 { font-weight: 700; }
h3 { font-weight: 600; }
h4 { font-weight: 600; }
h5 { font-weight: 500; }
h6 { font-weight: 500; }

/* Technical / Mono — IBM Plex Mono (SKU, OEM, Specs) */
.font-mono,
.product-sku,
.spec-value,
.oem-code,
.part-number {
    font-family: 'Google Sans Flex', monospace;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Custom Primary Button overriding Bootstrap */
.btn-primary {
    font-family: 'Google Sans Flex', sans-serif;
    font-weight: 600;
    background-color: var(--steel-blue);
    border-color: var(--steel-blue);
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--steel-blue-dark);
    border-color: var(--steel-blue-dark);
    box-shadow: 0 4px 16px rgba(var(--bs-primary-rgb), 0.35);
    transform: translateY(-2px);
}
.btn-outline-primary {
    font-family: 'Google Sans Flex', sans-serif;
    font-weight: 600;
    color: var(--steel-blue);
    border-color: var(--steel-blue);
    letter-spacing: 0.01em;
}
.btn-outline-primary:hover {
    background-color: var(--steel-blue);
    border-color: var(--steel-blue);
}

.text-primary {
    color: var(--steel-blue) !important;
}
.bg-primary {
    background-color: var(--steel-blue) !important;
}

/* Top Bar */
.top-bar {
    background-color: var(--theme-dark);
    font-size: 0.85rem;
    font-weight: 500;
}
.top-links a:hover {
    color: var(--theme-blue-light) !important;
    transition: color 0.2s ease;
}

/* Header */
.logo-img {
    max-height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.logo-img:hover {
    transform: scale(1.03);
}

/* Search Bar */
.search-container {
    max-width: 600px;
    margin: 0 auto;
}
.search-input {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1.5rem;
    border: 2px solid var(--border-light);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: 1rem;
    color: var(--text-primary);
}
.search-input:focus {
    border-color: var(--theme-blue-light);
    box-shadow: 0 0 0 4px rgba(var(--bs-primary-rgb), 0.15);
}
.search-btn {
    background: transparent;
    border: none;
    color: #64748b;
    padding: 0.75rem 1.25rem;
    transition: color 0.2s ease;
}
.search-input:focus + .search-btn {
    color: var(--theme-blue);
}

/* Navigation */
.navbar-light .navbar-nav .nav-link {
    font-family: 'Google Sans Flex', sans-serif;
    color: var(--deep-navy);
    font-weight: 500;
    padding: 1rem 1.25rem;
    position: relative;
    letter-spacing: 0.01em;
}
.navbar-light .navbar-nav .nav-link:hover, 
.navbar-light .navbar-nav .nav-link.active {
    color: var(--theme-blue);
}

/* Hero Section */
.hero-section {
    background-image: url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 31, 51, 0.95) 0%, rgba(11, 31, 51, 0.75) 50%, rgba(11, 31, 51, 0.3) 100%);
    z-index: 0;
}
.hero-section .container {
    position: relative;
    z-index: 1;
}
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.text-shadow-sm {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.hero-badge {
    box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(var(--bs-primary-rgb), 0); }
    100% { box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0); }
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}
.product-img-wrapper {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    background-color: #f8f9fa;
}
.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img {
    transform: scale(1.08);
}
.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--theme-blue);
    margin-bottom: 0.5rem;
    display: block;
}
.product-title {
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--graphite);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-price {
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--deep-navy);
}
.product-price-regular {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #94a3b8;
    margin-left: 0.5rem;
    font-weight: 500;
}
.product-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}
.btn-cart {
    width: 100%;
    font-family: 'Google Sans Flex', sans-serif;
    font-weight: 600;
    background-color: var(--white);
    color: var(--steel-blue);
    border: 2px solid var(--steel-blue);
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}
.btn-cart:hover {
    background-color: var(--steel-blue);
    color: white;
}
.btn-cart i {
    transition: transform 0.3s ease;
}
.btn-cart:hover i {
    transform: translateX(3px);
}

/* Footer Links */
.footer-links a:hover {
    color: white !important;
    padding-left: 5px;
    transition: all 0.2s ease;
}

/* Smooth fade in for products */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Phase 2: Complex Layout Additions */

.fs-7 { font-size: 0.85rem; }
.fs-8 { font-size: 0.75rem; }
.fw-black { font-weight: 900; }
.tracking-wide { letter-spacing: 0.05em; }

/* Complex Header Elements */
.search-input-complex {
    border: 1px solid #ced4da;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    box-shadow: none;
    border-radius: 4px !important;
}
.search-input-complex:focus {
    border-color: var(--theme-blue);
    box-shadow: 0 0 0 2px rgba(var(--bs-primary-rgb), 0.2);
}
.search-btn-complex {
    background: transparent;
    border: none;
    color: #6c757d;
    height: 100%;
    padding: 0 1.25rem;
}
.search-btn-complex:hover {
    color: var(--theme-blue);
}
.nav-wrapper {
    background-color: var(--white);
    border-color: var(--border-light) !important;
}
.dropdown-menu {
    margin-top: 0;
}
.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--theme-blue);
}

/* Hero Banners */
.hero-complex-section {
    background-color: #fff;
}
.hero-main-banner {
    background-image: linear-gradient(90deg, rgba(11, 31, 51, 0.95) 0%, rgba(11, 31, 51, 0.7) 50%, rgba(11, 31, 51, 0.15) 100%), url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    min-height: 450px;
}
.hero-dots .dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}
.hero-dots .dot.active {
    background-color: var(--theme-blue);
}

.small-promo-banner {
    background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%), url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    min-height: 200px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}
.small-promo-banner:hover {
    transform: translateY(-5px);
}
.hover-underline:hover {
    text-decoration: underline !important;
}

/* Latest Deals */
.tall-promo-banner {
    background-image: linear-gradient(180deg, rgba(11, 31, 51, 0.95) 0%, rgba(11, 31, 51, 0.75) 100%), url('assets/images/promo_left.png');
    background-size: cover;
    background-position: center;
    min-height: 500px;
}
.hover-primary:hover {
    color: var(--theme-blue) !important;
}

/* Promo Cards */
.promo-card-half {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promo-card-half:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.transition {
    transition: all 0.2s ease;
}

/* Info Banners */
.info-banner {
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.info-banner:hover {
    border-color: #e2e8f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

/* Modern Footer */
.footer-links-modern li {
    margin-bottom: 0.75rem;
}
.footer-links-modern a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}
.footer-links-modern a:hover {
    color: var(--theme-blue);
}

/* Footer Social Icons */
.footer-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fff;
}
.footer-social-icon[aria-label="Facebook"] {
    background: #1877f2;
}
.footer-social-icon[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.footer-social-icon[aria-label="YouTube"] {
    background: #ff0000;
}
.footer-social-icon[aria-label="X"] {
    background: #000000;
}
.footer-social-icon:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* Enhanced Banners */
.ad-section-enhanced {
    overflow: hidden;
    background-attachment: fixed; /* Parallax effect */
}

.glow-badge {
    box-shadow: 0 0 15px rgba(var(--bs-primary-rgb), 0.6);
    letter-spacing: 1px;
}
.hover-scale {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hover-scale:hover {
    transform: scale(1.05);
}

/* --- Mega Menu --- */
.mega-menu-nav { position: static !important; }
.mega-menu-wrapper { position: static !important; }
.mega-menu {
    width: 100%;
    max-width: 1140px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 0;
    margin-top: 0;
    min-height: 400px;
    border-top: 2px solid var(--theme-blue) !important;
}
.mega-menu-inner { display: flex; min-height: 450px; }
.mega-menu-sidebar {
    width: 250px;
    flex-shrink: 0;
    border-right: 1px solid #e9ecef;
    background: #fff;
    padding: 10px 0;
}
.mega-menu-sidebar li {
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mega-menu-sidebar li:hover, .mega-menu-sidebar li.active {
    background: #f8f9fa;
    color: var(--theme-blue);
    border-left-color: var(--theme-blue);
}
.mega-menu-sidebar li i { font-size: 0.7rem; color: #ccc; }
.mega-menu-sidebar li:hover i, .mega-menu-sidebar li.active i { color: var(--theme-blue); }
.mega-menu-content { flex-grow: 1; background: #fff; padding: 30px; position: relative; }
.mega-pane { display: none; animation: fadeIn 0.3s; }
.mega-pane.active { display: block; }
.mega-col h6 {
    font-size: 0.85rem; font-weight: 900; text-transform: uppercase;
    margin-bottom: 15px; letter-spacing: 0.05em; color: #000;
}
.mega-col ul { list-style: none; padding: 0; margin-bottom: 25px; }
.mega-col li a {
    color: #666; text-decoration: none; font-size: 0.85rem;
    line-height: 2.2; transition: color 0.2s;
}
.mega-col li a:hover { color: var(--theme-blue); }
.mega-promo {
    border: 1px solid #e9ecef; padding: 20px; text-align: center; border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); transition: all 0.3s ease;
}
.mega-promo:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08); transform: translateY(-2px);
}
.mega-promo img { max-width: 100%; height: auto; margin-bottom: 15px; border-radius: 4px; }
.mega-promo h4 { color: var(--theme-blue); font-weight: 800; margin-bottom: 10px; }
.mega-promo p { font-size: 0.85rem; color: #666; margin-bottom: 15px; }

.mega-promo-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: block;
    cursor: pointer;
}
.mega-promo-img:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}
.mega-promo-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* YMMP Search Bar */
.ymmp-search-form .ymmp-select-wrapper {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 4px 12px;
    height: 48px;
}
.ymmp-search-form .ymmp-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: #e9ecef;
    color: #495057;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    margin-right: 8px;
    flex-shrink: 0;
}
.ymmp-search-form .ymmp-select {
    border: none;
    box-shadow: none;
    padding: 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    cursor: pointer;
    background-color: transparent;
    height: auto;
}
.ymmp-search-form .ymmp-select:focus {
    box-shadow: none;
    outline: none;
}
.ymmp-search-form .ymmp-submit {
    font-family: 'Google Sans Flex', sans-serif;
    background-color: var(--steel-blue);
    border-color: var(--steel-blue);
    border-radius: 4px;
    transition: background-color 0.2s;
    height: 48px;
    padding: 0 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.ymmp-search-form .ymmp-submit:hover {
    background-color: var(--steel-blue-dark);
    border-color: var(--steel-blue-dark);
}

/* ============================================
   HERO CAROUSEL SECTION
   ============================================ */

.hero-carousel-section {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
}
@media (max-width: 768px) {
    .hero-carousel-section { min-height: auto; padding: 3rem 0; }
}

/* Background Slides */
.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
}

/* Dark Overlay */
.hero-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Light centered overlay — keeps text readable while letting vibrant backgrounds shine */
    background: radial-gradient(ellipse at center, rgba(11, 31, 51, 0.45) 0%, rgba(11, 31, 51, 0.15) 100%);
    z-index: 2;
}

.hero-carousel-content {
    padding: 3rem 0 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}
.hero-tag-badge {
    display: inline-block;
    font-family: 'Google Sans Flex', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #FFFFFF;
    background: var(--steel-blue);
    border: none;
    padding: 0.45rem 1.4rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}
.hero-carousel-title {
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8);
}
.text-gradient-blue {
    background: linear-gradient(90deg, #93c5fd 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.9));
}
@media (max-width: 1200px) {
    .hero-carousel-title { font-size: 3.0rem; }
}
@media (max-width: 991px) {
    .hero-carousel-title { font-size: 2.5rem; }
}
@media (max-width: 768px) {
    .hero-carousel-title { font-size: 1.8rem; }
}
@media (max-width: 576px) {
    .hero-carousel-title { font-size: 1.6rem; }
}
.hero-title-accent {
    color: var(--steel-blue-light);
}
.hero-carousel-subtitle {
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

/* Hero Vehicle Finder — Solid Dark Pattern Layout */
.hero-finder-widget {
    background: #2b2b2b;
    border-radius: 10px;
    border-top: 4px solid #3b82f6;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.hero-finder-header {
    background: transparent;
    padding: 30px 30px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Google Sans Flex', sans-serif;
}
.hero-finder-header i {
    color: #ffffff;
    font-size: 22px;
}
.hero-finder-body {
    padding: 10px 30px 40px;
}
.hero-finder-dropdown {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #f1f5f9;
    background: #3a3a3a;
    border: 1px solid #555555;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: auto;
    font-family: 'Google Sans Flex', sans-serif;
    margin-bottom: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.hero-finder-dropdown option {
    background: #3a3a3a;
    color: #fff;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hero-finder-dropdown:focus {
    border-color: #3b82f6;
    background: #444444;
}
.hero-finder-dropdown:disabled {
    background: #2c2c2c;
    color: #888888;
    border-color: #404040;
    cursor: not-allowed;
}
.hero-finder-search-btn {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    background: #2563EB;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Google Sans Flex', sans-serif;
    margin-top: 8px;
}
.hero-finder-search-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.4);
}


.hero-discover-btn {
    font-family: 'Google Sans Flex', sans-serif;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}
.hero-discover-btn:hover {
    background-color: var(--steel-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
@media (max-width: 576px) {
    .hero-stats { gap: 1.2rem; }
}
.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}
.hero-stat-item i {
    font-size: 1.4rem;
    color: var(--steel-blue-light);
}
.hero-stat-item strong {
    display: block;
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
}
.hero-stat-item span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.03em;
}

/* Carousel Dots */
.hero-carousel-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 4;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-dot.active {
    background: var(--steel-blue);
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

/* ============================================
   ENHANCED PRODUCT SECTIONS
   ============================================ */

/* Section wrapper — clean white bg, no gray bleed */
.products-section-clean {
    background-color: #FFFFFF;
    padding: 2rem 0;
}

/* Section header — clean, no underline */
.section-header-clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0;
    border-bottom: none;
}
.section-header-clean h3 {
    font-family: 'Google Sans Flex', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--graphite);
    margin-bottom: 0;
}
.section-header-clean .nav-arrows {
    display: flex;
    gap: 0.5rem;
}
.section-header-clean .nav-arrow-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--steel-blue);
    background: transparent;
    color: var(--steel-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 10px;
    transition: all 0.25s ease;
    cursor: pointer;
}
.section-header-clean .nav-arrow-btn:hover {
    background: var(--steel-blue);
    color: #fff;
}

/* Enhanced Swiper product cards */
.swiper-slide .product-card-clean {
    background: #FFFFFF;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}
.swiper-slide .product-card-clean:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.product-card-clean .card-img-area {
    background: #f8f9fb;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 210px;
    border-radius: 8px 8px 0 0;
}
.product-card-clean .card-img-area img {
    max-height: 180px;
    width: 100%;
    object-fit: contain;
}
.product-card-clean .card-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0 16px;
}
.product-card-clean .card-details {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-card-clean .card-product-name {
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--graphite);
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-card-clean .card-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #f59e0b;
}
.product-card-clean .card-stars .star-empty {
    color: #d1d5db;
}
.product-card-clean .card-price {
    font-family: 'Google Sans Flex', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--graphite);
    margin-bottom: 12px;
    margin-top: auto;
}
.product-card-clean .card-price .price-original {
    font-size: 13px;
    font-weight: 400;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 8px;
}
.product-card-clean .btn-add-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--graphite);
    background: transparent;
    border: 1.5px solid #d1d5db;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    width: fit-content;
}
.product-card-clean .btn-add-cart:hover {
    border-color: var(--steel-blue);
    color: var(--steel-blue);
    background: rgba(37, 99, 235, 0.04);
}
.product-card-clean .btn-add-cart i {
    font-size: 13px;
}

/* Z-index utility */
.z-3 { z-index: 3; }

/* Mobile adjustments for product images */
@media (max-width: 768px) {
    .product-img,
    .product-card-clean .card-img-area img,
    .pdp-related-card img {
        object-fit: cover !important;
    }
}

/* Utilities */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

/* Mobile Navigation Drawer */
@media (max-width: 991.98px) {
    .nav-wrapper {
        display: none !important;
    }
    .mobile-footer-pad {
        padding-bottom: 80px !important;
    }
}
#mobileNavDrawer .nav-link {
    transition: background-color 0.2s ease, color 0.2s ease;
}
#mobileNavDrawer .nav-link:hover {
    background-color: #f0f4ff;
}

/* ===== Mobile Bottom Navigation Bar ===== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 6px 0 env(safe-area-inset-bottom, 6px);
    z-index: 1050;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
}
.mobile-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    padding: 6px 12px;
    border: none;
    background: none;
    cursor: pointer;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.mobile-bottom-nav-item i {
    font-size: 18px;
    margin-bottom: 1px;
}
.mobile-bottom-nav-item:hover,
.mobile-bottom-nav-item.active {
    color: #2563EB;
}
.mobile-bottom-nav-item.active i {
    color: #2563EB;
}

/* ===== Mobile Search Overlay ===== */
.mobile-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1070;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.mobile-search-overlay.show {
    opacity: 1;
    visibility: visible;
}
.mobile-search-overlay-content {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    width: 92%;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transform: translateY(-20px);
    transition: transform 0.25s ease;
}
.mobile-search-overlay.show .mobile-search-overlay-content {
    transform: translateY(0);
}

/* ===== Mobile Categories Panel ===== */
.mobile-categories-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1055;
    display: none;
}
.mobile-categories-backdrop.show {
    display: block;
}
.mobile-categories-panel {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1060;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
    max-height: 70vh;
    overflow-y: auto;
    transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-categories-panel.show {
    bottom: 0;
}
.mobile-categories-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mobile-cat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #f3f4f6;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.mobile-cat-item:hover {
    background: #f0f4ff;
    border-color: #dbeafe;
    color: #2563EB;
}
.mobile-cat-item i:first-child {
    width: 22px;
    text-align: center;
    font-size: 15px;
}

/* ============================================
   Search Suggestions Dropdown (Amazon-style)
   ============================================ */
.search-suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    z-index: 9999;
    max-height: 480px;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    animation: suggestionsSlideIn 0.15s ease-out;
    scrollbar-width: thin;
    scrollbar-color: #d1d5db #f9fafb;
}

.search-suggestions-dropdown::-webkit-scrollbar { width: 6px; }
.search-suggestions-dropdown::-webkit-scrollbar-track { background: #f9fafb; border-radius: 0 0 8px 0; }
.search-suggestions-dropdown::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }
.search-suggestions-dropdown::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

.search-suggestions-dropdown.show {
    display: block;
}

@keyframes suggestionsSlideIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Section Header (e.g. "Products", "Categories") */
.search-suggest-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #94a3b8;
    border-bottom: 1px solid #f1f5f9;
}
.search-suggest-header i {
    font-size: 11px;
    color: #cbd5e1;
}

/* Individual Suggestion Item */
.search-suggest-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: background 0.12s ease;
    border-bottom: 1px solid #f8fafc;
}
.search-suggest-item:last-child { border-bottom: none; }
.search-suggest-item:hover,
.search-suggest-item.active {
    background: #f0f5ff;
}
.search-suggest-item:hover .suggest-name,
.search-suggest-item.active .suggest-name {
    color: #2563eb;
}

/* Thumbnail */
.suggest-thumb {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 6px;
    border: 1px solid #f1f5f9;
    object-fit: contain;
    background: #fff;
    padding: 3px;
}

/* Text Content */
.suggest-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.suggest-name {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.35;
    transition: color 0.12s ease;
}
.suggest-name .highlight {
    background: #dbeafe;
    color: #1d4ed8;
    border-radius: 2px;
    padding: 0 1px;
    font-weight: 700;
}
.suggest-meta {
    font-size: 11px;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 6px;
}
.suggest-meta .suggest-brand {
    font-weight: 600;
    color: #64748b;
}
.suggest-meta .suggest-dot {
    color: #d1d5db;
}

/* Price badge on the right */
.suggest-price {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    text-align: right;
}
.suggest-price .suggest-price-call {
    font-size: 11px;
    font-weight: 600;
    color: #2563eb;
}

/* Arrow icon on the right */
.suggest-arrow {
    color: #d1d5db;
    font-size: 10px;
    transition: color 0.12s, transform 0.12s;
    margin-left: 4px;
}
.search-suggest-item:hover .suggest-arrow,
.search-suggest-item.active .suggest-arrow {
    color: #2563eb;
    transform: translateX(2px);
}

/* "View All Results" footer */
.search-suggest-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    cursor: pointer;
    text-decoration: none;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 0 0 8px 8px;
    transition: background 0.12s, color 0.12s;
}
.search-suggest-footer:hover {
    background: #eef2ff;
    color: #1d4ed8;
}
.search-suggest-footer i {
    font-size: 11px;
    transition: transform 0.15s;
}
.search-suggest-footer:hover i {
    transform: translateX(3px);
}

/* No results state */
.search-suggest-empty {
    padding: 28px 16px;
    text-align: center;
    color: #94a3b8;
}
.search-suggest-empty i {
    font-size: 28px;
    color: #d1d5db;
    margin-bottom: 10px;
    display: block;
}
.search-suggest-empty .empty-title {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 4px;
}
.search-suggest-empty .empty-sub {
    font-size: 12px;
    color: #94a3b8;
}

/* Loading state */
.search-suggest-loading {
    padding: 24px 16px;
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
}
.search-suggest-loading .spinner-border {
    width: 20px;
    height: 20px;
    border-width: 2px;
    margin-right: 8px;
}
header.scrolled .logo-img {
    max-height: 40px !important;
    transition: max-height 0.3s ease-in-out;
}
header:not(.scrolled) .logo-img {
    transition: max-height 0.3s ease-in-out;
}
header.scrolled .top-header-row {
    display: none !important;
}

/* ============================================
   EXTRACTED INLINE STYLES — Shared / Header / Footer
   ============================================ */

/* --- Mobile Sticky Header (was embedded <style> in header.php) --- */
@media (max-width: 991.98px) {
    .mobile-sticky-header {
        position: sticky;
        top: 0;
        z-index: 1040 !important;
    }
}

/* --- Header --- */
.site-header {
    background-color: #FFFFFF;
    z-index: 1020;
}
.mobile-call-banner {
    font-size: 15px;
}
.header-logo-img {
    max-height: 75px;
}
.hamburger-btn {
    color: #000;
    box-shadow: none;
}
.header-search-group {
    background: #F8F9FA;
    border-radius: 4px;
    border: 1px solid #E9ECEF;
}
.header-search-input {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
}
.header-search-btn {
    color: #6C757D;
    padding-right: 1.2rem;
}
.header-phone-number {
    font-family: 'Google Sans Flex', sans-serif;
    font-weight: 500;
}
.header-us-flag {
    width: 70px;
    height: 38px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.nav-wrapper {
    background-color: #FFFFFF;
    z-index: 1030;
}
.navbar-nav .nav-item .nav-link {
    font-weight: 600 !important;
    letter-spacing: 0.5px;
}
.shop-dept-link {
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 0.9rem;
}
.shop-dept-svg {
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}
.mega-menu-dropdown {
    top: 100%;
    margin-top: 15px !important;
}
.promo-img-only {
    max-width: 100%;
    height: auto;
}
.nav-right-info {
    font-size: 13px;
}
.header-phone-link {
    display: none;
}
.nav-free-shipping {
    font-size: 14px;
}

/* --- Mobile Offcanvas Drawer --- */
.mobile-nav-drawer {
    width: 300px;
    z-index: 1060;
}
.mobile-nav-drawer-logo {
    max-height: 50px;
}
.mobile-nav-links {
    font-size: 14px;
}
.mobile-nav-icon {
    width: 20px;
}
.mobile-nav-contact {
    background: #f8f9fa;
}
.mobile-nav-contact-text {
    font-size: 13px;
}

/* --- Page Header Banner (shared across shop, about, contact, product, policy pages) --- */
.page-header-banner {
    background-image: url('assets/images/home_darkblue_parts_banner.png');
    background-size: cover;
    background-position: center;
}
.page-header-overlay {
    background: linear-gradient(rgba(5, 15, 36, 0.5), rgba(2, 6, 23, 0.85));
}
.breadcrumb-link {
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}
.breadcrumb-active {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}
.page-header-title {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
    letter-spacing: -0.5px;
}

/* --- Footer --- */
.footer-section-heading {
    font-size: 0.85rem;
}
.footer-phone-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
}
.footer-phone-label {
    font-size: 12px;
}
.footer-phone-text {
    font-size: 15px;
}
.footer-email-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
}
.footer-email-text {
    font-size: 14px;
}
.footer-schedule-row {
    font-size: 13px;
}
.footer-schedule-label {
    min-width: 110px;
}
.footer-social-icon {
    width: 38px;
    height: 38px;
}
.footer-social-icon:hover {
    transform: translateY(-3px) scale(1.08);
}
.footer-newsletter-input {
    border-radius: 6px 0 0 6px;
    border: 1px solid #dee2e6;
    padding: 12px 16px;
    font-size: 14px;
}
.footer-newsletter-input:focus {
    border-color: #2563EB;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.footer-newsletter-btn {
    border-radius: 0 6px 6px 0;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
}
.footer-trust-badge {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(37,99,235,0.08);
}
.footer-trust-title {
    font-size: 13px;
}
.footer-trust-desc {
    font-size: 12px;
    line-height: 1.3;
}
.footer-bottom-bar {
    background-color: #0B1F33;
    font-size: 13px;
}
.footer-payment-icon {
    height: 28px;
    opacity: 0.8;
}
.footer-payment-icon:hover {
    opacity: 1;
}
.footer-cta-banner {
    background: linear-gradient(135deg, #1e40af 0%, #2563EB 100%);
    border-radius: 12px;
}
.footer-cta-title {
    font-size: 1.5rem;
}
.footer-cta-subtitle {
    font-size: 0.95rem;
}
.footer-cta-btn {
    font-size: 15px;
}

/* --- Loading Spinner (shared) --- */
.loading-spinner-lg {
    width: 3rem;
    height: 3rem;
}

/* --- Shared utility: section bg light --- */
.section-bg-light {
    background-color: #f8f9fa;
}
.section-bg-blue-light {
    background-color: #f4f9ff;
}

/* --- Shared: filter overlay title --- */
.filter-overlay-title {
    margin-top: 5px;
}

/* --- Footer embedded <style> blocks --- */
.footer-links-modern li a {
    color: #4B5563;
    text-decoration: none;
    font-size: 13px;
    display: block;
    padding: 4px 0;
    transition: color 0.15s, padding-left 0.15s;
}
.footer-links-modern li a:hover {
    color: #2563EB;
    padding-left: 6px;
}
.mobile-footer-pad {
    padding-bottom: 0;
}
@media (max-width: 767.98px) {
    .mobile-footer-pad {
        padding-bottom: 70px;
    }
}

/* --- Sticky Call Button (was embedded in footer.php) --- */
.sticky-call-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1050;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #2563EB;
    color: #fff;
    border-radius: 50px;
    padding: 12px 22px 12px 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(37,99,235,0.4);
    transition: all 0.3s ease;
    animation: callPulse 2.5s infinite;
}
.sticky-call-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37,99,235,0.5);
    color: #fff;
}
.sticky-call-btn i {
    font-size: 20px;
    animation: phoneRing 1.5s ease infinite;
}
@keyframes callPulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(37,99,235,0.4); }
    50% { box-shadow: 0 8px 25px rgba(37,99,235,0.7), 0 0 0 8px rgba(37,99,235,0.1); }
}
@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-5deg); }
    50% { transform: rotate(0deg); }
}

/* --- Policy pages shared --- */
.policy-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}
.policy-content li {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   EXTRACTED — Footer Inline Styles & Embedded Blocks
   ============================================ */

/* --- Footer top section --- */
.footer-bg { background-color: #f2f3f5; }
.footer-logo { max-height: 120px; }
.footer-support-label { font-weight: 700; }

/* --- Payment icons row --- */
.footer-cc-mastercard { color: #ff5f00; font-size: 34px; }
.footer-cc-paypal { color: #00457C; font-size: 34px; }
.footer-cc-visa { color: #1434CB; font-size: 34px; }
.footer-cc-amex { color: #016fd0; font-size: 34px; }
.footer-western-union {
    width: 44px; height: 28px; background: #000; color: #ffcc00;
    font-size: 6px; font-weight: 800; font-family: 'Google Sans Flex', sans-serif;
    line-height: 1.1; margin-top: 2px;
}
.footer-zelle {
    width: 44px; height: 28px; background: #741bde; color: #fff;
    font-size: 11px; font-weight: bold; font-family: 'Google Sans Flex', sans-serif;
    margin-top: 2px;
}

/* --- Mobile Search Overlay --- */
.mobile-search-border { border: 2px solid #2563EB; border-radius: 8px; overflow: hidden; }
.mobile-search-input-fs { font-size: 15px; }
.mobile-search-tag { font-size: 12px; }

/* --- Mobile Categories Chevron --- */
.mobile-cat-chevron { font-size: 10px; color: #ccc; }
.mobile-cat-item-viewall { background: #EFF6FF; border-color: #2563EB; }
.mobile-cat-chevron-primary { font-size: 10px; color: #2563EB; }

/* --- Call Popup Modal --- */
.call-modal-content {
    background-color: #f8f9fa; border: none;
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.call-modal-header {
    background-color: #111; color: white;
    border-bottom: 4px solid #1d4ed8; padding: 1.5rem;
}
.call-modal-icon-circle {
    width: 60px; height: 60px;
    background-color: #1d4ed8; flex-shrink: 0;
}
.call-modal-title {
    font-weight: 900; letter-spacing: -0.5px;
    font-size: 28px; line-height: 1;
}
.call-modal-subtitle {
    color: #E65C00; font-weight: 700;
    letter-spacing: 0.5px; font-size: 16px;
}
.call-modal-body-bg {
    background-image: url('data:image/svg+xml,%3Csvg width=\'20\' height=\'20\' viewBox=\'0 0 20 20\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cg fill=\'%23000000\' fill-opacity=\'0.02\' fill-rule=\'evenodd\'%3E%3Ccircle cx=\'3\' cy=\'3\' r=\'3\'/%3E%3Ccircle cx=\'13\' cy=\'13\' r=\'3\'/%3E%3C/g%3E%3C/svg%3E');
}
.call-modal-feature-circle {
    width: 50px; height: 50px; border: 2px solid #ccc;
}
.call-modal-feature-icon-blue { color: #1d4ed8; }
.call-modal-feature-icon-dark { color: #111; }
.call-modal-feature-label {
    font-size: 12px; line-height: 1.2;
}
.call-modal-divider { height: 2px; }
.call-modal-divider-text { letter-spacing: 0.5px; }
.call-modal-cta-btn {
    background-color: #E65C00; font-size: 38px; line-height: 1;
    max-width: 100%;
    box-shadow: 0 6px 0 #cc5200, 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.2s;
}
.call-modal-arrow { color: #E65C00; transform: rotate(35deg); }
.call-modal-footer {
    background-color: #111; border-top: none;
}
.call-modal-trusted { color: #E65C00; }
.icon-flip { transform: rotateY(180deg); }

/* --- Custom Select Wrapper (Hero Finder) --- */
.custom-select-wrapper { position: relative; user-select: none; width: 100%; margin-bottom: 16px; font-family: 'Google Sans Flex', sans-serif; }
.custom-select-trigger {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px; font-size: 14px; font-weight: 500; color: #f1f5f9; background: #3a3a3a;
    border: 1px solid #555555; border-radius: 6px; cursor: pointer; transition: all 0.2s ease;
}
.custom-select-trigger:hover { border-color: #3b82f6; }
.custom-select-trigger.disabled { background: #2c2c2c; color: #888888; border-color: #404040; cursor: not-allowed; }
.custom-select-trigger span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.custom-select-trigger .select-chevron { font-size: 12px; color: #888; }
.custom-select-options {
    position: absolute; display: block; top: calc(100% + 4px); left: 0; right: 0;
    background: #3a3a3a; border: 1px solid #555555; border-radius: 6px; z-index: 1050;
    max-height: 220px; overflow-y: auto; opacity: 0; visibility: hidden; pointer-events: none;
    transition: all 0.2s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.custom-select-wrapper.open .custom-select-options { opacity: 1; visibility: visible; pointer-events: all; }
.custom-select-option {
    padding: 10px 16px; font-size: 14px; color: #fff; cursor: pointer; transition: background 0.15s;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.custom-select-option:hover { background-color: #3b82f6; }
.custom-select-option.selected { background-color: #2563EB; font-weight: bold; }
.custom-select-options::-webkit-scrollbar { width: 6px; }
.custom-select-options::-webkit-scrollbar-track { background: #2c2c2c; border-radius: 6px; }
.custom-select-options::-webkit-scrollbar-thumb { background: #555555; border-radius: 6px; }
.custom-select-options::-webkit-scrollbar-thumb:hover { background: #777777; }

/* --- Floating Call Button --- */
.floating-call-btn {
    position: fixed; bottom: 30px; left: 30px;
    background: linear-gradient(135deg, #1d4ed8, #0a369d);
    color: white !important; padding: 8px 20px 8px 8px;
    border-radius: 50px; display: flex; align-items: center; gap: 15px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(29, 78, 216, 0.4);
    z-index: 9999; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255,255,255,0.2);
}
.floating-call-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(29, 78, 216, 0.6);
    border-color: rgba(255,255,255,0.5);
}
.floating-call-icon {
    background-color: white; color: #1d4ed8;
    width: 45px; height: 45px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 0 0 rgba(29, 78, 216, 0.7);
    animation: pulse-blue 2s infinite;
}
@keyframes pulse-blue {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(29, 78, 216, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(29, 78, 216, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(29, 78, 216, 0); }
}
.floating-call-text { display: flex; flex-direction: column; justify-content: center; }
.floating-call-label {
    font-size: 0.65rem; text-transform: uppercase; font-weight: 700;
    letter-spacing: 1px; opacity: 0.9; line-height: 1; margin-bottom: 2px; color: #e2e8f0;
}
.floating-call-number { font-size: 1.15rem; font-weight: 900; line-height: 1; letter-spacing: 0.5px; color: white; }
@media (max-width: 991px) {
    .floating-call-btn { bottom: 85px; left: 15px; right: auto; margin: 0; width: max-content; padding: 6px 16px 6px 6px; gap: 10px; }
    .floating-call-icon { width: 36px; height: 36px; font-size: 1rem; }
    .floating-call-number { font-size: 0.95rem; }
    .floating-call-label { font-size: 0.55rem; }
}

/* --- Right Parts Popup Modal (disabled) --- */
.rp-modal-dialog { max-width: 520px; }
.rp-modal-content { border: none; border-radius: 16px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
.rp-modal-header {
    background: linear-gradient(135deg, #1d4ed8, #2563eb); color: white;
    padding: 35px 25px 25px; border-bottom: 5px solid #14a4f5;
}
.rp-modal-close { opacity: 0.8; }
.rp-modal-icon-circle {
    width: 70px; height: 70px;
    background-color: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
}
.rp-modal-search-icon { font-size: 30px; }
.rp-modal-title { font-size: 26px; letter-spacing: -0.5px; }
.rp-modal-subtitle { font-size: 15px; font-weight: 400; opacity: 0.95; line-height: 1.5; max-width: 90%; }
.rp-feature-card { background-color: #f8f9fa; border-left: 3px solid #1d4ed8; }
.rp-feature-icon { color: #1d4ed8; }
.rp-feature-label { font-size: 11px; line-height: 1.2; }
.rp-specialist-badge {
    font-size: 11px; background-color: #fff3cd; color: #856404;
    border: 1px solid #ffeeba; letter-spacing: 1px;
}
.rp-cta-btn {
    background-color: #14a4f5; font-size: 32px;
    box-shadow: 0 8px 20px rgba(20, 164, 245, 0.3);
    border: none; letter-spacing: -0.5px;
}
.rp-cta-icon { font-size: 26px; }

/* ===== Shared Utility Classes (Cross-Page) ===== */
.section-bg-light { background-color: #f8f9fa; }
.section-bg-blue-light { background-color: #f4f9ff; }
.filter-overlay-title { margin-top: 5px; }
.loading-spinner-lg { width: 3rem; height: 3rem; }

/* ============================================
   LUXURY CREATIVE PROMO POPUP MODAL
   ============================================ */
.promo-luxury-dialog {
    max-width: 760px;
}
.promo-luxury-content {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.18);
    color: #0f172a;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.promo-luxury-img-col {
    background: #f8fafc url('assets/images/popup_car_light_showroom.png') no-repeat center center;
    background-size: cover;
    min-height: 380px;
}
.promo-luxury-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 60%, rgba(255, 255, 255, 0.95) 100%);
}
.promo-luxury-right {
    padding: 2.2rem 2rem 2rem 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* Micro Live Pulse Tag */
.promo-luxury-pill-tag {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 5px 14px;
    border-radius: 50px;
}
.promo-luxury-pill-tag .pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #2563eb;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.6);
    animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}
.promo-luxury-pill-tag .tag-text {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #1d4ed8;
}

/* Main Title */
.promo-luxury-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -0.4px;
}

/* Feature Light Luxury Cards */
.promo-luxury-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.promo-luxury-card:hover {
    background: #f8fafc;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.1);
}

.promo-luxury-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.promo-luxury-icon-wrap.icon-cyan {
    background: #e0f2fe;
    color: #0284c7;
}
.promo-luxury-icon-wrap.icon-gold {
    background: #fef3c7;
    color: #d97706;
}
.promo-luxury-icon-wrap.icon-blue {
    background: #dbeafe;
    color: #2563eb;
}

.promo-luxury-card-info {
    display: flex;
    flex-direction: column;
}
.promo-luxury-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.2px;
}
.promo-luxury-card-sub {
    font-size: 0.76rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 1px;
}

/* Bright Electric CTA Button */
.promo-luxury-btn-electric {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    color: #ffffff !important;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.promo-luxury-btn-electric:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}
.promo-luxury-btn-icon-pulse {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.promo-btn-sub {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.9px;
    color: rgba(255, 255, 255, 0.9);
}
.promo-btn-main {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1.1;
    color: #ffffff;
}
.promo-btn-arrow {
    font-size: 1.1rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}
.promo-luxury-btn-electric:hover .promo-btn-arrow {
    transform: translateX(4px);
}

@media (max-width: 767.98px) {
    .promo-luxury-dialog {
        max-width: 92%;
        margin: 1rem auto;
    }
    .promo-luxury-content {
        border-radius: 14px;
    }
    .promo-luxury-img-col {
        min-height: 180px;
    }
    .promo-luxury-img-overlay {
        background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.95) 100%);
    }
    .promo-luxury-right {
        padding: 1.2rem 1rem 1.5rem;
    }
    .promo-luxury-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem !important;
    }
    .promo-luxury-card {
        padding: 10px 12px;
        gap: 10px;
    }
    .promo-luxury-icon-wrap {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
    .promo-luxury-card-title {
        font-size: 0.85rem;
    }
    .promo-luxury-card-sub {
        font-size: 0.7rem;
    }
    .promo-luxury-btn-electric {
        padding: 12px 16px;
        border-radius: 10px;
        margin-bottom: 0;
    }
    .promo-btn-main {
        font-size: 1.1rem;
    }
    .promo-btn-sub {
        font-size: 0.62rem;
    }
    .promo-luxury-btn-icon-pulse {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

/* ============================================
   VIN NOT FOUND - CALL SPECIALIST POPUP MODAL
   ============================================ */
.vin-nf-dialog {
    max-width: 480px;
}
.vin-nf-content {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px -12px rgba(15, 23, 42, 0.25);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Top animated gradient accent bar */
.vin-nf-accent-bar {
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #38bdf8, #2563eb);
    background-size: 200% 100%;
    animation: vinAccentShimmer 3s ease-in-out infinite;
}
@keyframes vinAccentShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.vin-nf-body {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
}

/* Animated VIN icon with pulse ring */
.vin-nf-icon-ring {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vin-nf-icon-inner {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #bfdbfe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    color: #2563eb;
    position: relative;
    z-index: 2;
    animation: vinIconBounce 2.5s ease-in-out infinite;
}
@keyframes vinIconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
.vin-nf-icon-pulse-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.2);
    animation: vinPulseRing 2s ease-out infinite;
}
@keyframes vinPulseRing {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1.35); opacity: 0; }
}

/* Title */
.vin-nf-title {
    font-size: 1.65rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.4px;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

/* Subtitle */
.vin-nf-subtitle {
    font-size: 0.92rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust badges row */
.vin-nf-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}
.vin-nf-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
    transition: all 0.25s ease;
}
.vin-nf-badge i {
    color: #2563eb;
    font-size: 0.8rem;
}
.vin-nf-badge:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
    transform: translateY(-1px);
}

/* CTA Call Button */
.vin-nf-call-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    border-radius: 14px;
    padding: 16px 24px;
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}
.vin-nf-call-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    animation: vinBtnShine 3s ease-in-out infinite;
}
@keyframes vinBtnShine {
    0% { transform: translateX(-100%); }
    60% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}
.vin-nf-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}
.vin-nf-call-btn-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.vin-nf-call-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.vin-nf-call-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}
.vin-nf-call-number {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #ffffff;
    line-height: 1.15;
}

/* Availability indicator */
.vin-nf-availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
}
.vin-nf-live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: vinLivePulse 1.8s infinite;
    flex-shrink: 0;
}
@keyframes vinLivePulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* VIN Modal Responsive */
@media (max-width: 575.98px) {
    .vin-nf-dialog {
        max-width: 95%;
        margin: 1rem auto;
    }
    .vin-nf-body {
        padding: 2rem 1.25rem 1.5rem;
    }
    .vin-nf-title {
        font-size: 1.4rem;
    }
    .vin-nf-badges {
        flex-wrap: wrap;
        gap: 8px;
    }
    .vin-nf-badge {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    .vin-nf-call-number {
        font-size: 1.15rem;
    }
}
