.woocommerce-categories-carousel-wrapper {
    position: relative;
    padding: 20px 0;
    max-width: 100%;
}

.woocommerce-categories-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-carousel .owl-stage {
    padding-top: 20px;
    
}
.category-item {
    margin-left: 1px;
    /*background-color: rgba(255, 255, 255, 0.1);*/
    /*border: 1px solid rgba(255, 255, 255, 0.2);*/
    border: 1px solid #554949;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}


.slide-bg-1 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8155637254901961) 55%, rgba(147, 57, 146, 1) 97%);
}

.slide-bg-2 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8155637254901961) 55%, rgb(85 72 196) 97%);
}

.slide-bg-3 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8155637254901961) 55%, #4ABED3 97%);
}

.slide-bg-4 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8155637254901961) 55%, #3EC266 97%);
}

.slide-bg-5 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8155637254901961) 55%, #93393B 97%);
}

.slide-bg-6 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8155637254901961) 55%, #B19F18 97%);
}

.category-image img:hover {
    transform: scale(1.05);
}
.category-item:hover {
    /*transform: scale(1.05);*/
}
/*.owl-dots {*/
/*    display: block !important;*/
/*}*/
/*.owl-dot span {*/
/*    width: 10px;*/
/*    height: 10px;*/
/*    background: #999;*/
/*    display: inline-block;*/
/*    margin: 0 5px;*/
/*    border-radius: 50%;*/
/*}*/

/*.owl-dot.active span {*/
/*    background: #333;*/
/*}*/
.category-image {
    display: flex;
    align-items: center;
    justify-content: center;
    /*height: 120px;*/
    overflow: hidden;
	height:500px;
}

.category-image img {
    width: 100px;
    height: 100px;
    object-fit: cover; /* Ensures the image fully covers the area */
    border-radius: 50%; /* Optional: Makes it circular */
}

.category-image img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.category-name {
   font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-top: 10px;
}

.category-count {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 15px;
}
.category-button{
	display: flex;
  justify-content: center;
    margin-bottom: 20px;
}
.view-collection-button {
    border: 1px solid #ffffff3d;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    background-color: rgba(245, 245, 245, 0);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
    transition: background 0.3s ease;
    min-width: 120px;
    height: 40px;
    text-align: center;
}

.view-collection-button:hover {
    background-color: #fff;
    color: #000;
}

.prev-button, .next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 20px;
    padding: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    display: none;
     z-index: 10;
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

.prev-button:hover, .next-button:hover {
    background: rgba(255, 255, 255, 0.5);
}


        
/* Responsive */
@media (max-width: 768px) {
       .next-button, 
       .prev-button {
        display: none !important;
    }
    .category-item {
        padding: 15px;
    }

    .category-image img {
        width: 80px;
        height: 80px;
    }

    .view-collection-button {
        padding: 8px 10px;
        font-size: 10px;

        /*padding: 8px 16px;*/
        /*font-size: 12px;*/
    }
    .woocommerce-categories-carousel-wrapper {
    padding: 0px 0px;
    }
}
@media (max-width: 1024px) {
    .next-button, .prev-button {
        display: none !important;
    }
}

