/* ============================================
   WAITLIST MODAL STYLES
   Mobile Waitlist Modal Component
   ============================================ */

/* Mobile Waitlist Modal */
#mobileWaitlistModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1410 0%, #2a1f1a 100%);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

#mobileWaitlistModal.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.waitlist-container {
    max-width: 500px;
    width: 100%;
    background: rgba(42, 31, 26, 0.95);
    border: 2px solid #5a4a38;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.waitlist-icon {
    font-size: 4em;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.waitlist-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8em;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.waitlist-subtitle {
    font-size: 1.1em;
    color: #ddd;
    margin-bottom: 25px;
    line-height: 1.6;
}

.waitlist-form {
    margin-top: 30px;
}

.waitlist-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(201,169,97,0.3);
    border-radius: 6px;
    color: #ddd;
    font-size: 1em;
    transition: all 0.3s;
}

.waitlist-input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.waitlist-checkbox-group {
    text-align: left;
    margin: 20px 0;
    padding: 15px;
    background: rgba(0,0,0,0.2);
    border-radius: 6px;
}

.waitlist-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #ddd;
    font-size: 0.9em;
    cursor: pointer;
    line-height: 1.5;
}

.waitlist-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #ffd700;
    cursor: pointer;
}

.waitlist-checkbox-label.required::after {
    content: " *";
    color: #ff6b6b;
}

.waitlist-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(180deg, #5a4d3f 0%, #443828 100%);
    border: 2px solid #5a4a38;
    border-radius: 8px;
    color: #ffd700;
    font-family: 'Cinzel', serif;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.waitlist-btn:hover {
    background: linear-gradient(180deg, #6a5d4f 0%, #544838 100%);
    border-color: #6b5a48;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.waitlist-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.waitlist-desktop-link {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(90, 74, 56, 0.5);
    color: #aaa;
    font-size: 0.85em;
}

.waitlist-desktop-link a {
    color: #6bcf7f;
    text-decoration: none;
    font-weight: 600;
}

.waitlist-validation {
    color: #ff6b6b;
    font-size: 0.85em;
    margin-top: 10px;
    display: none;
}

.waitlist-success {
    display: none;
    padding: 20px;
    background: rgba(107, 207, 127, 0.2);
    border: 2px solid #6bcf7f;
    border-radius: 8px;
    color: #6bcf7f;
    margin-top: 20px;
}
