.tss-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.tss-slider-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

@media (max-width: 767px) {
    .tss-slider-wrapper {
        height: auto;
        aspect-ratio: 4/5;
    }
}

.tss-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: transform 0.5s ease-in-out;
    transform: translateX(100%);
}

.tss-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.tss-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tss-slide-image picture,
.tss-slide-image img.tss-slide-img {
    width: 100%;
    height: 100%;
}

.tss-slide-image img.tss-slide-img {
    object-fit: cover;
    object-position: center;
}

.tss-slide-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    padding: 30px;
    color: white;
    display: flex;
    bottom: 0;
    justify-content: space-between;
}

.tss-slide-text {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.tss-slide-title {
    font-size: 7rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: white;
    text-transform: uppercase;
}

.tss-slide-description {
    font-size: 1.5rem;
}

.tss-slide-btn {
    font-size: 1.2rem;
    padding: 12px 30px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #e9bc40;
}

.tss-slide-btn:hover {
    background: #9B1310;
}

/* Navigation */
.tss-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 3;
    pointer-events: none;
}

.tss-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tss-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
}

.tss-nav-btn:focus {
    outline: none;
}

.tss-prev {
    left: 20px;
}

.tss-next {
    right: 20px;
}

.tss-nav-btn i {
    font-size: 22px;
    color: rgba(13, 19, 35, 0.85);
    position: relative;
}

.tss-nav-btn.tss-prev i {
    right: 1px;
}


/* Indicateurs */
.tss-slider-indicators {
    display: flex;
    gap: 10px;
    z-index: 3;
    align-items: center;
}

.tss-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tss-indicator.active,
.tss-indicator:hover {
    background: white!important;
    border-color: white!important;
}

/* Responsive */
@media (max-width: 767px) {

    .tss-slide-text {
        gap: 18px;
        flex-direction: column-reverse;
    }

    .tss-slide-btn {
        width: 100%;
    }

}

/* Pause au survol */
.tss-slider-container.paused .tss-slide {
    animation-play-state: paused;
}

/* Boutons désactivés */
.tss-nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.tss-nav-btn.disabled:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Supprimer complètement les indicateurs */
.tss-slider-indicators,
.tss-indicator {
    display: none !important;
}