:root {
    --primary-red: #d32f2f;
    --primary-red-hover: #b71c1c;
    --dark-bg: #ffffff;
    --darker-bg: #f0f2f5;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-muted: #6c757d;
    --glass-bg: rgba(0, 0, 0, 0.05);
    --glass-border: rgba(0, 0, 0, 0.1);
}

html, body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden !important;
    max-width: 100%;
    position: relative;
}

.fs-7 { font-size: 0.85rem; }
.fs-8 { font-size: 0.75rem; }

/* Futuristic Tachometer Preloader Design */
.preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #181a24 0%, #07080b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.preloader-wrapper.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(211, 47, 47, 0.15) 1px, transparent 1px),
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.6;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0, 20px 20px; }
    100% { background-position: 40px 40px, 60px 60px; }
}

.preloader-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 320px;
    max-width: 90vw;
    z-index: 5;
}

.preloader-gauge-wrapper {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gauge-ring-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 260px;
    height: 260px;
    margin-top: -130px;
    margin-left: -130px;
    border: 2px dashed rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    animation: spinClockwise 15s linear infinite;
}

.gauge-ring-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    margin-top: -110px;
    margin-left: -110px;
    border: 2px solid rgba(211, 47, 47, 0.2);
    border-top: 2px solid var(--primary-red);
    border-radius: 50%;
    animation: spinCounterClockwise 3s linear infinite;
    box-shadow: 0 0 20px rgba(211, 47, 47, 0.4);
}

.gauge-laser-arc {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 240px;
    height: 240px;
    margin-top: -120px;
    margin-left: -120px;
    border: 4px solid transparent;
    border-right: 4px solid #ff5252;
    border-bottom: 4px solid #ff5252;
    border-radius: 50%;
    animation: laserSpin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    filter: drop-shadow(0 0 10px #ff5252);
}

@keyframes spinClockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinCounterClockwise {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes laserSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader-center-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.new-preloader-logo {
    height: 55px;
    width: auto;
    animation: logoGlowPulse 1.8s ease-in-out infinite alternate;
}

@keyframes logoGlowPulse {
    0% { transform: scale(0.96); filter: drop-shadow(0 0 8px rgba(211,47,47,0.4)); }
    100% { transform: scale(1.04); filter: drop-shadow(0 0 25px rgba(255,82,82,0.9)); }
}

.preloader-rpm-counter {
    margin-top: 10px;
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 0 12px rgba(255, 82, 82, 0.8);
}
.preloader-rpm-counter small {
    font-size: 0.9rem;
    color: var(--primary-red);
}

.preloader-progress-container {
    position: relative;
    width: 240px;
    text-align: center;
    margin-top: 35px;
}

.preloader-progress-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.preloader-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #d32f2f 0%, #ff5252 50%, #ffffff 100%);
    box-shadow: 0 0 12px #ff5252;
    transition: width 0.1s ease-out;
}

.preloader-status-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-top: 10px;
    text-transform: uppercase;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #1a1a1a, #2c2f33, #1a1a1a);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1040;
}

/* Navbar */
.navbar {
    background-color: rgba(18, 18, 18, 0.98) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    padding: 0.5rem 0;
    box-shadow: 0 4px 25px rgba(0,0,0,0.4);
}
.navbar-scrolled {
    background-color: #0d0e12 !important;
    padding: 0.4rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.navbar-logo {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
}
@media (max-width: 991px) {
    .navbar-logo {
        height: 65px !important;
    }
}

.navbar-nav .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.85) !important;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}
.navbar-nav .nav-link.active {
    color: var(--primary-red) !important;
    font-weight: 700;
}
.navbar-nav .nav-link:hover {
    color: #ffffff !important;
}

.search-input {
    width: 250px;
    font-size: 0.85rem;
    transition: 0.3s;
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
}
.search-input:focus {
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.4);
    border-color: var(--primary-red);
    background-color: rgba(255,255,255,0.15);
}

/* Hero Section */
.hero-section {
    background-color: var(--dark-bg);
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-dark);
    overflow: hidden;
    margin-top: -85px; /* Pull up under navbar */
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 150px;
    padding-bottom: 150px;
}
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn-red {
    background: linear-gradient(45deg, var(--primary-red), #ff5252);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}
.btn-red:hover {
    background: linear-gradient(45deg, #b71c1c, var(--primary-red));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.6);
    color: #fff;
}
.btn-outline-light {
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    background: rgba(255,255,255,0.05);
}
.btn-outline-light:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Floating Images in Hero */
.hero-product-1, .hero-product-2 {
    position: absolute;
    z-index: 1;
    max-width: 150px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
    animation: float 6s ease-in-out infinite;
}
.hero-product-1 {
    left: 10%;
    top: 35%;
    transform: rotate(-15deg);
}
.hero-product-2 {
    right: 15%;
    bottom: 25%;
    transform: rotate(15deg);
    animation-delay: 3s;
}
@keyframes float {
    0% { transform: translateY(0px) rotate(-15deg); }
    50% { transform: translateY(-20px) rotate(-10deg); }
    100% { transform: translateY(0px) rotate(-15deg); }
}

.hero-car {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 1100px;
    z-index: 1;
    filter: drop-shadow(0 -20px 50px rgba(0,0,0,0.8));
    animation: slideUpFade 1.5s ease-out;
}
@keyframes slideUpFade {
    0% { opacity: 0; transform: translate(-50%, 100px); }
    100% { opacity: 1; transform: translate(-50%, 0); }
}

/* Section Headings */
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    text-align: center;
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Product Category Section */
.category-card {
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    height: 100%;
    background: #ffffff;
    color: var(--text-dark);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.8), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
    z-index: 1;
    pointer-events: none;
}
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.category-card:hover::before {
    transform: translateX(100%);
}
.category-img-wrapper {
    background-color: rgba(255,255,255,0.03);
    height: 220px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
    border-radius: 16px 16px 0 0;
}
.category-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}
.category-content {
    padding: 25px 20px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.category-card:hover .category-img-wrapper img {
    transform: scale(1.1);
}
.category-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.category-desc {
    font-size: 0.8rem;
    color: #aaa;
    flex-grow: 1;
    margin-bottom: 20px;
    line-height: 1.7;
}

.btn-black {
    background: #111;
    color: #fff;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 0.9rem;
    font-weight: 600;
    width: 100%;
    border: none;
    transition: 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-black:hover {
    background: var(--primary-red);
    color: #fff;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.brand-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 10px;
    margin-bottom: 20px;
    align-items: center;
    justify-items: center;
}

/* Featured Products */
.product-card {
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.product-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transform: translateY(-8px);
}
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #888;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 1.2rem;
    z-index: 2;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.wishlist-btn:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}
.product-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
}
.product-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: 0.4s;
}
.product-card:hover .product-img img {
    transform: scale(1.08);
}
.product-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.product-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 20px;
}
.btn-cart {
    background: linear-gradient(45deg, var(--primary-red), #ff5252);
    color: #fff;
    border-radius: 8px;
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 700;
    width: 100%;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211,47,47,0.3);
}
.btn-cart:hover {
    background: linear-gradient(45deg, #b71c1c, var(--primary-red));
    color: #fff;
    box-shadow: 0 6px 20px rgba(211,47,47,0.5);
    transform: translateY(-2px);
}
.product-card:hover .btn-cart {
    box-shadow: 0 8px 25px rgba(211,47,47,0.6);
}

/* Why Choose Section */
.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), #ff5252);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
    transition: 0.3s;
}
.why-choose-item:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}
.why-choose-title {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.why-choose-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Banner Section */
.banner-section {
    background-color: #121212;
    padding: 120px 0;
    color: #fff;
    position: relative;
}
.banner-title {
    font-size: 3rem;
    font-weight: 900;
    max-width: 600px;
    line-height: 1.2;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* Brand Partners */
/* Brand Partners Marquee Slider */
.brand-section {
    background: #f8f9fa;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 35px 0;
    overflow: hidden;
}
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}
.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    animation: marquee 22s linear infinite;
}
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.partner-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    color: #555;
}
.partner-pill:hover {
    background: rgba(211, 47, 47, 0.15);
    border-color: var(--primary-red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.3);
}
.partner-pill i {
    font-size: 1.4rem;
    color: var(--primary-red);
}

/* Reviews */
/* Reviews */
.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-red);
    color: var(--text-dark);
}
.review-stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.review-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: #444;
    font-style: italic;
    line-height: 1.6;
}
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.reviewer-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-red);
    box-shadow: 0 5px 15px rgba(211,47,47,0.3);
}
.reviewer-name {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    color: var(--text-dark);
}
.reviewer-role {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: var(--light-bg);
}
.newsletter-card {
    background: linear-gradient(135deg, rgba(15, 16, 22, 0.92) 0%, rgba(26, 28, 35, 0.88) 100%), url('../images/mechanic_banner.jpg') center/cover;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.newsletter-card::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(211,47,47,0.2) 0%, rgba(0,0,0,0) 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}
.newsletter-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}
.newsletter-subtitle {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}
.newsletter-form {
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.newsletter-input {
    width: 100%;
    padding: 16px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 1rem;
    padding-right: 150px;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}
.newsletter-input:focus {
    outline: none;
    background: rgba(255,255,255,0.1);
    border-color: var(--primary-red);
}
.newsletter-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    border-radius: 40px;
    background: linear-gradient(45deg, var(--primary-red), #ff5252);
    color: #fff;
    border: none;
    padding: 0 30px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}
.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
}

/* Footer Styling */
.main-footer {
    background: linear-gradient(180deg, #12141a 0%, #08090c 100%);
    border-top: 2px solid var(--primary-red);
    color: #b0b3c0;
    position: relative;
}
.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}
.footer-links a {
    color: #9094a6 !important;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}
.footer-links a:hover {
    color: #ffffff !important;
    transform: translateX(6px);
}
.social-icon-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icon-btn:hover {
    background: linear-gradient(45deg, var(--primary-red), #ff5252);
    color: #fff !important;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.5);
    border-color: transparent;
}
.payment-badge {
    font-size: 1.6rem;
    color: #6c7285;
    transition: 0.3s;
}
.payment-badge:hover {
    color: #ffffff;
}

/* Utilities */
.py-6 { padding-top: 6rem; padding-bottom: 6rem; }

/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: rgba(14, 15, 20, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 10px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 20%;
    padding: 6px 0;
}

.mobile-nav-item i {
    font-size: 1.25rem;
    margin-bottom: 3px;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--primary-red) !important;
}

.mobile-nav-item.active i {
    transform: translateY(-2px) scale(1.1);
    color: var(--primary-red);
}

@media (max-width: 991px) {
    body {
        padding-bottom: 65px !important;
    }
    .hero-title { font-size: 2.5rem; }
    .hero-car { width: 100%; }
    .hero-product-1, .hero-product-2 { display: none; }
    .banner-title { font-size: 2rem; }
    .navbar { background-color: rgba(18, 18, 18, 0.98) !important; }
}

@media (max-width: 768px) {
    .hero-bottom-vector {
        height: 45px !important;
    }
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2.2rem;
    }
    .hero-title {
        font-size: 1.9rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .newsletter-card {
        padding: 35px 20px;
    }
    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .newsletter-input {
        padding-right: 25px;
    }
    .newsletter-btn {
        position: static;
        width: 100%;
        padding: 12px;
    }
    .banner-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .category-content {
        padding: 20px 15px;
    }
}
