/* Offers Widget Styles */

.offers-widget-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Section Header */
.offers-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.offers-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    color: #333333;
}

.offers-section-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Carousel */
.offers-carousel {
    position: relative;
    width: 100%;
}

.offers-carousel .swiper {
    width: 100%;
    padding-bottom: 50px;
}

.offers-carousel .swiper-slide {
    height: auto;
}

/* Offer Banner */
.offer-banner {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.offer-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.offer-banner:hover {
    transform: scale(1.02);
}

.offer-banner.no-link {
    cursor: default;
}

.offer-banner.no-link:hover {
    transform: none;
}

/* Pagination */
.offers-carousel .swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    text-align: center !important;
    display: block !important;
}

.offers-carousel .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #d1d5db !important;
    opacity: 1 !important;
    margin: 0 6px !important;
    display: inline-block !important;
    border-radius: 50% !important;
    transition: all 0.4s ease !important;
}

.offers-carousel .swiper-pagination-bullet-active {
    width: 32px !important;
    background: var(--wts-brand, #007bff) !important;
    border-radius: 12px !important;
    transform: none !important;
}

/* Single Slide Mode */
.offers-widget-container.single-slide .swiper-pagination {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .offers-section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .offers-section-title {
        font-size: 24px;
    }
    
    .offers-section-header {
        margin-bottom: 30px;
    }
    
    .offers-carousel .swiper {
        padding-bottom: 40px;
    }
}

/* Elementor Editor Placeholder */
.elementor-widget-offers-widget .elementor-alert {
    padding: 20px;
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 4px;
    color: #1565c0;
    text-align: center;
}
