/* Overlay */
#ebykeshop-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.55); z-index: 99998;
}
/* Popup box */
#ebykeshop-popup {
    display: none; position: fixed;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: #fff; border-radius: 8px;
    padding: 32px 28px; width: 460px; max-width: 95vw;
    z-index: 99999; box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
#ebykeshop-popup h6 {
    font-size: 18px; margin: 0 0 20px; font-weight: 600; color: #222;
}

.ebykeshop-logo-img {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.ebykeshop-logo-img img {
    max-width: 160px;
    height: auto;
}

#ebykeshop-popup input[type="text"],
#ebykeshop-popup input[type="email"],
#ebykeshop-popup input[type="tel"],
#ebykeshop-popup input[type="number"] {
    width: 100%; padding: 11px 14px; border: 1.5px solid #ccc;
    border-radius: 6px; font-size: 15px; margin-bottom: 12px;
    box-sizing: border-box; outline: none;
}
#ebykeshop-popup input:focus { border-color: #1a2e44; }
.ebykeshop-btn-primary {
    width: 100%; padding: 12px; background: #1a2e44; color: #fff;
    border: none; border-radius: 6px; font-size: 15px;
    font-weight: 600; cursor: pointer; margin-bottom: 10px;
}
.ebykeshop-btn-primary:hover { background: #243d57; }
.ebykeshop-btn-google {
    width: 100%; padding: 12px; background: #1a2e44; color: #fff;
    border: none; border-radius: 6px; font-size: 15px;
    font-weight: 600; cursor: pointer; display: flex;
    align-items: center; justify-content: center; gap: 10px;
}
.ebykeshop-divider {
    text-align: center; color: #aaa; margin: 8px 0 10px; font-size: 13px;
}
.g_id_signin {
    width: 100%;
    display: flex;
    justify-content: center;
}
.g_id_signin > div,
.g_id_signin iframe {
    width: 100% !important;
}

.ebykeshop-close-btn {
    color: #000; background: transparent; border: none;
    cursor: pointer; font-size: 14px; float: right; margin-top: 14px;
    padding: 6px 14px; border-radius: 6px; transition: background .2s, color .2s;
}
.ebykeshop-close-btn:hover,
.ebykeshop-close-btn:active { background: #0c232c; color: #fff; }
#ebykeshop-msg { color: #e53935; font-size: 13px; margin-bottom: 8px; min-height: 18px; }
#ebykeshop-otp-timer { font-size: 13px; color: #555; margin-bottom: 10px; }
.ebykeshop-confirm-btn {
    background: none; border: none; color: #2e7d32;
    font-size: 14px; cursor: pointer; float: right; margin-top: 14px;
}
/* Screens */
.ebykeshop-screen { display: none; }
.ebykeshop-screen.active { display: block; }

@media (max-width: 480px) {
    #ebykeshop-popup {
        width: 90vw;
        padding: 24px 16px;
    }
}