/* Slideshow Section */
.slideshow-section {
    padding: 0;
    background-color: #f7f7f7;
}

.slideshow-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.tour-swiper {
    width: 100%;
    padding: 40px 80px 20px;
    position: relative;
    overflow: visible;
    background-color: #f7f7f7;
}

.tour-swiper .swiper-wrapper {
    align-items: center;
}

.tour-swiper .swiper-slide {
    width: auto !important;
    height: auto;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.tour-swiper .swiper-slide img {
    display: block;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Navigation Buttons */
.tour-button-prev,
.tour-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-button-prev:hover,
.tour-button-next:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.tour-button-prev::after,
.tour-button-next::after {
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.tour-button-prev {
    left: 10px;
}

.tour-button-next {
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    width: 80px;
    height: 80px;
}

/* ORIGINAL Badge */
.original-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    pointer-events: none;
    margin-top: -5px;
}

/* Section Title */
.slideshow-title {
    background-color: #4a90a4;
    padding: 40px 20px 60px;
    text-align: center;
}

.slideshow-title h2 {
    color: white;
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .slideshow-container {
        padding: 0;
    }

    .tour-swiper {
        padding: 20px 60px 10px;
    }

    .tour-swiper .swiper-slide img {
        width: 150px;
        height: 150px;
    }

    .tour-button-prev,
    .tour-button-next {
        width: 45px;
        height: 45px;
    }

    .tour-button-prev {
        left: 5px;
    }

    .tour-button-next {
        right: 5px;
        width: 60px;
        height: 60px;
    }

    .tour-button-prev::after,
    .tour-button-next::after {
        font-size: 18px;
    }

    .original-badge {
        font-size: 9px;
    }

    .slideshow-title h2 {
        font-size: 24px;
    }
}
