.slideshow-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: var(--space-section, 40px) 0;
}

.slideshow {
    position: relative;
    width: 1920px;
    max-width: 100%;
    height: 750px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: #000;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-1 {
    background: linear-gradient(135deg, #3d1f4a 0%, #6b2d5c 100%);
}

.slide-2 {
    background: linear-gradient(135deg, #6b2a10 0%, #c45c1a 100%);
}

.slide-3 {
    background: linear-gradient(135deg, #1a4a32 0%, #2d7a52 100%);
}

.slide-label {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 12px;
    color: #ffffff;
    font-size: clamp(1.25rem, 3vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-align: center;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.slide-btn-icon {
    display: block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.slide-btn:hover,
.slide-btn:focus-visible {
    background: rgba(0, 0, 0, 0.75);
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.slide-btn.prev {
    left: 20px;
}

.slide-btn.next {
    right: 20px;
}

.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.slide-dot {
    width: 14px;
    height: 14px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.slide-dot:hover,
.slide-dot:focus-visible {
    background: rgba(255, 255, 255, 0.7);
    outline: none;
}

.slide-dot.active {
    background: #ffffff;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .slideshow {
        height: 320px;
    }

    .slide-btn {
        width: 42px;
        height: 42px;
    }

    .slide-btn-icon {
        width: 20px;
        height: 20px;
    }

    .slide-dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .slideshow {
        height: 220px;
        border-radius: 10px;
    }

    .slide-btn.prev {
        left: 10px;
    }

    .slide-btn.next {
        right: 10px;
    }
}
