/*.wcs-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.wcs-slider {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
    will-change: transform;
}

.wcs-slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.wcs-slide img {
    width: 100%;
    height: auto;
}

.wcs-prev, .wcs-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.2) !important;
    color: white;
    border: none;
    padding: 10px !important;
    cursor: pointer;
    z-index: 10;
}

.wcs-prev { left: 10px; }
.wcs-next { right: 10px; }

.wcs-prev:hover, .wcs-next:hover {
    background: rgba(0, 0, 0, 0.5) !important;
}

.wcs-product-categories {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}
*/

.wcs-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1/1; /* Adjust based on your needs */
}

.wcs-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.wcs-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.wcs-slide.active {
    opacity: 1;
}

.wcs-prev, .wcs-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.2) !important;
    color: white;
    border: none;
    padding: 10px !important;
    cursor: pointer;
    z-index: 2;
}

.wcs-prev { left: 10px; }
.wcs-next { right: 10px; }

.wcs-prev:hover, .wcs-next:hover {
    background: rgba(0, 0, 0, 0.5) !important;
}
