.category-sidebar-content{
    display: none;
}

.category-sidebar{
    position: relative;
    height: auto;
    background-color: #fff;
}

.category-sidebar ul{
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 990;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    list-style: none;
}

.category-sidebar ul ul{
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: auto;
    z-index: 990;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

.category-sidebar ul li{
    position: relative;
}

.category-sidebar ul li:hover{
    background: #dddddd81;
}

.category-sidebar ul li a{
    display: flex;
    align-items: center;
    padding: 5px 10px;
    color: inherit;
    text-decoration: none;
    transition: background 0.2s;
}

.category-sidebar ul li a img{
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 5px;
}

.category-sidebar ul li a span{
    flex: 1;
}

.category-sidebar ul li a i{
    margin-left: auto;
}

.category-sidebar ul li:hover > ul{
    display: block;
}

.social-media-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background-color: #fff;
    padding: 5px;
    border-radius: 9999px;
    width: 32px;
    height: 32px;
    margin: 0 4px;
    color: #222;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    transform: scale(1);
    transition: transform 0.2s;
}
.social-media-icons a:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: scale(1.3);
}

/* Animation for autoload category products */
@keyframes slideFadeLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFadeRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFadeDown {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.autoload-content-left {
    animation: slideFadeLeft 0.6s ease-out;
}

.autoload-content-right {
    animation: slideFadeRight 0.6s ease-out;
}

.autoload-content-down {
    animation: slideFadeDown 0.6s ease-out;
}


/* Product Carousel Styles */
.product-carousel-wrapper {
    position: relative;
    padding: 1.5rem !important;
}

.collection-carousel {
    position: relative;
}

.collection-carousel .slick-slide {
    padding: 0 8px;
}

.collection-carousel .slick-list {
    margin: 0 -8px;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
}

.carousel-nav-btn:hover {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

@media (max-width: 768px) {
    .carousel-prev {
        left: -10px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .carousel-next {
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .product-carousel-wrapper {
        padding: 1rem !important;
    }
}

.collection-carousel .item-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-carousel .item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Slick Carousel Custom Styles */
.collection-carousel .slick-dots {
    bottom: -40px;
}

.collection-carousel .slick-dots li button:before {
    font-size: 12px;
    color: var(--color-primary);
    opacity: 0.3;
}

.collection-carousel .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--color-primary);
}