:root {
    --primary: #0b1f3a;
    --secondary: #ffc107;
    --dark: #111827;
    --text: #374151;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    background: #f4f6f9;
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.navbar {
    background: #fff !important;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    padding: 12px 0;
}

.navbar-brand {
    color: #111 !important;
    font-size: 28px;
    font-weight: 700;
}

.nav-link {
    color: #222 !important;
    font-weight: 500;
    margin: 0 6px;
    transition: .25s;
}

.nav-link:hover {
    color: #0d6efd !important;
}

.hero {
    width: 100%;
    aspect-ratio: 1467 / 819;
    min-height: 420px;
    background: url("/assets/images/back.png") center / cover no-repeat;
}.hero .container {
    display: none;
}

.featured-products {
    background: #f7f8fa;
    padding: 65px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-heading h2 {
    color: #111827;
    font-size: 30px;
    font-weight: 800;
    margin: 0;
}

.section-heading a {
    color: #f97316;
    font-weight: 700;
}

.product-card {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 10px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .07);
}

.product-card img {
    height: 180px;
    object-fit: contain;
    padding: 18px;
}

.product-body {
    padding: 16px;
}

.product-desc {
    color: #6b7280;
    font-size: 14px;
    height: 42px;
    margin: 8px 0;
    overflow: hidden;
}

.price {
    color: #111827;
    font-size: 18px;
    font-weight: 800;
    margin: 12px 0;
}

.vehicle-section {
    background: #101820;
    line-height: 0;
    width: 100%;
}

.vehicle-section img {
    display: block;
    height: auto;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    .hero {
        min-height: 230px;
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .product-card img {
        height: 145px;
    }
}