:root {
        --primary: #7c3aed;
        --primary-dark: #6d28d9;
        --primary-light: #f3e8ff;
        --primary-gold: #d4af37;
        --text-main: #0f172a;
        --text-muted: #64748b;
        --border-light: #e2e8f0;
        --bg-body: #f8fafc;
        --bg-card: #ffffff;
        --radius-xl: 20px;
        --shadow-sm: 0 4px 10px rgba(0,0,0,0.05);
        --shadow-hover: 0 20px 40px rgba(0,0,0,0.1);
        --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    body {
        font-family: 'Plus Jakarta Sans', sans-serif;
        background-color: var(--bg-body);
        color: var(--text-main);
        padding: 2rem 0;
    }

    /* --- Hero Styles --- */
    .hero-title {
        letter-spacing: -1px;
        line-height: 1.2;
    }

    .section-divider {
        height: 4px;
        width: 60px;
        background: var(--primary-gold);
        margin-top: 10px;
    }

    /* --- Car Card Styles --- */
    .car-card {
        background: var(--bg-card);
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: var(--radius-xl);
        overflow: hidden;
        transition: var(--transition);
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .car-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
        border-color: var(--primary-light);
    }

    /* Image Section */
    .car-img-wrapper {
        position: relative;
        overflow: hidden;
        aspect-ratio: 16/10;
        background-color: #f1f5f9;
    }

    .car-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .car-card:hover .car-img-wrapper img {
        transform: scale(1.08);
    }

    /* Overlays */
    .car-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(5px);
        color: #000;
        padding: 5px 12px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 700;
        z-index: 2;
        box-shadow: var(--shadow-sm);
    }

    .car-fav-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(5px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        cursor: pointer;
        transition: var(--transition);
        border: none;
        z-index: 2;
        box-shadow: var(--shadow-sm);
    }

    .car-fav-btn:hover {
        color: #ef4444;
        transform: scale(1.1);
    }

    /* Content Section */
    .car-content {
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .car-title {
        font-size: 1.125rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
        color: var(--text-main);
    }

    .car-category {
        font-size: 0.875rem;
        color: var(--text-muted);
        margin-bottom: 1rem;
    }

    /* Specs Grid */
    .car-specs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
        border-bottom: 1px solid var(--border-light);
    }

    .spec-item {
        background: #f8f9fa;
        padding: 8px;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: background 0.3s ease;
    }

    .spec-item:hover {
        background: #e9ecef;
    }

    .spec-icon {
        color: var(--primary-gold);
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .spec-item span {
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--text-muted);
    }

    /* Footer: Price & Button */
    .car-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: auto;
    }

    .price-amount {
        font-size: 1.4rem;
        font-weight: 800;
        color: #000;
    }

    .price-period {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--text-muted);
        text-transform: uppercase;
    }

    .btn-rent {
        background: #000;
        color: #fff;
        padding: 10px 22px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: var(--transition);
        display: inline-block;
    }

    .btn-rent:hover {
        background: var(--primary-gold);
        color: #fff;
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        transform: translateY(-2px);
    }