/* Promotions Gallery Component */
.promotions-gallery-container {
    width: 100%;
    overflow: hidden;
}

.promotions-gallery {
    width: 100%;
    overflow: visible;
    position: relative;
}

.promotions-gallery .swiper-wrapper {
    align-items: center;
}

.promotions-gallery .swiper-slide {
    width: 758px;
    max-width: 85%;
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(0.9);
}

.promotions-gallery .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.promotions-gallery .swiper-slide .gallery-image {
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: 8px;
}

/* Pagination Container */
.gallery-pagination-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.gallery-pagination {
    position: static !important;
    display: flex;
    gap: 8px;
    width: auto !important;
}

.gallery-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    opacity: 1 !important;
    transition: background 0.2s ease;
    margin: 0 !important;
    border-radius: 50%;
}

.gallery-pagination .swiper-pagination-bullet-active {
    background: #5454D4;
}

.gallery-counter {
    font-size: 16px;
    font-weight: 500;
    color: #46494F;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .promotions-gallery .swiper-slide {
        width: 241px;
        max-width: 241px;
    }

    .promotions-gallery .swiper-slide .gallery-image {
        width: 241px;
        height: 241px;
    }

    .gallery-pagination-container {
        margin-top: 16px;
        gap: 12px;
    }

    .gallery-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .gallery-counter {
        font-size: 14px;
    }
}
