/* Promo Banner Styles */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 25%, #ff416c 50%, #8b5cf6 75%, #06b6d4 100%);
    background-size: 400% 400%;
    animation: gradientShift 5s ease infinite;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(255, 107, 53, 0.5);
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.promo-icon {
    font-size: 2rem;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.promo-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.promo-highlight {
    background: rgba(255, 255, 255, 0.25);
    padding: 5px 15px;
    border-radius: 25px;
    display: inline-block;
    margin: 0 5px;
    animation: pulse-highlight 2s infinite;
}

@keyframes pulse-highlight {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.promo-timer {
    display: flex;
    gap: 10px;
    align-items: center;
}

.timer-block {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 10px;
    min-width: 50px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timer-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.timer-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-cta {
    background: white;
    color: #ff416c;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: glow 2s infinite;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.8), 0 0 60px rgba(255, 107, 53, 0.5);
    }
}

.promo-cta:hover {
    transform: scale(1.1);
    background: #fff700;
    color: #ff416c;
}

.promo-close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.promo-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) rotate(90deg);
}

/* Sparkles */
.promo-banner::before,
.promo-banner::after {
    content: '✨';
    position: absolute;
    font-size: 1.5rem;
    animation: sparkle 1.5s infinite;
}

.promo-banner::before {
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.promo-banner::after {
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1.3);
    }
}

/* Body padding when banner is shown */
body.has-promo {
    padding-top: 80px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .promo-banner {
        padding: 12px 15px;
    }

    .promo-content {
        gap: 10px;
    }

    .promo-text {
        font-size: 0.9rem;
    }

    .promo-icon {
        font-size: 1.5rem;
    }

    .timer-block {
        padding: 5px 8px;
        min-width: 40px;
    }

    .timer-number {
        font-size: 1rem;
    }

    .timer-label {
        font-size: 0.5rem;
    }

    .promo-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .promo-banner::before,
    .promo-banner::after {
        display: none;
    }

    body.has-promo {
        padding-top: 120px;
    }
}

/* Free Badge Animation */
.free-badge {
    background: #00ff88;
    color: #000;
    padding: 3px 10px;
    border-radius: 5px;
    font-weight: 900;
    animation: shake 0.5s infinite;
    display: inline-block;
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}