/**
 * Dynamic Pricing Frontend Styles
 * Styles for displaying dynamic pricing and discounts
 */

/* Discount Badge */
.erosity-discount-badge {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 10px;
    box-shadow: 0 2px 5px rgba(76, 175, 80, 0.3);
}

.erosity-discount-badge.early-bird {
    background: #4caf50;
}

.erosity-discount-badge.last-minute {
    background: #ff9800;
}

.erosity-discount-badge.langzeit {
    background: #2196f3;
}

.erosity-discount-badge.wochentag {
    background: #9c27b0;
}

.erosity-discount-badge.saison {
    background: #ff5722;
}

/* Price Display with Discount */
.erosity-price-display {
    margin: 20px 0;
}

.erosity-price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
    margin-right: 10px;
}

.erosity-price-final {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.erosity-price-savings {
    display: block;
    color: #4caf50;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

/* Discount Countdown */
.erosity-discount-countdown {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: center;
}

.erosity-discount-countdown .countdown-label {
    font-size: 14px;
    margin-bottom: 5px;
    opacity: 0.9;
}

.erosity-discount-countdown .countdown-time {
    font-size: 24px;
    font-weight: 700;
}

/* Price Breakdown */
.erosity-price-breakdown {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.erosity-price-breakdown h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #333;
}

.erosity-price-breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.erosity-price-breakdown-row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    padding-top: 12px;
    margin-top: 5px;
    border-top: 2px solid #dee2e6;
}

.erosity-price-breakdown-label {
    color: #666;
}

.erosity-price-breakdown-value {
    color: #333;
    font-weight: 600;
}

.erosity-price-breakdown-value.discount {
    color: #4caf50;
}

/* Special Offer Alert */
.erosity-special-offer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.erosity-special-offer::before {
    content: '🎁';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    opacity: 0.2;
}

.erosity-special-offer h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
}

.erosity-special-offer p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .erosity-price-final {
        font-size: 24px;
    }
    
    .erosity-discount-countdown .countdown-time {
        font-size: 20px;
    }
}
