/* ====================================================
   Chico Presale — Frontend Styles v1.1.3
   ==================================================== */

/* ── Badge na listagem ── */
.presale-badge-loop {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 12px;
    margin: 4px 0 6px;
    background: linear-gradient(90deg, #bf360c 0%, #e64a19 40%, #f57c00 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(191, 54, 12, .3);
}

.presale-badge-loop__title {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.3;
}

/* Ponto pulsante antes do título */
.presale-badge-loop__title::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    animation: presale-pulse 1.4s ease-in-out infinite;
}

.presale-badge-loop__count {
    color: rgba(255,255,255,.85);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .3px;
    margin-top: 2px;
    padding-left: 13px; /* alinha com o texto após o ponto */
}

/* Brilho deslizante */
.presale-badge-loop::after {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.18), transparent);
    animation: presale-shine 3s infinite;
}

@keyframes presale-pulse {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%       { opacity: .4; transform: scale(1.5); }
}

@keyframes presale-shine {
    0%   { left: -75%; }
    60%  { left: 125%; }
    100% { left: 125%; }
}

/* ── Badge na página do produto ── */
.presale-badge-single {
    display: inline-block;
    background: #f57c00;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* ── Caixa de info de pré-venda ── */
.presale-info-box {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-left: 4px solid #f57c00;
    border-radius: 6px;
    padding: 14px 18px;
    margin: 16px 0 20px;
    font-size: 14px;
    line-height: 1.6;
}

.presale-info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.presale-info-icon { font-size: 20px; }

.presale-info-title {
    font-weight: 700;
    font-size: 15px;
    color: #e65100;
}

.presale-info-body p { margin: 4px 0; color: #555; }
.presale-previsao    { color: #333 !important; }
.presale-vagas       { color: #2e7d32 !important; font-size: 13px; }
.presale-urgencia    { color: #c62828 !important; font-size: 13px; }

/* ── Esconder frete/prazo na página do produto ── */
body.presale-product-page .chico-shipping-wrapper,
body.presale-product-page .chico-shipping-info,
body.presale-product-page .chico-product-ui-wrapper,
body.presale-product-page .shipping-calculator-button,
body.presale-product-page .woocommerce-shipping-calculator,
body.presale-product-page .infixs-correios-automatico-shipping-results-time,
body.presale-product-page .stock {
    display: none !important;
}
