/*
 * Offer Banner Styles
 */

.offer-banner {
    background: linear-gradient(90deg, #0A0A12 0%, #1A1630 50%, #0A0A12 100%);
    padding: 30px 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15), transparent 70%);
    pointer-events: none;
}

.offer-banner__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.offer-banner__icon-box {
    flex-shrink: 0;
}

.offer-banner__icon {
    font-size: 50px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
    animation: gift-pulse 2s infinite ease-in-out;
}

.offer-banner__text {
    flex: 1;
    text-align: center;
}

.offer-banner__title {
    color: #fff;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 800;
    margin: 0 0 8px 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.offer-banner__subtitle {
    color: #f8f9fa;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    margin: 0;
    opacity: 0.9;
}

.offer-banner__highlight {
    color: var(--mw-gold, #D4AF37);
    font-weight: 900;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.7), 0 0 30px rgba(212, 175, 55, 0.4);
}

.offer-banner__cta {
    flex-shrink: 0;
}

.offer-banner__button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #0A0A12 !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-banner__button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 50px rgba(255, 255, 255, 0.4);
}

.offer-banner__button-icon {
    font-size: 18px;
}

@keyframes gift-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.9)); }
}

@media (max-width: 768px) {
    .offer-banner__wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .offer-banner__text {
        text-align: center;
    }
}
