    /* Hide mobile toggle by default */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Navigation Styles */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    z-index: 1000;
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
}

/* Checkbox hack for mobile menu toggle */
#mobile-menu-toggle {
    display: none;
}

#mobile-menu-toggle:checked + .mobile-nav-toggle + .mobile-nav,
#mobile-menu-toggle:checked ~ .mobile-nav {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-content {
    padding: 1rem;
}

.mobile-nav-item {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 0;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #fecaca;
    padding-left: 1rem;
}

/* Mobile dropdown styles */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-input {
    display: none;
}

.mobile-dropdown-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: white;
    padding: 1rem 0;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-dropdown-label:hover {
    color: #fecaca;
}

.mobile-dropdown-label i {
    transition: transform 0.3s ease;
}

.mobile-dropdown-input:checked + .mobile-dropdown-label i {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background: rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    border-radius: 0.5rem;
}

.mobile-dropdown-input:checked ~ .mobile-dropdown-content {
    max-height: 1000px;
}

.mobile-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 1rem;
    padding: 1rem;
}

.mobile-product-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-product-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.mobile-product-item a {
    color: white;
    text-decoration: none;
}

.mobile-product-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.mobile-product-item h3 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.mobile-brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
}

.mobile-brand-item {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-brand-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-brand-item img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.mobile-enquiry-btn {
    margin-top: 2rem;
    width: 100%;
    background: white;
    color: #dc2626;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.mobile-enquiry-btn:hover {
    background: #fecaca;
}

/* Tablet Styles (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    #enquiryBtn {
        display: none;
    }
    
    .mobile-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mobile-brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mobile-nav-content {
        padding: 2rem;
    }
    
    .mobile-nav-link,
    .mobile-dropdown-label {
        font-size: 1.2rem;
        padding: 1.2rem 0;
    }
}

/* Mobile Styles (≤768px) */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    #enquiryBtn {
        display: none;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .mobile-nav-header img {
        height: 40px;
    }
    
    .mobile-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .mobile-product-item {
        padding: 0.75rem;
    }
    
    .mobile-product-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .mobile-product-item h3 {
        font-size: 0.8rem;
    }
    
    .mobile-brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mobile-brand-item img {
        max-height: 50px;
    }
}

/* Very Small Mobile (≤480px) */
@media (max-width: 480px) {
    .mobile-nav-content {
        padding: 1rem 0.5rem;
    }
    
    .mobile-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mobile-brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mobile-product-item h3 {
        font-size: 0.9rem;
    }
}