.deal-section {
    width: 100%;
    direction: rtl;
}

.deal-section-container {
    width: 100%;
}

.deal-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.deal-section-heading {
    max-width: 700px;
}

.deal-section-title {
    margin: 0 0 8px;
    line-height: 1.3;
}

.deal-section-subtitle {
    margin: 0;
    line-height: 1.8;
}

.deal-section-timer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    min-height: 48px;
    transition: all 0.25s ease;
}

.deal-section-timer .timer-part {
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.deal-section-timer .timer-separator {
    line-height: 1;
}

.deal-section-slider {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.deal-section-slide {
    height: auto;
}

.deal-section-pagination {
    text-align: center;
}

.deal-section-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: #d1d5db;
    transition: all 0.25s ease;
}

.deal-section-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 999px;
    background: #10b981;
}

@media (max-width: 1024px) {
    .deal-section-header {
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .deal-section-header {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .deal-section-timer {
        width: fit-content;
        max-width: 100%;
    }

    .deal-section-title {
        line-height: 1.4;
    }

    .deal-section-subtitle {
        line-height: 1.9;
    }
}
