/* =====================================================
   Biottek Zone Guard — Styles
   assets/zone-guard.css
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── Zone notice (product page + shortcode) ──────────────── */
.bk-zone-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    background: #FFF8E1;
    border: 1.5px solid #F0C000;
    margin: 16px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #5A3E00;
    flex-wrap: wrap;
}

.bk-zone-notice--active {
    background: #E6F9F1;
    border-color: #00C472;
    color: #004D2A;
}

.bk-zone-notice--product-page {
    background: #EBF4FF;
    border-color: #0D2E6E;
    color: #0D2E6E;
}

.bk-zone-notice__icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

.bk-zone-notice__text { flex: 1; min-width: 0; }
.bk-zone-notice__text strong { font-weight: 700; }

.bk-zone-notice__btn {
    background: #0D2E6E;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
    flex-shrink: 0;
}
.bk-zone-notice__btn:hover { background: #1A4FA0; }

/* ── Hidden price (wrong zone in loops) ──────────────────── */
.bk-price-hidden {
    display: inline-block;
    font-size: 13px;
    color: #9AAAB8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-style: italic;
    padding: 2px 0;
}

/* ── Loop CTA button (replaces add-to-cart in loops) ──────── */
.bk-loop-cta {
    width: 100%;
    background: #00C472;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    text-align: center;
    transition: background .2s;
    line-height: 1.4;
}
.bk-loop-cta:hover { background: #009A57; }

/* ── Zone gate (bk_zone_required shortcode) ──────────────── */
.bk-zone-required-gate {
    padding: 24px;
    border-radius: 16px;
    background: #F4F9FF;
    border: 1.5px dashed #C8D8E8;
    text-align: center;
}

/* ── Zona bar (bk_zone_status shortcode) ─────────────────── */
.bk-zona-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    flex-wrap: wrap;
}
.bk-zona-pin { font-size: 16px; }
.bk-zona-badge {
    display: inline-flex;
    align-items: center;
    background: #00C472;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    line-height: 1.4;
}
.bk-zona-change {
    font-size: 12px;
    font-weight: 500;
    color: #1A4FA0;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 0;
}
.bk-zona-change:hover { color: #0D2E6E; }

/* ── Checkout notice ─────────────────────────────────────── */
.bk-checkout-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
