/* ===========================================
   SUNSHINE AUTOS — Design System
   Orange / Amber / Yellow warm theme
   =========================================== */

/* ---------- Theme Variables ---------- */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    --card-bg: #ffffff;
    --card-border: #dee2e6;

    --sa-orange: #F97316;
    --sa-amber: #F59E0B;
    --sa-yellow: #FBBF24;
    --sa-warm-50: #FFFBEB;
    --sa-warm-100: #FEF3C7;
    --sa-warm-900: #78350F;
    --sa-dark: #1C1917;
    --sa-dark-800: #292524;
    --sa-dark-700: #44403C;
    --sa-cream: #FAFAF9;
    --sa-success: #22C55E;
    --sa-gradient: linear-gradient(135deg, var(--sa-orange) 0%, var(--sa-amber) 50%, var(--sa-yellow) 100%);
}

[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-tertiary: #404040;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #888888;
    --border-color: #404040;
    --card-bg: #2d2d2d;
    --card-border: #404040;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scrollbar-gutter: stable; }

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    padding-top: 70px;
}

/* ---------- Dark theme overrides ---------- */
[data-theme="dark"] .modal-content {
    background-color: var(--card-bg);
    border-color: var(--card-border);
}

[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
    background-color: var(--bg-secondary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus {
    background-color: var(--bg-secondary);
    border-color: var(--sa-orange);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25);
}

/* ============ NAVBAR ============ */
.sa-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(28, 25, 23, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

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

.sa-nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sa-nav-brand:hover { transform: scale(1.02); }

.sa-nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sa-orange);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

.sa-nav-brand span {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--sa-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sa-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.sa-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sa-orange);
    transition: all 0.3s ease;
}

.sa-navbar .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    flex-grow: 1;
    align-items: center;
    justify-content: space-between;
}

.sa-nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sa-nav-link,
a.sa-nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.sa-nav-link:hover,
a.sa-nav-link:hover {
    color: white;
    background: rgba(249, 115, 22, 0.15);
}

.sa-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--sa-gradient);
    transition: width 0.3s ease;
}

.sa-nav-link:hover::after { width: 60%; }

.sa-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sa-theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sa-theme-toggle:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: var(--sa-orange);
    color: var(--sa-orange);
}

.sa-nav-btn,
a.sa-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sa-nav-btn-primary,
a.sa-nav-btn-primary {
    background: var(--sa-gradient);
    color: var(--sa-dark);
}

.sa-nav-btn-primary:hover,
a.sa-nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    color: var(--sa-dark);
}

/* Light theme navbar */
[data-theme="light"] .sa-navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(249, 115, 22, 0.3);
}

[data-theme="light"] .sa-nav-link,
[data-theme="light"] a.sa-nav-link {
    color: var(--sa-dark);
}

[data-theme="light"] .sa-nav-link:hover,
[data-theme="light"] a.sa-nav-link:hover {
    color: var(--sa-orange);
    background: rgba(249, 115, 22, 0.1);
}

[data-theme="light"] .sa-theme-toggle {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.05);
    color: var(--sa-dark);
}

/* ============ BUTTONS ============ */
.sa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sa-btn-primary {
    background: var(--sa-gradient);
    color: var(--sa-dark);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.sa-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5);
    color: var(--sa-dark);
}

.sa-btn-ghost {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.sa-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--sa-orange);
    color: white;
}

.sa-btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.sa-btn-disabled {
    background: var(--sa-dark-700);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
}

/* ============ HERO ============ */
.sa-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--sa-dark);
}

.sa-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.sa-hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(249, 115, 22, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 50%, rgba(245, 158, 11, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 100% 50%, rgba(251, 191, 36, 0.2) 0%, transparent 40%),
        linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.5) 100%);
}

.sa-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 4rem 2rem 2rem;
}

.sa-hero-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--sa-orange);
    box-shadow: 0 0 60px rgba(249, 115, 22, 0.5);
    transition: all 0.4s ease;
}

.sa-logo-link:hover .sa-hero-logo {
    transform: scale(1.05);
    box-shadow: 0 0 80px rgba(249, 115, 22, 0.7);
}

.sa-hero-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0.5rem auto;
    line-height: 1.5;
}

.sa-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Floating Sponsors */
.sa-floating-sponsors {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 20;
}

.sa-sponsor-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sa-sponsor-badge:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: var(--sa-orange);
    transform: translateY(-2px);
}

.sa-sponsor-badge img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.sa-sponsor-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

/* Hero Title */
.sa-hero-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0.5rem 0 0;
    background: var(--sa-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============ SECTION HEADERS ============ */
.sa-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sa-section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(249, 115, 22, 0.1);
    color: var(--sa-orange);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.sa-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.sa-section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.sa-section-header-left { text-align: left; }

/* ============ RAFFLE ============ */
.sa-raffle {
    position: relative;
    padding: 5rem 0;
    background: var(--sa-dark-800);
    overflow: hidden;
}

.sa-raffle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.sa-raffle-card {
    position: relative;
    background: var(--sa-dark);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.sa-raffle-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--sa-gradient);
    color: var(--sa-dark);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sa-raffle-content {
    display: flex;
    flex-wrap: wrap;
}

.sa-raffle-image {
    position: relative;
    width: 50%;
    min-height: 400px;
    overflow: hidden;
    flex-shrink: 0;
}

.sa-raffle-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sa-raffle-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sa-dark-700);
    color: var(--text-muted);
    font-size: 4rem;
}

.sa-raffle-nav {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    pointer-events: none;
}

.sa-raffle-nav button {
    pointer-events: all;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sa-raffle-nav button:hover {
    background: var(--sa-orange);
    transform: scale(1.1);
}

.sa-raffle-info {
    width: 50%;
    flex-shrink: 0;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sa-raffle-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.sa-raffle-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.sa-raffle-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.sa-stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sa-stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sa-amber);
    margin-bottom: 0.25rem;
}

.sa-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============ SEARCH ============ */
.sa-search-wrapper {
    max-width: 500px;
    margin: 0 auto 3rem;
}

.sa-search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.sa-search-box > i {
    position: absolute;
    left: 1.25rem;
    color: var(--sa-orange);
    font-size: 1.1rem;
}

.sa-search-box input {
    width: 100%;
    padding: 1rem 3rem 1rem 3.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    background: var(--card-bg);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.sa-search-box input:focus {
    outline: none;
    border-color: var(--sa-orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.sa-search-clear {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.2rem;
}

.sa-search-results {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============ INVENTORY ============ */
.sa-inventory {
    padding: 6rem 0;
    background: var(--bg-primary);
}

/* Spotlight (Featured Vehicle) */
.sa-spotlight {
    display: flex;
    flex-wrap: wrap;
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    margin-bottom: 3rem;
    cursor: pointer;
    transition: all 0.4s ease;
}

.sa-spotlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.15);
    border-color: var(--sa-orange);
}

.sa-spotlight-media {
    position: relative;
    width: 55%;
    min-height: 400px;
    overflow: hidden;
    flex-shrink: 0;
}

.sa-spotlight-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sa-spotlight:hover .sa-spotlight-media img { transform: scale(1.05); }

.sa-spotlight-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--sa-gradient);
    color: var(--sa-dark);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sa-spotlight-nav {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sa-spotlight:hover .sa-spotlight-nav { opacity: 1; }

.sa-spotlight-nav button {
    pointer-events: all;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--sa-orange);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.sa-spotlight-nav button:hover { transform: scale(1.1); }

.sa-spotlight-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    color: var(--text-muted);
    font-size: 4rem;
}

.sa-spotlight-details {
    width: 45%;
    flex-shrink: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.sa-spotlight-details h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.sa-spotlight-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.sa-spotlight-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.sa-spec {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sa-spec-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sa-spec-icon.complete {
    background: rgba(34, 197, 94, 0.1);
    color: var(--sa-success);
}

.sa-spec-icon.partial {
    background: rgba(249, 115, 22, 0.1);
    color: var(--sa-orange);
}

.sa-spec-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sa-spec-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.sa-status-available { color: var(--sa-success); }
.sa-status-reserved { color: var(--sa-amber); }
.sa-status-sold { color: var(--text-muted); }

.sa-spotlight-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.sa-spotlight-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--sa-orange);
}

/* ============ VEHICLE CARDS ============ */
.sa-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
}

.sa-vehicle-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.sa-vehicle-card:hover {
    transform: translateY(-4px);
    border-color: var(--sa-orange);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.15);
}

.sa-vehicle-card.highlighted {
    border-color: var(--sa-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.3), 0 20px 50px rgba(249, 115, 22, 0.2);
}

.sa-vehicle-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-secondary);
}

.sa-vehicle-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sa-vehicle-card:hover .sa-vehicle-card-image img { transform: scale(1.05); }

.sa-vehicle-card-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

.sa-vehicle-status {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.sa-vstatus-available { background: rgba(34, 197, 94, 0.9); color: white; }
.sa-vstatus-reserved  { background: rgba(245, 158, 11, 0.9); color: white; }
.sa-vstatus-sold      { background: rgba(100, 100, 100, 0.9); color: white; }

.sa-vehicle-card-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.sa-vehicle-card:hover .sa-vehicle-card-nav { opacity: 1; }

.sa-vehicle-card-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--sa-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sa-vehicle-card-nav button:hover {
    background: var(--sa-orange);
    color: white;
    transform: scale(1.1);
}

.sa-vehicle-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    color: var(--text-muted);
    font-size: 4rem;
}

.sa-vehicle-card-content { padding: 1.5rem; }

.sa-vehicle-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.sa-vehicle-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.sa-vehicle-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.sa-vehicle-tag i {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.sa-vehicle-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sa-orange);
}

/* Empty State */
.sa-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.sa-empty i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

/* ============ ABOUT ============ */
.sa-about {
    padding: 6rem 0;
    background: var(--bg-secondary);
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

.sa-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.sa-feature {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.sa-feature:hover {
    transform: translateY(-4px);
    border-color: var(--sa-amber);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.1);
}

.sa-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--sa-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--sa-dark);
}

.sa-feature h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.sa-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ============ CONTACT ============ */
.sa-contact {
    padding: 6rem 0;
    background: var(--sa-dark);
    color: white;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

.sa-contact .sa-section-label { background: rgba(249, 115, 22, 0.2); }
.sa-contact .sa-section-title { color: white; }
.sa-contact .sa-section-desc  { color: rgba(255, 255, 255, 0.7); }

.sa-contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.sa-contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.sa-contact-card:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--sa-orange);
    transform: translateY(-4px);
}

.sa-contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--sa-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--sa-dark);
    margin: 0 auto 1.25rem;
}

.sa-contact-card-icon-social {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--sa-orange);
}

.sa-contact-card-icon-social img {
    width: 28px;
    height: 28px;
}

.sa-contact-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sa-amber);
    margin-bottom: 0.75rem;
}

.sa-contact-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.sa-hours-card { text-align: left; }
.sa-hours-card h5 { text-align: center; }

.sa-hours-compact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.sa-hour-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.sa-hour-row:last-child { border-bottom: none; }
.sa-hour-row span:first-child { color: rgba(255, 255, 255, 0.7); }
.sa-hour-row span:last-child  { color: var(--sa-amber); font-weight: 600; }

/* ============ MODALS ============ */
.sa-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sa-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sa-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.sa-modal-container {
    position: relative;
    background: var(--card-bg);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--sa-orange);
    box-shadow: 0 30px 80px rgba(249, 115, 22, 0.2);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sa-modal.active .sa-modal-container {
    transform: translateY(0) scale(1);
}

.sa-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sa-modal-close:hover { background: var(--sa-orange); }

/* Wide variant */
.sa-modal-wide { max-width: 1100px; }

/* Split layout */
.sa-modal-split {
    display: flex;
    min-height: 0;
    flex: 1;
    overflow: hidden;
}

/* Gallery (left 55%) */
.sa-modal-gallery {
    width: 55%;
    flex-shrink: 0;
    background: var(--sa-dark);
    position: relative;
    overflow: hidden;
}

.sa-modal-gallery-main {
    width: 100%;
    height: 100%;
}

.sa-modal-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.sa-modal-gallery:hover .sa-modal-gallery-main img { transform: scale(1.03); }

.sa-modal-gallery-main .sa-spotlight-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.sa-modal-gallery-nav {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sa-modal-gallery:hover .sa-modal-gallery-nav { opacity: 1; }

.sa-modal-gallery-nav button {
    pointer-events: all;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.sa-modal-gallery-nav button:hover {
    background: var(--sa-orange);
    transform: scale(1.1);
}

.sa-modal-gallery-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 0.9rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

/* Details (right 45%) */
.sa-modal-details {
    width: 45%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.sa-modal-details-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.sa-modal-status {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.sa-modal-vehicle-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.sa-modal-hero-price {
    font-size: 2.25rem;
    font-weight: 800;
    background: var(--sa-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.sa-modal-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sa-modal-desc:empty { display: none; }

.sa-modal-specs-heading {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.sa-modal-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.sa-modal-spec-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.sa-modal-spec-row:hover {
    background: var(--bg-secondary);
    border-color: var(--sa-orange);
}

.sa-modal-spec-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--sa-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.sa-modal-spec-icon.mod-complete {
    background: rgba(34, 197, 94, 0.1);
    color: var(--sa-success);
}

.sa-modal-spec-icon.mod-partial {
    background: rgba(245, 158, 11, 0.1);
    color: var(--sa-amber);
}

.sa-modal-spec-icon.mod-stock {
    background: var(--bg-secondary);
    color: var(--text-muted);
}

.sa-modal-spec-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.sa-modal-spec-value {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

/* CTA bar */
.sa-modal-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    background: var(--sa-dark);
    border-top: 1px solid rgba(249, 115, 22, 0.25);
    flex-shrink: 0;
    gap: 1rem;
}

.sa-modal-cta-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sa-modal-cta-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sa-orange);
    line-height: 1.1;
}

/* Fullscreen */
.sa-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sa-fullscreen img {
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 8px;
}

.sa-fullscreen-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sa-fullscreen-close:hover { background: var(--sa-orange); }

.sa-fullscreen-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.sa-fullscreen-nav button {
    pointer-events: all;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: var(--sa-orange);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sa-fullscreen-nav button:hover { transform: scale(1.1); }

/* Contact modal — split layout */
.sa-contact-left {
    width: 40%;
    flex-shrink: 0;
    background: var(--sa-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sa-contact-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 80%, rgba(249, 115, 22, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.sa-contact-left-inner {
    position: relative;
    padding: 2.5rem;
    text-align: center;
}

.sa-contact-left-icon {
    width: 64px;
    height: 64px;
    background: var(--sa-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--sa-dark);
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.4);
}

.sa-contact-left-inner h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.75rem;
}

.sa-contact-left-inner > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0 0 2rem;
}

.sa-contact-left-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.sa-contact-left-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.sa-contact-left-row i {
    color: var(--sa-orange);
    font-size: 1rem;
    flex-shrink: 0;
}

.sa-contact-left-row span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 500;
}

/* Right side — form */
.sa-contact-right {
    width: 60%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.sa-contact-right-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.sa-contact-right-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.sa-contact-right-icon {
    width: 48px;
    height: 48px;
    background: var(--sa-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--sa-dark);
    flex-shrink: 0;
}

.sa-contact-right-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.sa-contact-right-header p {
    color: var(--text-secondary);
    margin: 0.15rem 0 0;
    font-size: 0.88rem;
}

.sa-modal-footer {
    background: var(--bg-secondary);
    padding: 1rem 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Purchase modal — split layout */
.sa-purchase-left {
    width: 45%;
    flex-shrink: 0;
    background: var(--sa-dark);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sa-purchase-left-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}

.sa-purchase-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sa-purchase-left-img .sa-spotlight-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.sa-purchase-left-info {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sa-purchase-left-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.5rem;
}

.sa-purchase-left-price {
    font-size: 2rem;
    font-weight: 800;
    background: var(--sa-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.sa-purchase-left-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.sa-purchase-spec-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
}

.sa-purchase-spec-badge i { font-size: 0.8rem; }

.sa-purchase-spec-badge.mod-complete {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--sa-success);
}

.sa-purchase-spec-badge.mod-partial {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
    color: var(--sa-amber);
}

.sa-purchase-left .sa-guarantee {
    margin-top: auto;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Right side — form */
.sa-purchase-right {
    width: 55%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.sa-purchase-right-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.sa-purchase-right-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.sa-purchase-right-icon {
    width: 48px;
    height: 48px;
    background: var(--sa-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--sa-dark);
    flex-shrink: 0;
}

.sa-purchase-right-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.sa-purchase-right-header p {
    color: var(--text-secondary);
    margin: 0.15rem 0 0;
    font-size: 0.88rem;
}

.sa-purchase-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.sa-purchase-cancel-btn {
    color: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.sa-purchase-cancel-btn:hover {
    color: white !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.sa-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
    color: var(--sa-success);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.sa-modal-footer .sa-btn-primary {
    background: var(--sa-gradient);
    color: var(--sa-dark);
    border: none;
}

.sa-modal-footer .sa-btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.sa-modal-footer .sa-btn-ghost:hover {
    border-color: var(--sa-orange);
    color: var(--sa-orange);
}

/* ============ FORMS ============ */
.sa-form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.sa-form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--card-bg);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.sa-form-input:focus {
    outline: none;
    border-color: var(--sa-orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    .sa-nav-toggle { display: flex; }

    .sa-navbar .navbar-collapse {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(28, 25, 23, 0.98);
        border-bottom: 1px solid rgba(249, 115, 22, 0.2);
        padding: 1rem;
        flex-direction: column;
    }

    .sa-navbar .navbar-collapse.show { display: flex !important; }

    .sa-nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-bottom: 1rem;
        width: 100%;
    }

    .sa-nav-link { padding: 0.75rem 1rem; }
    .sa-nav-link::after { display: none; }

    .sa-nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        width: 100%;
    }

    .sa-nav-btn { justify-content: center; }
    .sa-theme-toggle { width: 100%; border-radius: 8px; }

    [data-theme="light"] .sa-navbar .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
    }

    .sa-floating-sponsors {
        flex-direction: column;
        gap: 0.5rem;
        top: 1.5rem;
    }

    .sa-spotlight-media,
    .sa-spotlight-details { width: 100%; }

    .sa-raffle-image,
    .sa-raffle-info { width: 100%; }

    .sa-contact-cards { grid-template-columns: repeat(2, 1fr); }
    .sa-vehicle-grid  { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
}

@media (max-width: 991px) {
    .sa-modal-split { flex-direction: column; }
    .sa-modal-gallery { width: 100%; height: 300px; flex-shrink: 0; }
    .sa-modal-details { width: 100%; }
    .sa-modal-gallery-nav { opacity: 1; }

    .sa-purchase-left { width: 100%; }
    .sa-purchase-right { width: 100%; }
    .sa-purchase-left-img { height: 200px; }

    .sa-contact-left { width: 100%; }
    .sa-contact-right { width: 100%; }
    .sa-contact-left-inner { padding: 2rem; }
    .sa-contact-left-inner > p { margin-bottom: 1.25rem; }
}

@media (max-width: 768px) {
    .sa-hero-logo { width: 80px; height: 80px; }
    .sa-section-title { font-size: 2rem; }
    .sa-spotlight-specs { grid-template-columns: 1fr; }

    .sa-spotlight-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        text-align: center;
    }

    .sa-vehicle-grid   { grid-template-columns: 1fr; }
    .sa-contact-cards   { grid-template-columns: 1fr; }

    .sa-modal-gallery { height: 240px; }
    .sa-modal-specs { grid-template-columns: 1fr; }
    .sa-modal-vehicle-name { font-size: 1.4rem; }
    .sa-modal-hero-price { font-size: 1.75rem; }

    .sa-modal-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .sa-modal-cta .sa-btn { width: 100%; }

    .sa-purchase-left-img { height: 160px; }
    .sa-purchase-left-info { padding: 1.25rem; }
    .sa-purchase-left-info h3 { font-size: 1.25rem; }
    .sa-purchase-left-price { font-size: 1.5rem; }
    .sa-purchase-field-grid { grid-template-columns: 1fr; }
    .sa-purchase-field-full { grid-column: auto; }
    .sa-purchase-right-scroll { padding: 1.5rem; }

    .sa-contact-left-inner { padding: 1.5rem; }
    .sa-contact-left-icon { width: 52px; height: 52px; font-size: 1.4rem; }
    .sa-contact-left-inner h2 { font-size: 1.35rem; }
    .sa-contact-left-details { gap: 0.5rem; }
    .sa-contact-right-scroll { padding: 1.5rem; }

    .sa-section-header-left { text-align: center; }
}

@media (max-width: 480px) {
    .sa-vehicle-card-image { aspect-ratio: 3/2; }
}
