/* Daganda Premium Login Modal Styles */

.login-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.login-modal-content {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalAppear 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalAppear {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #94a3b8;
    background: transparent;
    border: none;
    cursor: pointer;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 10px;
}

.modal-header h3 strong { color: var(--primary-color, #2563eb); }

.modal-header p {
    color: #64748b;
    font-size: 14px;
}

/* Social Buttons */
.social-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    gap: 10px;
}

.btn-social.kakao { background-color: #FEE500; color: #191919; }
.btn-social.naver { background-color: #03C75A; color: #ffffff; }
.btn-social.google { background-color: #ffffff; color: #1f1f1f; border: 1px solid #e2e8f0; }

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Divider */
.modal-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
    color: #999;
    font-size: 13px;
}
.modal-divider::before, .modal-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #eee;
}
.modal-divider span {
    padding: 0 15px;
}

/* Email Form */
.email-login-form .form-group {
    margin-bottom: 12px;
}
.email-login-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 14px;
    background: #f9f9f9;
    box-sizing: border-box;
}
.btn-login-submit {
    width: 100%;
    padding: 15px;
    background: #1e293b;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
}

/* Footer */
.modal-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #888;
}
.modal-footer a { color: #666; text-decoration: none; }
.modal-footer .sep { margin: 0 8px; color: #eee; }

.customer-support {
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #999;
}
.customer-support a { text-decoration: underline; color: #666; }
