.wbss-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.wbss-slider-container {
    display: flex;
    flex-direction: row;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    justify-content: flex-start;
    will-change: transform;
}

.wbss-slide-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.wbss-slide {
    flex: 0 0 290px;
    position: relative;
    width: 290px;
    height: 185px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
    margin-left: 40px;
    transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
}

.wbss-slide.active {
    opacity: 1;
    visibility: visible;
}

.wbss-slide:last-child {
    margin-right: 0;
}

.wbss-slide img {
    max-width: 290px;
    max-height: 185px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.wbss-slide.wbss-bordered {
    border: 10px solid;
    border-top-color: var(--dark-color);
    border-left-color: var(--dark-color);
    border-right-color: var(--light-color);
    border-bottom-color: var(--light-color);
    box-sizing: border-box;
    box-shadow: 0 0 0 1px #000;
}

.wbss-slide.wbss-bordered::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1px solid #000;
    pointer-events: none;
}

.wbss-slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    box-sizing: border-box;
    z-index: 2;
}

.wbss-prev,
.wbss-next {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 14px;
    transition: background 0.3s;
}

.wbss-prev:hover,
.wbss-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.wbss-slider-bullets {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.wbss-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.wbss-bullet.active {
    background: white;
} 