/* ==================================
   MOBILE RESPONSIVE - COMPLETE
   All devices: 320px - 2000px
   ================================== */

/* Mobile First: 320px - 480px */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Hero */
    .hero {
        padding: 50px 0 30px;
    }
    
    .hero h1 {
        font-size: 28px !important;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 16px !important;
    }
    
    .hero .btn {
        padding: 12px 25px;
        font-size: 15px;
    }
    
    /* Features */
    .feature {
        padding: 30px 15px;
    }
    
    .feature i {
        font-size: 42px !important;
    }
    
    .feature h3 {
        font-size: 18px;
    }
    
    /* Categories */
    .cat-card a {
        padding: 30px 15px;
    }
    
    .cat-card i {
        font-size: 42px !important;
    }
    
    .cat-card h3 {
        font-size: 18px;
    }
    
    /* Products */
    .product img {
        height: 180px;
    }
    
    .product .woocommerce-loop-product__title {
        font-size: 16px;
    }
    
    .product .price {
        font-size: 18px;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Tablet: 481px - 768px */
@media (min-width: 481px) and (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Tablet Landscape: 769px - 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 42px;
    }
    
    .products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .features-grid,
    .cat-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Desktop: 1025px+ */
@media (min-width: 1025px) {
    .products {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* Large Desktop: 1400px+ */
@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
    }
}

/* Touch Devices */
@media (hover: none) {
    .feature:hover,
    .cat-card:hover,
    .product:hover {
        transform: none;
    }
    
    .feature,
    .cat-card,
    .product {
        transition: none;
    }
}

/* Landscape Phone */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 30px 0;
    }
    
    .hero h1 {
        font-size: 24px !important;
    }
    
    .hero p {
        font-size: 14px !important;
        margin-bottom: 15px;
    }
}
