/* ===================================
   CYBER MONDAY - Finales Design
   =================================== */

.cyber-monday-badge-wrapper {
    margin: 20px 0;
    text-align: center;
}

.cyber-monday-badge {
    background: linear-gradient(135deg, #FF6B00 0%, #FF0000 100%);
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.cyber-monday-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
            45deg,
            transparent,
            rgba(255, 255, 255, 0.15),
            transparent
    );
    animation: shine 3s linear infinite;
}

.badge-icon {
    font-size: 28px;
    animation: fire 1.5s ease-in-out infinite;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.badge-content {
    text-align: left;
    z-index: 1;
}

.badge-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 17px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.badge-subtitle {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    margin-top: 3px;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cyber-monday-countdown {
    margin-top: 12px;
    color: #FF6B00;
    font-weight: 700;
    font-size: 15px;
}

.countdown-timer {
    font-weight: 800;
    color: #FF0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

/* Preis-Styling wie im Screenshot */
.price-cyber-wrapper {
    text-align: center;
    margin: 15px 0;
}

.original-price-crossed {
    text-decoration: line-through;
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 5px;
    opacity: 0.7;
    font-weight: 500;
}

.new-price-line {
    margin: 8px 0;
}

.product-price-cyber {
    color: #ef4444 !important;
    font-weight: 800 !important;
    font-size: 48px !important;
    line-height: 1;
    animation: priceGlow 2s ease-in-out infinite;
}

.bill-cycle-cyber {
    color: #ef4444 !important;
    font-weight: 600 !important;
    font-size: 18px !important;
}

.savings-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 35px rgba(255, 0, 0, 0.6);
    }
}

@keyframes fire {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.15) rotate(-8deg);
    }
    75% {
        transform: scale(1.15) rotate(8deg);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes priceGlow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
    }
    50% {
        text-shadow: 0 0 25px rgba(239, 68, 68, 0.8), 0 0 35px rgba(239, 68, 68, 0.4);
    }
}

/* Plan Block Styling - passend zum Screenshot */
.cyber-monday-badge-wrapper ~ .plan-price-section {
    background: rgba(239, 68, 68, 0.05);
    border-radius: 12px;
    padding: 20px 15px;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cyber-monday-badge {
        padding: 12px 20px;
        gap: 10px;
    }

    .badge-icon {
        font-size: 24px;
    }

    .badge-title {
        font-size: 15px;
    }

    .badge-subtitle {
        font-size: 12px;
    }

    .product-price-cyber {
        font-size: 36px !important;
    }

    .bill-cycle-cyber {
        font-size: 16px !important;
    }

    .original-price-crossed {
        font-size: 14px;
    }

    .savings-badge {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* Dark Background Support (falls CloudX Dark Mode) */
.plan-block {
    transition: transform 0.3s ease;
}

.plan-block:has(.cyber-monday-badge-wrapper) {
    border: 2px solid rgba(255, 107, 0, 0.2);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.15);
}

.plan-block:has(.cyber-monday-badge-wrapper):hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.25);
}