:root {
            --bg-main: #111111;
            --bg-card: #1a1a1c;
            --bg-card-hover: #222225;
            --primary-red: #d3b05d;
            --primary-red-hover: #e6c05b;
            --text-light: #ffffff;
            --text-muted: #e2e2e2;
            --border-color: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

         html {
            font-family: 'Poppins', sans-serif;
        }

        .theme-title{
            font-family: 'Montserrat', sans-serif;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-main);
            color: var(--text-light);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: var(--text-light);
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--primary-red);
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 4px;
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-primary {
            background-color: var(--primary-red);
            color: white;
        }

        .btn-primary:hover {
            background-color: #d3b05d !important;
			color: white !important;
        }

        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 1px solid var(--border-color);
        }

        .btn-secondary:hover {
            background-color: rgba(255,255,255,0.05);
            border-color: white;
        }

        .btn-block {
            display: block;
            width: 100%;
        }

        /* Navbar */
        header {
            position: absolute;
            top: 0;
            width: 100%;
            z-index: 100;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Poppins', serif;
            font-size: 24px;
            font-weight: 600;
        }

        .logo span {
            color: var(--primary-red);
        }

        nav ul {
            display: flex;
            gap: 30px;
            font-size: 14px;
        }

        nav ul li a {
            color: var(--text-muted);
        }
        
        nav ul li a.active, nav ul li a:hover {
            color: var(--primary-red);
        }

        .nav-icons {
            display: flex;
            gap: 20px;
            font-size: 18px;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(to bottom, rgba(17,17,17,0.7) 0%, rgba(17,17,17,1) 100%), 
                        url('https://images.unsplash.com/photo-1590159424784-db7861937985?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
        }

        .hero-content {
            max-width: 600px;
            padding: 0 20px;
            margin-top: 50px;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .hero h1 span {
            font-family: 'Poppins', serif;
            color: var(--primary-red);
            font-style: italic;
        }

        .hero p {
            color: var(--text-muted);
            margin-bottom: 30px;
            font-size: 16px;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        /* Banners Section */
        .banners {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 80px;
        }

        .banner-card {
            position: relative;
            height: 300px;
            border-radius: 8px;
            overflow: hidden;
        }

        .banner-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .banner-card:hover img {
            transform: scale(1.05);
        }

        .banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
        }

        .banner-overlay h3 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .banner-overlay p {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 15px;
        }

        .banner-overlay a {
            color: var(--primary-red);
            font-size: 14px;
            font-weight: 500;
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 14px;
        }

        /* Categories Section */
        .categories {
            margin-bottom: 80px;
            background-color: #151515;
            padding: 60px 0;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .category-card {
            background-color: var(--bg-card);
            padding: 40px 20px;
            text-align: center;
            border-radius: 8px;
            border: 1px solid transparent;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .category-card:hover {
            border-color: var(--border-color);
            background-color: var(--bg-card-hover);
        }

        .category-card i {
            font-size: 24px;
            color: var(--primary-red);
            margin-bottom: 15px;
        }

        .category-card h4 {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .category-card p {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Best Sellers */
        .products {
            margin-bottom: 80px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .product-card {
            background-color: var(--bg-card);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }

        .product-img {
            height: 250px;
            position: relative;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .badge {
            position: absolute;
            top: 15px;
            font-size: 11px;
            padding: 3px 8px;
            border-radius: 3px;
            font-weight: 600;
        }

        .badge-sale { right: 15px; background-color: var(--primary-red); color: white; }
        .badge-new { left: 15px; background-color: white; color: black; }

        .product-info {
            padding: 20px;
        }

        .product-info h4 {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .product-info p {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .product-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .price-current {
            color: var(--primary-red);
            font-weight: 600;
        }

        .price-old {
            text-decoration: line-through;
            color: var(--text-muted);
            font-size: 12px;
            margin-left: 5px;
        }

        .stock-left {
            color: #d86868;
            font-size: 12px;
        }

        /* Why Choose Us */
        .features {
            background-color: #151515;
            padding: 60px 0;
            margin-bottom: 80px;
        }

        .feature-grid {
            display: flex;
            justify-content: center;
            gap: 100px;
            text-align: center;
        }

        .feature-item i {
            font-size: 24px;
            color: var(--primary-red);
            margin-bottom: 15px;
        }

        .feature-item h4 {
            margin-bottom: 5px;
        }

        .feature-item p {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Testimonials */
        .testimonials {
            margin-bottom: 80px;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .testimonial-card {
            background-color: var(--bg-card);
            padding: 30px;
            border-radius: 8px;
        }

        .stars {
            color: var(--primary-red);
            font-size: 12px;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-size: 14px;
            margin-bottom: 20px;
            min-height: 60px;
        }

        .author h5 {
            font-size: 14px;
            margin-bottom: 3px;
        }

        .author p {
            font-size: 11px;
            color: var(--text-muted);
        }

        /* Dealer CTA */
        .dealer-cta {
            background: linear-gradient(rgba(17,17,17,0.9), rgba(17,17,17,0.9)), 
                        url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
            padding: 80px 0;
            text-align: center;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .dealer-cta h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .dealer-cta p {
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        /* Footer */
        footer {
            padding: 60px 0 20px;
            background-color: var(--bg-main);
        }

        .newsletter {
            text-align: center;
            margin-bottom: 60px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 60px;
        }

        .newsletter-form {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 20px;
            border-radius: 4px;
            border: 1px solid var(--border-color);
            background-color: var(--bg-card);
            color: white;
            outline: none;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-family: 'Poppins', serif;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .footer-logo span { color: var(--primary-red); }

        .footer-col p {
            color: var(--text-muted);
            font-size: 13px;
            margin-bottom: 20px;
        }

        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid var(--border-color);
            color: var(--text-muted);
        }

        .social-icons a:hover {
            border-color: var(--primary-red);
            color: var(--primary-red);
        }

        .footer-col h5 {
            font-size: 14px;
            margin-bottom: 20px;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: var(--text-muted);
            font-size: 13px;
        }

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: var(--text-muted);
        }

        .trust-badges {
            display: flex;
            gap: 20px;
        }

        .trust-badges span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .trust-badges i {
            color: var(--primary-red);
        }

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

nav.mobile-active {
    transform: translateX(0);
}

@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: block;
    }


    header {
        padding: 15px 0;
    }

    .nav-container {
        position: relative;
    }

    nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--bg-card);
        padding: 80px 30px 30px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav ul li {
        border-bottom: 1px solid var(--border-color);
    }

    nav ul li a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
    }

    .nav-icons {
        gap: 15px;
        font-size: 20px;
        align-items: center;
    }

    .logo img {
        width: 130px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }

    .property-box {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--accent-gold);
        padding: 30px 20px;
    }

    .property-box:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    header {
        padding: 12px 0;
    }

    .logo img {
        width: 110px !important;
    }

    .nav-icons {
        gap: 12px;
        font-size: 18px;
    }

    nav {
        width: 100%;
        padding: 70px 20px 20px;
    }

    .footer-col ul li {
        font-size: 12px;
    }

    .footer-col h5 {
        font-size: 13px;
    }

    .footer-col p {
        font-size: 12px;
    }

    .trust-badges span {
        font-size: 11px;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}


@media only screen and (max-width: 600px) {
.banner-card img{ object-fit: contain !important; }
.option-card {
    width: 100% !important;
}
.feature-item{
    width: 100% !important;
}
.property-box {
    margin-top: 20px;
    width: 100% !important;
}
    .footer-bottom {
        align-items: baseline;
    }
}