
        :root {
            --primary: #7c3aed;
            --primary-dark: #6d28d9;
            --primary-light: #f3e8ff;
            --text-main: #0f172a;
            --text-muted: #64748b;
            --border-light: #e2e8f0;
            --bg-body: #f8fafc;
            --bg-card: #ffffff;
            --radius-xl: 16px;
            --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

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

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

        /* Image Section */
        .car-img-wrapper {
            position: relative;
            padding-top: 60%; /* 5:3 Aspect Ratio */
            overflow: hidden;
            background-color: #f1f5f9;
        }

        .car-img-wrapper img {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        /* Badge Overlay */
        .car-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--text-main);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            box-shadow: var(--shadow-sm);
            z-index: 2;
        }
        
        .car-fav-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.95);
            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;
        }

        .car-fav-btn:hover {
            color: #ef4444; /* Red heart hover */
            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 {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-muted);
            gap: 4px;
        }

        .spec-icon {
            font-size: 1.1rem;
            color: var(--primary);
        }

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

        .car-price {
            display: flex;
            flex-direction: column;
        }

        .price-amount {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
        }

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

        .btn-rent {
            background-color: var(--text-main);
            color: white;
            border: none;
            padding: 0.6rem 1.25rem;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
            text-decoration: none;
        }

        .btn-rent:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
