/* ===== Estoque Page Styles ===== */

/* ===== Page Hero ===== */
.page-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    padding: 140px 0 120px;
    overflow: hidden;
    margin-bottom: -1px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.04)"/></svg>');
    opacity: 0.5;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-hero-title .highlight {
    color: var(--gold);
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.page-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.page-hero-wave svg {
    width: 100%;
    height: auto;
}

/* ===== Filter Section ===== */
.filter-section {
    padding: 40px 0 30px;
    background: var(--primary);
    margin-top: -1px;
}

.filter-bar {
    background: linear-gradient(135deg, rgba(74, 124, 50, 0.1) 0%, rgba(58, 98, 39, 0.1) 100%);
    border: 1px solid rgba(74, 124, 50, 0.2);
    border-radius: var(--radius-lg);
    padding: 20px 30px;
}

.filter-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-300);
    font-size: 1rem;
}

.filter-info i {
    color: var(--accent-green);
    font-size: 1.3rem;
}

.filter-info strong {
    color: var(--accent-green);
}

/* ===== Vehicles Section ===== */
.vehicles-section {
    padding: 60px 0 100px;
    background: var(--primary);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== Vehicle Card ===== */
.vehicle-card {
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vehicle-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.vehicle-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: var(--shadow-gold);
}

.vehicle-badge.badge-new {
    background: var(--gradient-green);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.vehicle-badge.badge-offer {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.vehicle-image,
.vehicle-info {
    position: relative;
    z-index: 2;
}

/* Vehicle Image */
.vehicle-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.vehicle-img-wp {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gray-500);
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 50%, #1f1f1f 100%);
}

.image-placeholder i {
    font-size: 3.5rem;
    color: var(--gray-600);
    opacity: 0.7;
}

.image-placeholder span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-500);
}

/* Vehicle Info */
.vehicle-info {
    padding: 25px;
}

.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.vehicle-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    flex: 1;
}

.vehicle-year {
    background: var(--gradient-olive);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
}

/* Vehicle Specs */
.vehicle-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.spec-item i {
    color: var(--accent-green);
    font-size: 0.9rem;
}

/* Vehicle Features */
.vehicle-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.feature-tag {
    background: rgba(74, 124, 50, 0.25);
    color: var(--accent-green-light);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Vehicle Actions */
.vehicle-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 3;
}

.btn-vehicle-details {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn-vehicle-details:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.28);
}

.btn-vehicle-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: var(--gradient-green);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-green);
}

.btn-vehicle-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-vehicle-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    color: var(--accent-green);
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--accent-green);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.btn-vehicle-secondary:hover {
    background: var(--accent-green);
    color: var(--white);
}

/* ===== Vehicle Detail ===== */
body.single-vehicle .whatsapp-float,
body.single-vehicle #whatsapp-container {
    display: none !important;
}

.vehicle-hero {
    min-height: auto;
    padding: 126px 0 44px;
    background:
        radial-gradient(circle at top left, rgba(255, 204, 0, 0.08), transparent 28%),
        linear-gradient(135deg, #000000 0%, #070707 25%, #111111 58%, #213a17 100%);
}

.vehicle-hero-shell {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
}

.vehicle-hero-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}

.vehicle-hero-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-300);
    font-weight: 600;
}

.vehicle-hero-back:hover {
    color: var(--gold);
}

.vehicle-hero-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--gradient-gold);
    color: var(--primary-dark);
}

.vehicle-hero-chip.badge-new {
    background: var(--gradient-green);
    color: var(--white);
}

.vehicle-hero-chip.badge-offer {
    background: linear-gradient(135deg, #ff8b3d 0%, #ff6b35 100%);
    color: var(--white);
}

.vehicle-hero-copy {
    max-width: 720px;
}

.vehicle-hero .page-hero-title {
    margin: 8px 0 14px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.02;
}

.vehicle-hero .page-hero-subtitle {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.86);
}

.vehicle-hero-spec-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.vehicle-hero-spec-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.vehicle-hero-spec-pill i {
    color: var(--gold);
}

.vehicle-detail-section {
    padding: 24px 0 130px;
    background:
        radial-gradient(circle at top right, rgba(196, 166, 97, 0.09), transparent 28%),
        var(--primary);
}

.vehicle-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 26px;
    align-items: start;
}

.vehicle-main-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vehicle-gallery-panel,
.vehicle-feature-panel,
.vehicle-detail-content,
.vehicle-summary-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-xl);
}

.vehicle-gallery-panel,
.vehicle-feature-panel {
    padding: 22px;
    border-radius: 28px;
}

.vehicle-gallery-panel-header,
.vehicle-panel-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.vehicle-gallery-panel-header h2,
.vehicle-panel-heading h2 {
    color: var(--white);
    font-size: 1.55rem;
    line-height: 1.15;
    margin-top: 12px;
}

.vehicle-gallery-panel-note {
    color: var(--gray-500);
    font-size: 0.9rem;
    text-align: right;
}

.vehicle-gallery {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vehicle-gallery-stage {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.vehicle-gallery-viewport {
    overflow: hidden;
}

.vehicle-gallery-track {
    display: flex;
    transition: transform 0.35s ease;
    touch-action: pan-y;
}

.vehicle-gallery-slide {
    min-width: 100%;
    aspect-ratio: 16 / 11;
    background: linear-gradient(135deg, #111, #272727);
}

.vehicle-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vehicle-gallery-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: var(--gray-500);
}

.vehicle-gallery-empty i {
    font-size: 3rem;
    color: var(--gray-600);
}

.vehicle-gallery-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.62);
    color: var(--white);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.vehicle-gallery-prev {
    left: 12px;
}

.vehicle-gallery-next {
    right: 12px;
}

.vehicle-gallery-counter {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.62);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    z-index: 2;
}

.vehicle-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
    gap: 10px;
}

.vehicle-gallery-thumb {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    transition: var(--transition-normal);
}

.vehicle-gallery-thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.vehicle-gallery-thumb.is-active {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(196, 166, 97, 0.2);
}

.vehicle-summary-card {
    position: sticky;
    top: 95px;
    border-radius: 28px;
    padding: 24px;
}

.vehicle-detail-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 18px;
}

.vehicle-summary-label {
    color: var(--accent-green-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.vehicle-summary-head h2 {
    font-size: 2.1rem;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.15;
}

.vehicle-summary-head p {
    color: var(--gray-400);
    line-height: 1.7;
}

.vehicle-detail-specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 24px 0;
}

.vehicle-detail-spec-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.vehicle-detail-spec-card i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 204, 0, 0.12);
    color: var(--gold);
    flex-shrink: 0;
}

.vehicle-detail-spec-card span {
    display: block;
    color: var(--gray-500);
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.vehicle-detail-spec-card strong {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.4;
}

.vehicle-detail-block {
    margin-bottom: 24px;
}

.vehicle-detail-block h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 14px;
}

.vehicle-detail-note {
    padding: 18px;
    border-radius: 22px;
    background: rgba(74, 124, 50, 0.12);
    border: 1px solid rgba(74, 124, 50, 0.28);
}

.vehicle-summary-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vehicle-summary-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-300);
}

.vehicle-summary-points i {
    color: var(--gold);
}

.vehicle-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.vehicle-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.vehicle-feature-card i {
    color: var(--accent-green-light);
    margin-top: 2px;
}

.vehicle-feature-card span {
    color: var(--gray-300);
    line-height: 1.5;
    font-weight: 500;
}

.vehicle-detail-features {
    margin-bottom: 0;
}

.vehicle-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vehicle-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gray-300);
    font-weight: 600;
    padding-top: 4px;
}

.vehicle-back-link:hover {
    color: var(--gold);
}

.vehicle-detail-content {
    margin-top: 36px;
    border-radius: 28px;
    padding: 28px;
}

.vehicle-detail-content-header {
    margin-bottom: 20px;
}

.vehicle-detail-content-header h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-top: 14px;
}

.vehicle-detail-content-body,
.vehicle-detail-content-body p,
.vehicle-detail-content-body li {
    color: var(--gray-300);
    line-height: 1.8;
}

.vehicle-detail-content-body > * + * {
    margin-top: 14px;
}

.vehicle-mobile-bar {
    display: none;
}

/* ===== Contact CTA Section ===== */
.contact-cta-section {
    padding: 80px 0;
    background: var(--gradient-hero);
}

.contact-cta-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px 60px;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-cta-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.contact-cta-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.contact-cta-text {
    flex: 1;
}

.contact-cta-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.contact-cta-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-outline-light {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* ===== Trust Section ===== */
.trust-section {
    padding: 60px 0;
    background: var(--primary-light);
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-300);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-badge-item i {
    font-size: 1.4rem;
    color: var(--accent-green);
}

/* ===== Responsive Styles ===== */

@media (max-width: 1024px) {
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicle-detail-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-summary-card {
        position: static;
    }

    .vehicle-feature-list {
        grid-template-columns: 1fr 1fr;
    }

    .contact-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .contact-cta-actions {
        width: 100%;
    }

    .contact-cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .page-hero-title {
        font-size: 2.2rem;
    }

    .page-hero-subtitle {
        font-size: 1rem;
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vehicle-detail-section {
        padding: 18px 0 120px;
    }

    .vehicle-hero {
        padding: 112px 0 34px;
    }

    .vehicle-hero-shell {
        padding: 22px;
        border-radius: 24px;
    }

    .vehicle-hero-topbar,
    .vehicle-gallery-panel-header,
    .vehicle-panel-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .vehicle-hero-spec-strip {
        gap: 10px;
    }

    .vehicle-gallery-stage,
    .vehicle-summary-card,
    .vehicle-detail-content,
    .vehicle-gallery-panel,
    .vehicle-feature-panel {
        border-radius: 22px;
    }

    .vehicle-gallery-slide {
        aspect-ratio: 4 / 5;
    }

    .vehicle-summary-head h2 {
        font-size: 1.8rem;
    }

    .vehicle-detail-content-header h2 {
        font-size: 1.45rem;
    }

    .vehicle-gallery-panel-header h2,
    .vehicle-panel-heading h2 {
        font-size: 1.35rem;
    }

    .filter-bar {
        padding: 15px 20px;
    }

    .filter-info {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .trust-grid {
        gap: 30px;
    }

    .trust-badge-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .contact-cta-icon {
        width: 80px;
        height: 80px;
    }

    .contact-cta-icon i {
        font-size: 2rem;
    }

    .contact-cta-text h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 100px 0 50px;
    }

    .page-hero-title {
        font-size: 1.8rem;
    }

    .vehicle-hero-shell {
        padding: 18px;
    }

    .vehicle-hero-back {
        font-size: 0.92rem;
    }

    .vehicle-hero-chip {
        font-size: 0.7rem;
    }

    .vehicle-hero-spec-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .vehicle-hero-spec-pill {
        min-width: 0;
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .vehicle-info {
        padding: 20px;
    }

    .vehicle-card {
        border-radius: 22px;
    }

    .vehicle-gallery-control {
        width: 38px;
        height: 38px;
    }

    .vehicle-detail-specs-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .vehicle-gallery-panel,
    .vehicle-feature-panel,
    .vehicle-summary-card,
    .vehicle-detail-content {
        padding: 18px;
    }

    .vehicle-feature-list {
        grid-template-columns: 1fr;
    }

    .vehicle-detail-content {
        margin-top: 24px;
    }

    .vehicle-mobile-bar {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 56px;
        gap: 10px;
        z-index: 9999;
        padding: 10px;
        border-radius: 22px;
        background: rgba(0, 0, 0, 0.88);
        border: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(12px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    }

    .vehicle-mobile-primary,
    .vehicle-mobile-secondary {
        min-height: 52px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }

    .vehicle-mobile-primary {
        gap: 10px;
        background: var(--gradient-green);
        color: var(--white);
        padding: 0 16px;
        box-shadow: var(--shadow-green);
    }

    .vehicle-mobile-secondary {
        background: rgba(255, 255, 255, 0.08);
        color: var(--white);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .vehicle-header {
        flex-direction: column;
        gap: 10px;
    }

    .vehicle-year {
        margin-left: 0;
        align-self: flex-start;
    }

    .vehicle-specs {
        gap: 10px;
    }

    .spec-item {
        font-size: 0.8rem;
    }
}