/* =========================================
   CRITICAL STYLES - Load First
   ========================================= */
/* General Styles */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

.btn-primary {
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}

.btn-light {
    --bs-btn-color: #fdfdfd;
    --bs-btn-bg: #de5151;
    --bs-btn-border-color: #de5151;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #de5151;
    --bs-btn-hover-border-color: #de5151;
    --bs-btn-focus-shadow-rgb: 211,212,213;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #c6c7c8;
    --bs-btn-active-border-color: #babbbc;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #f8f9fa;
    --bs-btn-disabled-border-color: #f8f9fa;
}

/* =========================================
   LAYOUT COMPONENTS
   ========================================= */
/* Header Styles */
.top-bar {
    font-size: 0.85rem;
}

.social-icons a:hover {
    color: #0d6efd !important;
}

.navbar-brand {
    font-size: 1.5rem;
}

/* Subcategory navigation styling */
.category-subnav {
    display: flex;
    flex-direction: column;
}

.category-subnav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #242424 !important;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.category-subnav-link:hover {
    color: #242424 !important;
    transform: translateX(5px);
    text-decoration: none;
}

/* Add a subtle indicator for subcategory links */
.category-subnav-link::before {
    content: "→";
    margin-right: 0.5rem;
    opacity: 0.7;
}
/* Dropdown Menu */
.dropdown-menu {
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border: none;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.dropdown-item.active {
    background-color: #0d6efd;
    color: white;
}

/* Multi-level dropdown menu */
.dropdown-menu li {
    position: relative;
}

.dropdown-menu .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
}

.dropdown-menu .submenu-left {
    right: 100%;
    left: auto;
}
.dropdown-menu > li:hover > .submenu {
    display: block;
}

/* Breadcrumbs */
.breadcrumb-item a {
    text-decoration: none;
}

/* =========================================
   SECTION COMPONENTS
   ========================================= */
/* Section Headers */
.section-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #0d6efd;
}

/* Banner Boxes */
.banner-box {
    overflow: hidden;
    transition: transform 0.3s;
    /*height: 209px;
    margin-top: 2px;*/
}

.banner-box:hover {
    transform: translateY(-5px);
}

.banner-box img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.banner-box:hover img {
    transform: scale(1.05);
}

.banner-content {
    z-index: 1;
}

.banner-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
    z-index: 0;
    pointer-events: none; /* Allow clicks to pass through the overlay */
}

.banner-content h3 {
    font-size: 1.1rem;
    color: white;
}

p.mb-3 {
    color: white;
}

/* Full Width Banner */
.banner-full {
    overflow: hidden;
}

.banner-full img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.banner-full:hover img {
    transform: scale(1.05);
}

.banner-full .banner-content {
    max-width: 50%;
    z-index: 1;
    padding-top: 200px !important;
}

/* Feature Boxes */
.feature-box {
    background-color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: #0d6efd;
}

/* =========================================
   PRODUCT COMPONENTS
   ========================================= */
/* Product Card Styles */

/* Product card text elements with proper line clamping */
.product-card .card-title {
    height: 3.00rem; /* Fixed height for product titles */
    overflow: hidden;
    display: -webkit-box;
    display: box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    line-clamp: 2; /* Standard property */
    -webkit-box-orient: vertical;
    box-orient: vertical;
    text-overflow: ellipsis; /* Show ellipsis for overflowing text */
}

.product-card .card-text {
    height: 0.3rem; /* Fixed height for product descriptions */
    overflow: hidden;
    display: -webkit-box;
    display: box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    line-clamp: 2; /* Standard property */
    -webkit-box-orient: vertical;
    box-orient: vertical;
    text-overflow: ellipsis; /* Show ellipsis for overflowing text */
}

/* Push price and availability info to the bottom */
.product-card .card-body .d-flex {
    margin-top: auto;
}

/* Ensure consistent footer height */
.product-card .card-footer {
    background-color: white;
    border-top: none;
}

.quick-view {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    height: 2.20rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.product-price {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    font-weight: 600;
}

.sale-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #dc3545;
}

.original-price {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: #6c757d;
}

.regular-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
}

/* Strikethrough for original price */
.product-original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.875em;
    margin-left: 0.5rem;
}

/* Sale price styling */
.product-sale-price {
    color: #dc3545;
    font-weight: bold;
}

/* Discount badge styling */
.badge.bg-danger {
    font-weight: bold;
}

/* Label for "In Stock" */
.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important;
}

.product-action {
    display: none;
}

.product-thumbnail {
    cursor: pointer;
    height: 60px;
    object-fit: cover;
    border: 2px solid #dee2e6;
    transition: border-color 0.2s;
}

.product-thumbnail:hover, 
.product-thumbnail.active-thumbnail {
    border-color: #0d6efd;
}

/* Product carousel styling */
#productCarousel .carousel-item img {
    max-height: 400px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}
#productCarousel .carousel-control-prev,
#productCarousel .carousel-control-next {
    background-color: rgba(0,0,0,0.3);
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    opacity: 0.7;
}
#productCarousel .carousel-control-prev {
    left: 10px;
}
#productCarousel .carousel-control-next {
    right: 10px;
}
#productCarousel .carousel-control-prev:hover,
#productCarousel .carousel-control-next:hover {
    opacity: 1;
}

/* =========================================
   CATEGORY COMPONENTS
   ========================================= */
/* Category Images Styling */
.category-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 230px;
    transition: all 0.3s ease;
}

.category-card:hover .category-image {
    transform: scale(1.2);
}

/* Increase the size of the icon wrapper to accommodate larger images */
.category-icon-wrapper {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #e9f7f8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    overflow: hidden;
}

.category-card:hover .category-icon-wrapper {
    background-color: #3aaab2;
}

.category-icon {
    font-size: 2rem; /* Increased from 1.75rem to 2rem */
    color: #3aaab2;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    color: #fff;
}

.category-title {
    font-size: 1.5rem;
    margin-top: 0.75rem; /* Increased from 0.5rem to 0.75rem for better spacing */
    margin-bottom: 0;
    color: #343a40;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-card:hover .category-title {
    color: #3aaab2;
}

/* ordering categories, subcategories, and badges */
.subcategory-indicator {
    color: #aaa;
    font-size: 1.2em;
    display: inline-block;
    width: 20px;
    text-align: center;
}

.child-category {
    background-color: #f8f9fa !important;
    border-left: 3px solid #dee2e6;
}

.parent-category {
    background-color: #ffffff;
    border-bottom: 1px solid #dee2e6;
}


/* =========================================
   CAROUSEL COMPONENTS
   ========================================= */
/* Hero Carousel Enhancement Styles */
.carousel-caption {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 15px 20px;
    bottom: 20px;
    max-width: 40%;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.carousel-caption h2 {
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    color: #f8f9fa;
    margin-bottom: 15px;
}

.carousel-caption .btn {
    margin-top: 5px;
    padding: 8px 20px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Enhance carousel controls visibility */
.carousel-control-prev, .carousel-control-next {
    width: 10%;
    opacity: 0.7;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators {
    bottom: 0;
}

.carousel-indicators button {
    background-color: rgba(255, 255, 255, 0.5);
    height: 3px;
    width: 30px;
    margin: 0 3px;
}

.carousel-indicators button.active {
    background-color: #fff;
}

/* Carousel products homepage */ 
/* Improved carousel dots styling */
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background-color: #d6d6d6;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dots .owl-dot:hover span {
    background-color: #b3b3b3;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background-color: #007bff; /* Primary color to match your theme */
    width: 12px;
    height: 12px;
}

/* Special styling for the special offers carousel */
.special-offers-carousel .owl-dots .owl-dot.active span {
    background-color: #dc3545; /* Danger color to match the discount badges */
}

/* New Arrivals carousel specific styling */
.new-arrivals-carousel .owl-dots .owl-dot.active span {
    background-color: #28a745; /* Success color to match the "New" badge */
}

/* Featured Products carousel specific styling */
.featured-products-carousel .owl-dots .owl-dot.active span {
    background-color: #17a2b8; /* Info color to match the navigation buttons */
}

/* Popular Categories carousel specific styling */
.popular-categories-carousel .owl-dots .owl-dot.active span {
    background-color: #007bff; /* Primary color for categories */
}

/* Make sure carousel items have consistent height */
.owl-carousel .item {
    height: 100%;
}

/* Ensure product cards maintain consistent height */
.owl-carousel .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.owl-carousel .product-card .card-body {
    flex: 1 0 auto;
}

/* Popular Categories carousel styling */
.popular-categories-carousel .popular-category-card:hover {
    background-color: #e9ecef;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.popular-categories-carousel .popular-category-icon {
    font-size: 2rem;
    color: #007bff;
}

.popular-categories-carousel .popular-category-title {
    font-size: 1rem;
    margin-bottom: 0;
    color: #343a40;
    font-weight: 500;
}

/* =========================================
   BLOG COMPONENTS
   ========================================= */
/* Blog Card Styles */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Blog Image Wrapper with Fixed Aspect Ratio */
.blog-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (height/width = 9/16 = 0.5625) */
    overflow: hidden;
}

/* Blog Image Positioning */
.blog-img-wrapper img.blog-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image covers the area without distortion */
    object-position: center; /* Centers the image */
}

/* Blog Title */
.blog-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-weight: 600;
}

/* Blog Meta Information */
.blog-meta {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

/* Blog Excerpt */
.blog-excerpt {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.5em * 3);
}


/* =========================================
   FILTER COMPONENTS
   ========================================= */
/* Mobile Filter Toggle Button */
.filter-toggle-btn {
    display: none;
    width: 100%;
    margin-bottom: 1rem;
}

.filter-sidebar {
    transition: all 0.3s ease;
}


.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h5 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-consent-buttons .btn {
    white-space: nowrap;
}

.cookie-consent-buttons .btn-link {
    color: #ffffff;
    text-decoration: underline;
    opacity: 0.8;
}

.cookie-consent-buttons .btn-link:hover {
    opacity: 1;
}

/* =========================================
   RESPONSIVE STYLES
   ========================================= */
/* Mobile Responsive Styles */
@media (max-width: 991.98px) {
    .dropdown-menu .submenu {
        position: static;
        margin-left: 1rem;
        margin-right: 1rem;
        box-shadow: none;
    }
    
    /* ─────────────────────────────────────────────
       HERO CAROUSEL – full-width on ≤ lg screens
       -------------------------------------------- */
    /* wrapper column that _contains_ the #heroCarousel */
    #heroCarousel{
        width:100vw;                   /* span the whole viewport */
    }

    /* compensate for the .container gutter (-15px ±) */
    #heroCarousel,
    #heroCarousel .carousel-inner{
        margin-left: calc(-1 * (50vw - 50%));   /* pull left */
        margin-right: calc(-1 * (50vw - 50%));  /* pull right */
    }

    /* keep images truly full */
    #heroCarousel img{
        width:100vw;
        max-width:100%;
    }

       .banner-box {
        height: 150px;
    }
    
    .banner-content h3 {
        font-size: 1.25rem;
    }
    
    .banner-full .banner-content {
        max-width: 70%;
    }
    
    .banner-full h2 {
        font-size: 1.75rem;
    }
    
    /* Custom styles for mobile hamburger menu */
    .mobile-menu-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .mobile-search {
        flex-grow: 1;
        margin-right: 10px;
    }
    
    .mobile-toggler {
        width: 40px;
        height: 40px;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #3aaab2;
        border: none;
        border-radius: 4px;
    }
    
    .mobile-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 24px;
        height: 24px;
    }
    
    .filter-toggle-btn {
        display: block;
        margin-bottom: -20px !important;
    }
}

@media (max-width: 1199.98px) {
    .banner-box {
        height: 170px;
    }
    
    .banner-full .banner-content {
        max-width: 60%;
    }
}

@media (max-width: 767.98px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        justify-content: center;
        width: 100%;
    }

    .banner-box {
        height: 130px;
    }
    
    .banner-content h3 {
        font-size: 1.1rem;
    }
    
    .banner-full {
        display: contents;
    }
    
    .banner-full .banner-content {
        max-width: 80%;
    }
    
    .banner-full h2 {
        font-size: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    /* Mobile Filter Toggle Button */
    .filter-toggle-btn {
        display: block;
    }
    
    .filter-sidebar {
        display: none;
        margin-bottom: 1.5rem;
    }
    
    .filter-sidebar.show {
        display: block;
        animation: fadeIn 0.3s;
        margin-top: 10px;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    /* Responsive adjustments for category icons */
    .category-icon-wrapper {
        width: 60px; /* Reduced size for mobile but still larger than before */
        height: 60px;
    }
    
    .category-icon {
        font-size: 1.75rem;
    }
    
    .category-image {
        max-height: 45px; /* Increased from original mobile size */
    }
    
    .category-title {
        font-size: 0.8rem;
    }
    
    /* Popular categories responsive */
    .popular-category-col {
        flex: 0 0 45%; /* Two columns on smaller screens */
        max-width: 45%; /* Max width for two columns */
    }
       .owl-carousel .owl-dots {
        margin-top: 10px;
    }
    
    .owl-carousel .owl-dots .owl-dot {
        margin: 0 3px;
    }
    
    .owl-carousel .owl-dots .owl-dot span {
        width: 8px;
        height: 8px;
    }
    
    .owl-carousel .owl-dots .owl-dot.active span {
        width: 10px;
        height: 10px;
    }
    
    /* Add ellipsis for hidden dots on mobile */
    .owl-carousel .owl-dots:after {
        content: none;
    }
    
    .owl-carousel .owl-dots .owl-dot.d-none + .owl-dot.d-none {
        display: none !important;
    }
    
    .owl-carousel .owl-dots .owl-dot.d-none + .owl-dot.d-none + .owl-dot.d-none {
        display: none !important;
    }
    
    .owl-carousel .owl-dots .owl-dot.d-none + .owl-dot:not(.d-none):before {
        content: "...";
        position: absolute;
        left: -12px;
        top: -2px;
        font-size: 12px;
        color: #d6d6d6;
    }
}

@media (max-width: 600px) {
    .btn-primary {
        font-size: 0.8rem;
    }
    nav.mb-4 {
        font-size: 0.8rem;
    }
    .breadcrumb-item.active {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .banner-box {
        height: 180px;
    }
    .banner-box img {
        height: 100%;
    }
    
    .banner-content {
        padding: 0.75rem !important;
    }
    
    .banner-content h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .banner-content p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .banner-content .btn {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        display:none;
    }
    
    .banner-full {
        display: contents;
    }
    
    .banner-full .banner-content {
        max-width: 90%;
        padding: 1rem !important;
    }
    
    .banner-full h2 {
        font-size: 1.25rem;
    }
    
    .banner-full p {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0;
        position: relative;
    }
    
    .product-title {
        font-size: 0.85rem;
    }
    
    .sale-price {
        font-size: 0.95rem;
    }
    
    .original-price {
        font-size: 0.75rem;
    }
    
    .regular-price {
        font-size: 0.95rem;
    }
    
    .feature-box {
        padding: 1rem !important;
    }
    
    .feature-icon {
        font-size: 1.75rem;
    }
    
    .feature-box p {
        font-size: 0.8rem;
    }

    /* Make sure the caption is visible on mobile */
    .carousel-caption {
        display: block !important;
        padding: 10px;
        /*bottom: 10px;*/
    }
    .carousel-caption h2 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    .carousel-caption p {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    .carousel-caption .btn {
        font-size: 0.8rem;
        padding: 5px 15px;
    }
    .owl-carousel .owl-dots .owl-dot span {
        width: 8px;
        height: 8px;
    }
    .owl-carousel .owl-dots .owl-dot.active span {
        width: 10px;
        height: 10px;
    }

    /* Popular categories responsive */
    .popular-category-col {
        flex: 0 0 100%; /* One column on extra small screens */
        max-width: 100%; /* Max width for one column */
    }

    .popular-categories-carousel .popular-category-icon {
        font-size: 1.5rem;
    }
    .popular-categories-carousel .popular-category-title {
        font-size: 0.9rem;
    }

}