/* ============================================
   GALLERY SECTION - Premium Swiper Grid
   ============================================ */
.gallery-section {
    background: var(--white);
}

.gallery-container {
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-main-swiper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-md);
}

.gallery-main-swiper .swiper-slide {
    aspect-ratio: 16/9;
}

.gallery-main-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs-swiper {
    height: 100px;
    box-sizing: border-box;
    padding: var(--space-xs) 0;
}

.gallery-thumbs-swiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.gallery-thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--primary);
}

.gallery-thumbs-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swipe-hint {
    text-align: center;
    font-size: var(--font-xs);
    color: var(--medium-gray);
    margin-top: var(--space-sm);
}

.gallery-section .swiper-button-next,
.gallery-section .swiper-button-prev {
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(5px);
}

.gallery-section .swiper-button-next::after,
.gallery-section .swiper-button-prev::after {
    font-size: var(--font-base);
    font-weight: 800;
}