/* Price Banner Styles */

.price-banner {
    background: var(--gradient-1);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow-strong);
    animation: priceBannerPulse 3s ease-in-out infinite;
}

.price-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: priceBannerShine 4s linear infinite;
}

@keyframes priceBannerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(194, 14, 14, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 50px rgba(194, 14, 14, 0.6);
    }
}

@keyframes priceBannerShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.price-banner-content {
    position: relative;
    z-index: 1;
}

.price-banner-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.price-banner-amount {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0.5rem 0;
    line-height: 1;
}

.price-banner-period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: 0.5rem;
}

.price-banner-currency {
    font-size: 2rem;
    vertical-align: top;
    margin-right: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .price-banner {
        padding: 1.5rem;
    }
    
    .price-banner-amount {
        font-size: 2.5rem;
    }
    
    .price-banner-label {
        font-size: 0.85rem;
    }
}

