/* Overlay Background */
#wcmo-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    animation: wcmoFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modal Container - Elegant Black & Gold Design */
.wcmo-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    padding: 35px 35px 40px;
    position: relative;
    box-shadow: 0 25px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(212, 175, 55, 0.3);
    animation: wcmoSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #d4af37;
    font-family: 'static', 'Noto Sans', sans-serif;
}

/* Tab Navigation */
.wcmo-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.wcmo-tab-btn {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: 'static', 'Noto Sans', sans-serif;
}

.wcmo-tab-btn:hover {
    color: rgba(212, 175, 55, 0.8);
    background: rgba(212, 175, 55, 0.05);
}

.wcmo-tab-btn.active {
    color: #d4af37;
    border-bottom-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

/* Tab Content */
.wcmo-tab-content {
    display: none !important;
}

.wcmo-tab-content.active {
    display: block !important;
    animation: wcmoFadeIn 0.3s ease;
}

/* Close Button - Elegant Gold */
.wcmo-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 24px;
    cursor: pointer;
    color: #d4af37;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
}

.wcmo-close:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #f4e5b0;
    transform: rotate(90deg);
}

/* Title - Luxury Gold Text */
.wcmo-modal-content h2 {
    margin-bottom: 22px;
    font-size: 24px;
    text-align: center;
    font-weight: 300;
    color: #d4af37;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    font-family: 'static', 'Noto Sans', sans-serif;
}

.wcmo-modal-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* Form Labels */
.wcmo-modal-content label {
    display: block;
    color: #d4af37;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'static', 'Noto Sans', sans-serif;
}

/* Input Fields - Premium Style */
.wcmo-modal-content input[type="email"],
.wcmo-modal-content input[type="text"],
.wcmo-modal-content input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 14px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-family: 'static', 'Noto Sans', sans-serif;
}

.wcmo-modal-content input[type="email"]::placeholder,
.wcmo-modal-content input[type="text"]::placeholder,
.wcmo-modal-content input[type="password"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    font-style: italic;
}

.wcmo-modal-content input:focus {
    border-color: #d4af37;
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* Checkbox Group */
.wcmo-checkbox-group {
    margin-bottom: 16px;
    text-align: left;
}

.wcmo-checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.wcmo-checkbox-group input[type="checkbox"] {
    margin: 3px 0 0 0;
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: #d4af37;
    flex-shrink: 0;
}

.wcmo-checkbox-group a {
    color: #d4af37 !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.wcmo-checkbox-group a:hover {
    color: #f4e5b0 !important;
    text-decoration: underline;
}

/* OTP Box - Elegant Gold Display */
#wcmo-otp {
    text-align: center;
    letter-spacing: 8px;
    font-size: 20px;
    font-weight: 600;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
}

/* Buttons - Luxury Gold */
.wcmo-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #d4af37 0%, #c19a2e 100%);
    color: #0d0d0d;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-family: 'static', 'Noto Sans', sans-serif;
}

.wcmo-btn:hover {
    background: linear-gradient(135deg, #f4e5b0 0%, #d4af37 100%);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.wcmo-btn:active {
    transform: translateY(0);
}

/* Secondary Button - Outlined Style */
.wcmo-btn-secondary {
    background: transparent;
    color: #ffffff;
    margin-top: 10px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: none;
}

.wcmo-btn-secondary:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
    color: #d4af37;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

/* Info Text - Subtle Gold */
.wcmo-info {
    font-size: 12px;
    text-align: center;
    margin-top: 14px;
    color: rgba(212, 175, 55, 0.6);
    font-style: italic;
    letter-spacing: 0.5px;
    font-family: 'static', 'Noto Sans', sans-serif;
}

/* Animations */
@keyframes wcmoFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes wcmoSlideUp {
    from { 
        transform: translateY(30px) scale(0.95); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0) scale(1); 
        opacity: 1; 
    }
}

/* Responsive */
@media (max-width: 480px) {

    .wcmo-modal-content {
        width: 90%;
        padding: 30px 25px 35px;
        border-width: 1px;
        max-width: 95%;
    }

    .wcmo-modal-content h2 {
        font-size: 20px;
        letter-spacing: 1px;
        margin-bottom: 25px;
    }

    .wcmo-tabs {
        margin-bottom: 25px;
    }

    .wcmo-tab-btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    .wcmo-modal-content input[type="email"],
    .wcmo-modal-content input[type="text"],
    .wcmo-modal-content input[type="password"] {
        padding: 14px 16px;
        margin-bottom: 15px;
        font-size: 14px;
    }

    #wcmo-otp {
        letter-spacing: 6px;
        font-size: 18px;
    }

    .wcmo-btn {
        padding: 14px;
        font-size: 14px;
    }

    .wcmo-checkbox-group label {
        font-size: 12px;
    }

    .wcmo-info {
        font-size: 12px;
    }
    
    .wcmo-close {
        top: -12px;
    }

}
