/* Responsive Styles for Mobile */

/* Banner responsive */
@media (max-width: 599px) {
    .banner-container {
        height: 200px !important;
    }
}

@media (min-width: 600px) and (max-width: 959px) {
    .banner-container {
        height: 350px !important;
    }
}

@media (min-width: 960px) {
    .banner-container {
        height: 450px !important;
    }
}

/* Map responsive */
.map-container {
    height: 300px !important;
}

@media (min-width: 600px) {
    .map-container {
        height: 400px !important;
    }
}

@media (min-width: 960px) {
    .map-container {
        height: 500px !important;
    }
}

/* Login/Register card responsive */
.login-card {
    padding: 1.5rem !important;
}

@media (min-width: 600px) {
    .login-card {
        padding: 2rem !important;
    }
}

@media (min-width: 960px) {
    .login-card {
        padding: 3rem !important;
    }
}

/* Product image responsive */
.product-image-container {
    height: 200px !important;
}

.category-image-wrapper {
    height: 200px !important;
}

@media (min-width: 600px) {
    .product-image-container {
        height: 250px !important;
    }
    
    .category-image-wrapper {
        height: 250px !important;
    }
}

@media (min-width: 960px) {
    .product-image-container {
        height: 280px !important;
    }
    
    .category-image-wrapper {
        height: 280px !important;
    }
}

/* Category card image in admin list responsive */
.category-image-container {
    height: 200px !important;
}

@media (min-width: 600px) {
    .category-image-container {
        height: 250px !important;
    }
}

@media (min-width: 960px) {
    .category-image-container {
        height: 280px !important;
    }
}

/* Cart image responsive */
.cart-image {
    width: 60px !important;
    height: 60px !important;
    margin-left: 0.5rem !important;
}

@media (min-width: 600px) {
    .cart-image {
        width: 80px !important;
        height: 80px !important;
        margin-left: 1rem !important;
    }
}

/* Footer responsive */
footer {
    padding: 2rem 0 !important;
}

@media (min-width: 600px) {
    footer {
        padding: 2.5rem 0 !important;
    }
}

@media (min-width: 960px) {
    footer {
        padding: 3rem 0 !important;
    }
}

/* Typography responsive */
@media (max-width: 599px) {
    h1, .h1 {
        font-size: 1.75rem !important;
    }
    h2, .h2 {
        font-size: 1.5rem !important;
    }
    h3, .h3 {
        font-size: 1.25rem !important;
    }
    h4, .h4 {
        font-size: 1.1rem !important;
    }
    h5, .h5 {
        font-size: 1rem !important;
    }
}

/* Container padding responsive */
@media (max-width: 599px) {
    .mud-container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
}








