/* Responsive Styles */
@media (max-width: 1024px) {
    .search-bar {
        width: 30%;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo, .search-bar, .header-icons {
        width: 100%;
    }
    
    .search-bar {
        order: 3;
    }
    
    .main-menu {
        flex-direction: column;
    }
    
    .dropdown > a::after {
        content: '\f078';
        float: right;
    }
    
    .mega-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
    }
    
    .mega-menu-column {
        padding: 0;
    }
    
    .banner-row {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .top-links {
        justify-content: center;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 4px;
    }
}