.home-banner-slider .slide,
.home-banner-slider .banner-right-image img {
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
}

/* Slick Slider Dots Customization */
.slick-dots {
    bottom: 10px;
}

.slick-dots li button::before {
    font-size: 12px;
    color: #ffffff;
}

.slick-dots li.slick-active button::before {
    color: #FFC936;
}

.slick-prev:before,
.slick-next:before {
    color: gray !important;
    font-size: 20px;
    line-height: 40px;
}

.slick-prev {
    left: 10px !important;
    z-index: 10;
}

.slick-next {
    right: 10px !important;
    z-index: 10;
}

.category-slider {
    font-family: 'Poppins', sans-serif;
}

.price-tag {
    background-color: #fff5eb;
    color: #000;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0px !important;
    left: 50%;
    transform: translateX(-50%);
}

.category-name {
    color: #1F2937;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

/* Sidebar Styles */
.category-sidebar {
    transition: transform 0.3s ease;
}

.category-sidebar.hidden {
    transform: translateX(-100%);
    display: none;
}

/* Sidebar toggle button */
#showCategoryBtn {
    font-size: 1.25rem;
    transition: opacity 0.3s ease;
}

#showCategoryBtn.hidden {
    display: none;
}

#categoryBtn.hidden {
    display: none;
}

/* Category list styles */
.category-container {
    max-width: 600px;
    margin: 0 auto;
}

.category-heading {
    font-size: 1.5rem;
    color: #e91e63;
    margin-bottom: 15px;
    font-weight: bold;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.category-item span {
    font-size: 1.2rem;
    margin-right: 8px;
}

.category-item a {
    text-decoration: none;
    color: #1a3c34;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.category-item a:hover {
    color: #e91e63;
}

.arrow-controls button:hover {
    background-color: #f3f4f6;
}



/* Responsive Adjustments */
@media (min-width: 1280px) {

    .home-banner-slider .slide,
    .home-banner-slider .banner-right-image img {
        height: 300px;
    }

    .category-sidebar {
        width: 20%;
    }

    .category-sidebar.hidden+main {
        width: 100% !important;
    }

    main {
        width: 80%;
        transition: width 0.3s ease;
    }

    .price-tag {
        font-size: 0.75rem;
        padding: 2px 12px;
    }

    .category-name {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {

    .home-banner-slider .slide,
    .home-banner-slider .banner-right-image img {
        height: 250px;
    }

    .category-sidebar {
        width: 25%;
    }

    main {
        width: 75%;
    }

    .category-sidebar.hidden+main {
        width: 100% !important;
    }

    .price-tag {
        font-size: 0.7rem;
        padding: 2px 10px;
    }

    .category-name {
        font-size: 0.8rem;
    }

    .category-heading {
        font-size: 1.75rem;
    }

    .category-item span {
        font-size: 1.1rem;
    }

    .category-item a {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .category-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 1000;
        background: white;
        width: 80%;
        max-width: 280px;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    }

    .category-sidebar.open {
        transform: translateX(0);
        display: block;
    }

    .home-banner-slider .slide,
    .home-banner-slider .banner-right-image img {
        height: 200px;
    }
    
    .slick-dotted.slick-slider{
        margin-bottom: 0px !important;
    }

    .price-tag {
        font-size: 0.6rem;
        padding: 2px 8px;
    }

    .category-name {
        font-size: 0.7rem;
    }

    .category-heading {
        font-size: 1.25rem;
    }

    .category-item span {
        font-size: 1rem;
    }

    .category-item a {
        font-size: 0.9rem;
    }

    body {
        padding: 10px;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* #showCategoryBtn {
        display: block;
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 1100;
        background: white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    } */
}

@media (max-width: 480px) {

    .home-banner-slider .slide,
    .home-banner-slider .banner-right-image img {
        height: 150px;
    }

    .category-heading {
        font-size: 1.1rem;
    }

    .category-item span {
        font-size: 0.9rem;
        margin-right: 6px;
    }

    .category-item a {
        font-size: 0.85rem;
    }

    body {
        padding: 8px;
    }

    .price-tag {
        font-size: 0.55rem;
        padding: 1px 6px;
    }

    .category-name {
        font-size: 0.65rem;
    }
}