.cs-slider-wrapper {
    text-align: center;
    margin: auto;
}

.cs-slider-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    border-bottom: solid 2px transparent;
}

    .cs-slider-tabs .active {
        border-bottom: solid 2px var(--primary);
    }

    .cs-slider-tabs li {
        margin: 0 10px;
        cursor: pointer;
        list-style: none;
    }

.cs-slider {
    display: none;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
}

/* SLIDE CONTAINER (for sliding transition) */
.cs-slide-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

/* INDIVIDUAL SLIDES */
.cs-slide {
    flex: 0 0 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

    /* IMAGE STYLING */
    .cs-slide img {
        object-fit: cover;
        width: 100% !important;
        height: 100% !important;
        object-position: center;
        position: absolute;
        top: 0;
        left: 0;
    }

/* NAVIGATION ARROWS */
.cs-prev-arrow,
.cs-next-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    user-select: none;
    text-shadow: 0 0 4px #fff;
}

.cs-prev-arrow {
    left: 10px;
}

.cs-next-arrow {
    right: 10px;
}

/* INDICATOR DOTS */
.cs-indicator-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.cs-indicator-dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .cs-indicator-dot.active {
        background-color: var(--primary);
    }
