/*
 * First-time bulk / refill buyer popup.
 * Sized to match the lightweight "tooltip-style" pattern from
 * purchase-by-volume/.pbv-volume-ack-modal: ~340px max, 16-20px padding,
 * subtle backdrop, compact type. Mint/sage palette, dark green for text only.
 */

.eg-bulk-intro-popup[hidden] {
    display: none;
}

.eg-bulk-intro-popup {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    font-family: "Brandon Grotesque", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.eg-bulk-intro-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.eg-bulk-intro-popup__panel {
    position: relative;
    background: #ffffff;
    border: 1.5px solid #d6dde0;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-width: 340px;
    width: calc(100% - 40px);
    padding: 16px 20px;
    box-sizing: border-box;
    color: #1f1f1f;
}

.eg-bulk-intro-popup__close {
    position: absolute;
    top: 4px;
    right: 6px;
    background: transparent;
    border: 0;
    color: #888;
    font-size: 22px;
    line-height: 1;
    width: 28px;
    height: 28px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 120ms ease, color 120ms ease;
}

.eg-bulk-intro-popup__close:hover,
.eg-bulk-intro-popup__close:focus-visible {
    background: #f0f7f5;
    color: #2c5e54;
    outline: none;
}

.eg-bulk-intro-popup__title {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    color: #1f1f1f;
}

.eg-bulk-intro-popup__body {
    margin: 0 0 14px;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #555;
}

.eg-bulk-intro-popup__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.eg-bulk-intro-popup__learn-more {
    color: #2c5e54;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.eg-bulk-intro-popup__learn-more:hover,
.eg-bulk-intro-popup__learn-more:focus-visible {
    color: #0f4c3a;
    outline: none;
}

.eg-bulk-intro-popup__ack {
    padding: 8px 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #e8f5f3 0%, #dce8e4 50%, #e0eef0 100%);
    color: #1f1f1f;
    border: 1.5px solid #a5ccbc;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.eg-bulk-intro-popup__ack:hover,
.eg-bulk-intro-popup__ack:focus-visible {
    border-color: #2c5e54;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    outline: none;
}

html.eg-bulk-intro-open,
html.eg-bulk-intro-open body {
    overflow: hidden;
}

@media (max-width: 380px) {
    .eg-bulk-intro-popup__panel {
        padding: 14px 16px;
    }
    .eg-bulk-intro-popup__title {
        font-size: 0.95rem;
    }
    .eg-bulk-intro-popup__body {
        font-size: 0.875rem;
    }
}
