/* Food and Drink Swiper Styles */
.food-swiper, .drink-swiper {
    width: 100vw;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.food-swiper {
    background: rgba(0, 0, 0, 0.05);
}

.drink-swiper {
    background: rgba(0, 0, 0, 0.03);
}

.scroll-container {
    display: flex;
    gap: 30px;
    position: relative;
    width: max-content;
    padding: 0 20px;
}

.food-swiper .scroll-container {
    animation: scrollLeft 40s linear infinite;
}

.drink-swiper .scroll-container {
    animation: scrollRight 40s linear infinite;
}

.scroll-item {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.scroll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

@media (max-width: 768px) {
    .scroll-item {
        width: 200px;
        height: 200px;
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 8 - 30px * 8));
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(calc(-300px * 8 - 30px * 8));
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.activity-block:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.slider-nav {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: 2px solid var(--nature-blue);
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--nature-blue);
    transform: scale(1.2);
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 136, 163, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-button:hover {
    background: var(--nature-blue);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .activity-slider {
        padding: 20px;
    }

    .slider-button {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .slider-nav {
        bottom: 30px;
    }

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