/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    /* Header */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
    }
    
    /* Brands */
    .brands-showcase {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Product Details */
    .product-details-container {
        grid-template-columns: 1fr;
    }
    
    /* Modal */
    .modal-content {
        grid-template-columns: 1fr;
        height: auto;
        overflow-y: auto;
    }
    
    .modal-image {
        height: 300px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* About */
    .brand-products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Testimonials */
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Slider */
    .slider-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Floating Buttons */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .quote-box {
        padding: 20px;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Modal */
    .modal-container {
        width: 95%;
        margin: 2.5vh auto;
    }
    
    .modal-details {
        padding: 30px 20px;
    }
}