/* HEADER */
.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* TOP BAR */
.top-bar {
    display: flex;
    justify-content: flex-end;
    padding: 6px 24px;
    background: #111;
    color: #fff;
    font-size: 13px;
}
.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-left: 6px;
}

/* NAV BAR */
.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    color: #111;
}
.logo span {
    color: #D4AF37; /* gold */
}

/* MENU */
.nav-menu {
    display: flex;
    gap: 22px;
    align-items: center;
}
.nav-menu a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}
.nav-menu a:hover {
    color: #D4AF37;
}

/* LOGIN BUTTON */
.btn-login {
    padding: 8px 14px;
    border-radius: 20px;
    background: #D4AF37;
    color: #111 !important;
    font-weight: 600;
}

/* MOBILE */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #fff;
        flex-direction: column;
        display: none;
        padding: 16px 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }
}


     /* Main Container Styles */
 .wrap { max-width: 1000px; margin: 40px auto; padding: 20px; }
h1 { color: #1a2b48; font-size: 28px; font-weight: 700; margin-bottom: 25px; }

/* The Vehicle Card */
.car-card {
    display: flex;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #edf2f7;
}

.car-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Left: Image Section */
.car-img-wrapper {
    flex: 1;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-width: 250px;
}
.car-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Middle: Info Section */
.car-content {
    flex: 2;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.car-content h3 {
    margin: 0 0 8px 0;
    font-size: 22px;
    color: #1a2b48;
}
.car-description {
    color: #718096;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Features (Pills) */
.features { display: flex; gap: 10px; flex-wrap: wrap; }
.feature-item {
    background: #f1f5f9;
    color: #4a5568;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.feature-item i { color: #3182ce; }

/* Right: Price & CTA */
.car-action {
    flex: 1;
    padding: 25px;
    border-left: 1px dashed #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fafcfe;
}
.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 4px;
}
.price-label {
    font-size: 12px;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.btn-select {
    background: #3182ce; /* Nice Rhodes Blue */
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}
.btn-select:hover { background: #2b6cb0; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .car-card { flex-direction: column; }
    .car-action { border-left: none; border-top: 1px dashed #e2e8f0; }
    .car-img-wrapper { min-width: auto; }
}
