/* *
 * Currency & Price Styling
 * Handles localized price display and visual enhancements
 */

/* Price Components */
/* .price-localized {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    font-weight: 600;
    white-space: nowrap;
}

.price-localized .price-ref {
    font-size: 0.85em;
    font-weight: 400;
    opacity: 0.7;
    margin-left: 0.25rem;
}

.price-user-local {
    color: #0066cc;
    font-weight: 700;
    padding: 2px 4px;
    border-radius: 3px;
    background-color: rgba(0, 102, 204, 0.08);
    transition: all 0.3s ease;
}

.price-user-local:hover {
    background-color: rgba(0, 102, 204, 0.15);
}

.price-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.price-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin: 1rem 0;
    transition: color 0.3s ease;
}

.pricing-card .price .price-localized {
    font-size: 1em;
}

.pricing-card:hover .price {
    color: #667eea;
}

.pricing-main-price strong {
    display: block;
    font-size: 2.5rem;
    color: #667eea;
    margin: 0.5rem 0;
}

.pricing-main-price strong .price-localized {
    font-size: 1em;
}

@media (max-width: 768px) {
    .price-tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .pricing-card .price {
        font-size: 1.5rem;
    }

    .pricing-main-price strong {
        font-size: 1.75rem;
    }
}

@keyframes priceUpdate {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

.price-updating {
    animation: priceUpdate 0.5s ease-in-out;
} */
