.abe-modal,
.abe-drawer,
.abe-banner {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Modal */
.abe-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}
.abe-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}
.abe-modal-content {
    position: relative;
    max-width: 480px;
    margin: 10vh auto;
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
}
.abe-modal-close {
    border: none;
    background: transparent;
    font-size: 20px;
    position: absolute;
    top: 8px;
    right: 12px;
    cursor: pointer;
}

/* Drawer */
.abe-drawer {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 9998;
}
.abe-drawer-content {
    background: #fff;
    border-radius: 16px 16px 0 0;
    padding: 16px 20px;
    box-shadow: 0 -12px 30px rgba(15, 23, 42, 0.18);
}
.abe-drawer-close {
    border: none;
    background: transparent;
    font-size: 18px;
    position: absolute;
    top: 8px;
    right: 12px;
    cursor: pointer;
}

/* Banner */
.abe-banner {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: #111827;
    color: #f9fafb;
    padding: 10px 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
}
.abe-banner-close {
    border: none;
    background: transparent;
    color: inherit;
    font-size: 16px;
    cursor: pointer;
}
