/* FooEvents Seasonal Pricing - Frontend Styles */

.fesp-season-label {
    display: inline-block;
    background: #ff9800;
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fesp-price-container {
    margin: 15px 0;
}

.fesp-price-container .price {
    font-size: 1.2em;
}

.fesp-price-container del {
    opacity: 0.7;
    margin-right: 8px;
}

.fesp-price-container ins {
    text-decoration: none;
    font-weight: 700;
    color: #2c3e50;
}

.fesp-loading {
    opacity: 0.6;
    pointer-events: none;
}

.fesp-price-notice {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 4px;
}

.fesp-price-notice p {
    margin: 0;
    font-size: 14px;
    color: #1565c0;
}

.fesp-price-notice .fesp-notice-icon {
    display: inline-block;
    margin-right: 8px;
    font-weight: 700;
}

/* Ajustes para compatibilidade com temas */
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
    opacity: 0.7;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
    text-decoration: none;
    font-weight: 700;
}

/* Animação de carregamento */
@keyframes fesp-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.fesp-loading .price {
    animation: fesp-pulse 1.5s ease-in-out infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    .fesp-season-label {
        display: block;
        margin-left: 0;
        margin-top: 8px;
        width: fit-content;
    }
}
