/* BCV para WooCommerce — Frontend Styles */

/* ── Dual price badge ────────────────────────── */
.bcv-dual-price {
    display: inline-block;
    font-size: .82em;
    color: #6b7280;
    background: rgba(0, 0, 0, .06);
    border-radius: 6px;
    padding: 2px 7px;
    margin-left: 6px;
    vertical-align: middle;
    font-weight: 500
}

/* ── Rate / Timer banner ─────────────────────── */
.bcv-rate-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(140, 255, 46, .1);
    border: 1.5px solid rgba(140, 255, 46, .35);
    border-radius: 18px;
    margin-bottom: 20px;
    font-size: .88rem;
    flex-wrap: wrap;
    box-sizing: border-box
}

.bcv-rate-banner__icon {
    font-size: 1.1rem;
    flex-shrink: 0
}

.bcv-rate-banner__info {
    flex: 1
}

.bcv-rate-banner__timer {
    margin-left: auto;
    font-weight: 700;
    color: #1a9e4a;
    font-size: .9rem;
    white-space: nowrap
}

/* Expired state */
.bcv-rate-banner--expired {
    background: rgba(217, 48, 37, .07);
    border-color: rgba(217, 48, 37, .25);
    color: #d93025
}

.bcv-timer-reload {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 16px;
    background: #d93025;
    color: #fff;
    border: none;
    border-radius: 99px;
    font-size: .83rem;
    font-weight: 600;
    cursor: pointer;
    margin-left: 12px;
    font-family: inherit
}

.bcv-timer-reload:hover {
    background: #b52d23
}