.bean-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    animation: bpFadeIn 0.3s ease;
}

.bean-popup-overlay.bp-visible {
    display: flex;
}

@keyframes bpFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bpSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bean-popup {
    background: #fff;
    border: 1px solid #D3B68B;
    border-radius: 14px;
    max-width: 400px;
    width: 90%;
    padding: 28px 28px 22px;
    position: relative;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    animation: bpSlideUp 0.35s ease;
    font-family: 'Fenix', Georgia, serif;
}

.bean-popup-close,
.bean-popup-close:hover,
.bean-popup-close:focus,
.bean-popup-close:active {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none !important;
    border: none !important;
    font-size: 20px;
    color: #999 !important;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    text-decoration: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.bean-popup-rule {
    width: 40px;
    height: 2px;
    background: #D3B68B;
    margin: 10px auto 16px;
    border: none;
    border-radius: 1px;
}

.bean-popup h2 {
    font-size: 19px !important; /* override elementor */
    font-weight: 700;
    color: #000 !important; /* override elementor */
    margin: 0 0 8px;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.bean-popup p {
    font-size: 14px;
    color: #555;
    margin: 0 0 20px;
    line-height: 1.55;
}

.bean-popup-cta {
    display: inline-block;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, transform 0.15s ease;
}

.bean-popup-cta:hover {
    background: #222;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.bean-popup-dismiss,
.bean-popup-dismiss:hover,
.bean-popup-dismiss:focus,
.bean-popup-dismiss:active,
.bean-popup-dismiss:visited {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    margin-inline: auto;
    color: #aaa;
    cursor: pointer;
    background: none;
    border: none;
    text-decoration: none;
    box-shadow: none;
    outline: none;
}

.bean-popup-dismiss:hover,
.bean-popup-dismiss:focus {
    color: #000;
    text-decoration: underline;
}

/* ── Rolling Announcement Banner ─────────────── */

.bean-banner {
    position: relative;
    width: 100%;
    background: #000 !important;
    background-image: none !important;
    border-bottom: 1.5px solid #D3B68B;
    overflow: hidden;
    z-index: 99998;
    height: 40px;
    display: flex;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bean-banner a {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
    width: 100%;
    height: 100%;
    background: none !important;
}

.bean-banner-track {
    display: flex;
    width: max-content;
    will-change: transform;
    background: none !important;
}

.bean-banner-track:hover {
    /* JS handles pause */
}

.bean-banner-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 12px;
    font-family: 'Fenix', Georgia, serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    height: 40px;
    letter-spacing: 0.03em;
}

.bean-banner-item::before {
    display: none;
}

.bean-banner-sep {
    padding: 0 4px;
    color: #D3B68B;
    font-size: 16px;
    line-height: 40px;
}

.bean-banner-sep::before {
    display: none;
}

/* Banner scroll is handled by JS for full pass-through behavior */
