/* ===== CONCESSION PRICING STYLES ===== */

.pricing-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Regular pricing (when no concession) */
.regular-price {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

/* Original price (when showing concession) */
.original-price {
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: line-through;
    opacity: 0.7;
    position: relative;
}

.original-price::before {
    content: "Was ";
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

/* Concession/Sale price */
.concession-price {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

/* Savings badge */
.savings-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: savings-pulse 3s ease-in-out infinite;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes savings-pulse {
    0% { 
        transform: scale(1); 
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    100% { 
        transform: scale(1); 
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
}

/* Price details (duration, etc.) */
.price-details {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.price-details i {
    margin-right: 0.5rem;
    opacity: 0.8;
}

/* Enhanced CTA button for concession pricing */
.enhanced-learn-more-btn.concession-active {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.enhanced-learn-more-btn.concession-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.enhanced-learn-more-btn.concession-active:hover::before {
    left: 100%;
}

.enhanced-learn-more-btn.concession-active:hover {
    background: linear-gradient(45deg, #20c997, #17a2b8);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
}

/* Mobile responsive pricing */
@media (max-width: 768px) {
    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .pricing-container {
        text-align: left;
    }
    
    .savings-badge {
        align-self: flex-start;
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
    
    .original-price,
    .concession-price,
    .regular-price {
        font-size: 1.2rem;
    }
}

/* Special offer indicator */
.limited-time-offer {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    display: inline-block;
    animation: offer-glow 2s ease-in-out infinite alternate;
}

@keyframes offer-glow {
    from {
        box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.8);
    }
}

/* Admin-specific pricing display */
.admin-pricing-preview {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: monospace;
}

.admin-pricing-preview .strike {
    text-decoration: line-through;
    color: #6c757d;
}

.admin-pricing-preview .concession {
    color: #28a745;
    font-weight: bold;
}

.admin-pricing-preview .savings {
    background: #d4edda;
    color: #155724;
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    font-size: 0.8rem;
}