/* ── Bulk Quantity Notice ─────────────────────────────────────────────────── */

#bqn-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 12px 14px;
    margin-top: 14px;
    margin-bottom: 4px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .25s ease, transform .25s ease;
    max-width: 480px;
}

#bqn-notice.bqn-notice--visible {
    opacity: 1;
    transform: translateY(0);
}

.bqn-icon {
    font-size: 18px;
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 1px;
    line-height: 1;
}

.bqn-text {
    font-size: 13px;
    line-height: 1.55;
    color: #1e40af;
    margin: 0;
    font-family: inherit;
}

.bqn-link {
    color: #1d4ed8;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-all;
}

.bqn-link:hover {
    color: #1e3a8a;
}

/* Dim the add-to-cart button when qty is over threshold */
.single_add_to_cart_button.bqn-btn-disabled,
button.bqn-btn-disabled {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}