/* ============================================================
   Block Zero Price Products — Front-end Styles
   ============================================================ */

/* ── Notice container ─────────────────────────────────────── */
.bzpp-contact-notice {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fafafa;
    border: 1.5px solid #e0e0e0;
    border-left: 4px solid #c0392b;
    border-radius: 6px;
    padding: 20px 22px;
    margin: 20px 0 28px;
    font-family: inherit;
}

/* ── Left icon ────────────────────────────────────────────── */
.bzpp-notice-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #fdecea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0392b;
}

.bzpp-notice-icon svg {
    width: 20px;
    height: 20px;
}

/* ── Body ─────────────────────────────────────────────────── */
.bzpp-notice-body h4 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.bzpp-notice-body p {
    margin: 0 0 16px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* ── Contact method buttons ───────────────────────────────── */
.bzpp-contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bzpp-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: filter 0.15s ease, transform 0.1s ease;
    white-space: nowrap;
}

.bzpp-btn:hover {
    filter: brightness(0.9);
    transform: translateY(-1px);
    text-decoration: none;
}

.bzpp-btn svg {
    width: 15px;
    height: 15px;
}

.bzpp-btn-email {
    background: #2c3e50;
    color: #ffffff;
}

.bzpp-btn-phone {
    background: #27ae60;
    color: #ffffff;
}

.bzpp-btn-contact {
    background: #c0392b;
    color: #ffffff;
}

/* ── Loop / archive "Contact Us to Order" button ─────────── */
.bzpp-contact-btn {
    background-color: #c0392b !important;
    color: #ffffff !important;
    border-color: #c0392b !important;
    font-size: 0.8rem !important;
    padding: 0.618em 1em !important;
}

.bzpp-contact-btn:hover {
    background-color: #a93226 !important;
    border-color: #a93226 !important;
    color: #ffffff !important;
}

/* ── Responsive ───────────────────────────────────────────── */
@media ( max-width: 480px ) {
    .bzpp-contact-notice {
        flex-direction: column;
        gap: 12px;
    }

    .bzpp-contact-methods {
        flex-direction: column;
    }

    .bzpp-btn {
        justify-content: center;
        text-align: center;
    }
}
