/* Responsive Styles */

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .btn-lg {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .about-us img {
        margin-bottom: 1.5rem;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .category-card img {
        height: 180px;
    }
    
    .product-card img {
        height: 220px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero {
        padding: 5rem 0;
    }
} 