/*your custom css goes here*/ 

@media (max-width: 1199px) {
    /* Enhanced Colorful Bottom Mobile Nav */
    .aiz-mobile-bottom-nav {
        background-color: #ffffff !important;
        background: #ffffff !important;
        box-shadow: 0px -5px 25px rgba(0, 0, 0, 0.15) !important;
        border-top: 1px solid rgba(0,0,0,0.05) !important;
        border-radius: 20px 20px 0 0 !important;
        padding: 8px 10px 10px 10px !important;
        z-index: 1040;
    }

    .aiz-mobile-bottom-nav .col, 
    .aiz-mobile-bottom-nav .col-auto {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 5px !important;
    }

    .aiz-mobile-bottom-nav a {
        border-radius: 12px;
        padding: 10px 5px !important;
        margin: 0;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none !important;
        position: relative;
        width: 100%;
        background-color: transparent !important;
    }

    /* Active State Colorful Highlighting - SOLID PILL */
    .aiz-mobile-bottom-nav a.svg-active, 
    .aiz-mobile-bottom-nav a.active {
        background-color: #e62e04 !important; /* Solid bright red highlight */
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(230, 46, 4, 0.3) !important;
    }

    .aiz-mobile-bottom-nav a.svg-active span,
    .aiz-mobile-bottom-nav a.active span {
        color: #ffffff !important;
        font-weight: 800;
        font-size: 11px !important;
        margin-top: 5px !important;
    }

    .aiz-mobile-bottom-nav a.svg-active svg path, 
    .aiz-mobile-bottom-nav a.svg-active svg g,
    .aiz-mobile-bottom-nav a.active svg path, 
    .aiz-mobile-bottom-nav a.active svg g {
        fill: #ffffff !important;
    }
    
    /* Inactive State Styling */
    .aiz-mobile-bottom-nav a:not(.active):not(.svg-active) span {
        color: #6b7280 !important; /* Slightly darker grey for better contrast */
        font-weight: 600;
        font-size: 10px !important;
        margin-top: 5px !important;
    }
    .aiz-mobile-bottom-nav a:not(.active):not(.svg-active) svg path,
    .aiz-mobile-bottom-nav a:not(.active):not(.svg-active) svg g {
        fill: #6b7280 !important;
    }
    
    .aiz-mobile-bottom-nav a:active {
        transform: scale(0.92);
    }
    
    /* Cart badge tweak */
    .aiz-mobile-bottom-nav a.svg-active .badge,
    .aiz-mobile-bottom-nav a.active .badge {
        box-shadow: 0 0 0 2px #e62e04 !important;
        background-color: #ffffff !important;
        color: #e62e04 !important;
        font-weight: bold;
    }

    .aiz-mobile-bottom-nav a:not(.active):not(.svg-active) .badge {
        box-shadow: 0 0 0 2px #ffffff !important;
        background-color: #e62e04 !important;
        color: #ffffff !important;
    }

    .aiz-mobile-bottom-nav .badge {
        border-radius: 50% !important;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px !important;
        top: -6px !important;
        right: -6px !important;
    }
}

@media (max-width: 991px) {
    /* Hide arrows on mobile for category slider */
    .mobile-category-slider .slick-arrow {
        display: none !important;
    }
}