/* Savings Highlight Styles */
.savings-highlight {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: fadeInUp 0.5s ease-out;
}

.savings-amount {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.savings-text {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
}

.savings-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .savings-highlight {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }
    
    .savings-amount {
        font-size: 1rem;
    }
    
    .savings-text {
        font-size: 0.8rem;
    }
}

/* Animation for fade in */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Price container adjustments */
.price-container {
    position: relative;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.5rem;
    color: #64748b;
    margin-right: 0.5rem;
}

.discount-text {
    margin-top: 0.5rem;
}

.limited-offer {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Discount badge improvements */
.discount-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    z-index: 10;
}
