/* assets/css/custom-modals.css */
.dark-checkout-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-gradient-border {
    position: relative;
    margin: 10% auto;
    width: 90%;
    max-width: 500px;
    padding: 2px; 
    background: linear-gradient(135deg, #513696 0%, #6BE3F8 100%);
    border-radius: 20px;
}

.modal-inner-content {
    background: #000000;
    color: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.modal-title {
    letter-spacing: 2px;
    font-size: 20px;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
}

.primary-text {
    color: #bbbbbb;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 20px;
}

.password-notice-box {
    margin: 20px 0 30px 0;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.password-notice-box p {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    margin: 5px 0;
}

.proceed-btn-style {
    background-color: #56CFC8 !important;
    color: #000000 !important;
    width: 100%;
    padding: 16px 0;
    border: none;
    border-radius: 15px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    text-transform: uppercase;
}

.proceed-btn-style:hover {
    background-color: #4dbfb8 !important;
    transform: translateY(-2px);
}

.close-modal-x {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #666;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.close-modal-x:hover { color: #fff; }