.wd-offers-wrapper {
    background: #fff !important;
    border-radius: 8px !important;
    padding: 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    margin: 12px 0 !important;
}

@keyframes badgePulse {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 2px 4px rgba(227, 24, 55, 0.2);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 4px 8px rgba(227, 24, 55, 0.4);
    }
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 2px 4px rgba(227, 24, 55, 0.2);
    }
}

@keyframes badgeGlow {
    0% {
        background: linear-gradient(45deg, #E31837, #FF4B6E);
    }
    50% {
        background: linear-gradient(45deg, #FF4B6E, #E31837);
    }
    100% {
        background: linear-gradient(45deg, #E31837, #FF4B6E);
    }
}

@keyframes fireEmoji {
    0% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.2) rotate(-5deg);
    }
    50% {
        transform: scale(1) rotate(0deg);
    }
    75% {
        transform: scale(1.2) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.wd-offers-title {
    font-size: 18px !important;
    color: #2B3445 !important;
    margin-bottom: 12px !important;
    text-align: center !important;
    font-weight: 600 !important;
}

.wd-offers-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.wd-offer-card {
    border: 1px solid #E7E8EC !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    overflow: visible !important;
    margin-top: 12px !important;
}

.wd-offer-card:hover {
    border-color: #2B3445 !important;
}

.wd-offer-card.selected {
    border-color: #2B3445 !important;
    background: rgba(43, 52, 69, 0.04) !important;
}

.wd-offer-card.wd-offer-highlighted {
    border-color: #E31837 !important;
    background: rgba(227, 24, 55, 0.04) !important;
}

.wd-offer-badge-wrapper {
    position: absolute !important;
    top: -12px !important;
    transform: translateX(-110%) !important;
    z-index: 2 !important;
    width: auto !important;
    text-align: center !important;
}

.wd-offer-badge {
    background: linear-gradient(45deg, #E31837, #FF4B6E) !important;
    color: white !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 4px rgba(227, 24, 55, 0.2) !important;
    animation: badgePulse 2s ease-in-out infinite, badgeGlow 3s linear infinite !important;
}

.wd-offer-badge::before {
    content: '🔥' !important;
    margin-left: 10px !important;
    display: inline-block !important;
    animation: fireEmoji 1.5s ease-in-out infinite !important;
}

.wd-offer-radio {
    display: flex !important;
    align-items: flex-start !important;
}

.wd-offer-radio input[type="radio"] {
    display: none !important;
}

.wd-offer-radio label {
    width: 100% !important;
    cursor: pointer !important;
    padding: 10px !important;
    position: relative !important;
    padding-left: 35px !important;
}

.wd-offer-radio label:before {
    content: '' !important;
    position: absolute !important;
    left: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #CBD5E1 !important;
    border-radius: 50% !important;
    transition: all 0.2s ease !important;
}

.wd-offer-radio label:after {
    content: '' !important;
    position: absolute !important;
    left: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: #2B3445 !important;
    opacity: 0 !important;
    transition: all 0.2s ease !important;
}

.wd-offer-radio input[type="radio"]:checked + label:before {
    border-color: #2B3445 !important;
}

.wd-offer-radio input[type="radio"]:checked + label:after {
    opacity: 1 !important;
}

.wd-offer-main {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

.wd-offer-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.wd-offer-name {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #2B3445 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.wd-offer-discounts {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.wd-offer-discount-percentage {
    background: linear-gradient(45deg, #2B3445, #3D4A5F) !important;
    color: white !important;
    padding: 2px 10px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 4px rgba(43, 52, 69, 0.2) !important;
}

.wd-offer-discount-amount {
    color: #2B3445 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

.wd-offer-prices {
    display: flex !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 8px 10px !important;
    background: rgba(43, 52, 69, 0.03) !important;
    border-radius: 4px !important;
    margin-top: 4px !important;
}

.wd-price-single,
.wd-price-total {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.wd-price-label {
    color: #2B3445 !important;
    font-size: 13px !important;
    white-space: nowrap !important;
    opacity: 0.7 !important;
}

.wd-price-old {
    color: #2B3445 !important;
    text-decoration: line-through !important;
    font-size: 13px !important;
    text-decoration-color: #E31837 !important;
    opacity: 0.6 !important;
}

.wd-price-current {
    color: #E31837 !important;
    font-weight: 700 !important;
    font-size: 15px !important;
}

/* RTL Support */
.rtl .wd-price-label {
    margin-left: 4px !important;
}

.rtl .wd-offer-radio label {
    padding-left: 10px !important;
    padding-right: 35px !important;
}

.rtl .wd-offer-radio label:before {
    left: auto !important;
    right: 10px !important;
}

.rtl .wd-offer-radio label:after {
    left: auto !important;
    right: 14px !important;
}

/* Hover Effects */
.wd-offer-card:hover .wd-offer-radio label:before {
    border-color: #2B3445 !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.wd-offer-highlighted:hover .wd-offer-radio label:before {
    border-color: #E31837 !important;
}

.wd-offer-highlighted .wd-offer-radio input[type="radio"]:checked + label:before {
    border-color: #E31837 !important;
}

.wd-offer-highlighted .wd-offer-radio input[type="radio"]:checked + label:after {
    background: #E31837 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wd-offer-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .wd-offer-prices {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .wd-price-single,
    .wd-price-total {
        justify-content: space-between !important;
        width: 100% !important;
    }

    .wd-offer-radio label {
        padding: 12px !important;
        padding-left: 40px !important;
    }

    .rtl .wd-offer-radio label {
        padding: 12px !important;
        padding-right: 40px !important;
    }
} 