/* JC Waitlist Frontend */

/* ── Popup ─────────────────────────────────────────── */
.jcwl-popup-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); z-index: 99999;
    display: flex; align-items: center; justify-content: center;
}
.jcwl-popup {
    background: #fff; border-radius: 10px; padding: 30px; max-width: 420px; width: 90%;
    position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    animation: jcwlSlideUp 0.3s ease;
}
@keyframes jcwlSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.jcwl-popup-close {
    position: absolute; top: 10px; right: 15px;
    background: none; border: none; font-size: 24px; cursor: pointer; color: #999;
}
.jcwl-popup h3 { margin: 0 0 8px; font-size: 20px; }
.jcwl-popup p { margin: 0 0 18px; color: #666; font-size: 14px; line-height: 1.5; }

/* ── Shared form elements ──────────────────────────── */
.jcwl-email-input {
    width: 100%; padding: 10px 14px; border: 1px solid #ddd; border-radius: 6px;
    font-size: 14px; margin-bottom: 10px; box-sizing: border-box;
}
.jcwl-email-input:focus { border-color: #0073aa; outline: none; box-shadow: 0 0 0 2px rgba(0,115,170,0.15); }

.jcwl-submit-popup, .jcwl-submit-inline {
    width: 100%; padding: 10px; font-size: 14px; cursor: pointer;
}

/* ── Inline form ───────────────────────────────────── */
.jcwl-inline-form { margin: 12px 0; max-width: 320px; }

/* ── Notices ───────────────────────────────────────── */
.jcwl-form-notice { margin-top: 8px; font-size: 13px; }
.jcwl-success { color: #155724; }
.jcwl-error { color: #721c24; }

/* ── Waitlist button on shop ───────────────────────── */
.jcwl-open-popup { cursor: pointer; }
.jcwl-linked-notice { margin-top: 5px; color: #666; }

/* ── Form Fields & Stepper ─────────────────────────── */
.jcwl-field-group { margin-bottom: 15px; }
.jcwl-field-label { display: block; margin-bottom: 5px; font-size: 13px; color: #666; font-weight: 500; }
.jcwl-field-desc { margin: 5px 0 0; font-size: 12px; color: #888; }
.jcwl-qty-stepper { display: flex; align-items: stretch; border: 1px solid #ddd; border-radius: 6px; overflow: hidden; max-width: 160px; height: 46px; box-sizing: border-box; }
.jcwl-qty-btn { background: #f7f7f7; border: none; padding: 0 15px; cursor: pointer; font-size: 20px; color: #555; display: flex; align-items: center; justify-content: center; width: 40px; box-sizing: border-box; }
.jcwl-qty-btn:hover { background: #eee; }
.jcwl-qty-input { border: none !important; border-left: 1px solid #ddd !important; border-right: 1px solid #ddd !important; border-radius: 0 !important; width: 100% !important; text-align: center; margin: 0 !important; -moz-appearance: textfield; padding: 0 10px !important; box-sizing: border-box !important; height: 100% !important; }
.jcwl-qty-input::-webkit-outer-spin-button, .jcwl-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
