/* Pricing promotions styling */
.promo-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #ff5e62, #ff9966);
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transform: rotate(5deg);
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1rem;
    margin-right: 10px;
    color: #a0a0a0;
}

.promo-timer {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 5px;
    color: #ffcc00;
}

.pricing-table {
    position: relative;
    overflow: visible;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .promo-badge {
        top: -10px;
        right: -10px;
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .original-price {
        font-size: 0.9rem;
    }
}
