/* Overlay */
.popup-loading {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Popup */
.popup-loading__content {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    font-family: "ClashDisplay-Semibold"
}

/* Title */
.popup-loading__title {
    margin-bottom: 20px;
    font-size: 22px;
    color: #222;
}

/* Progress bar */
.progress-bar {
    width: 100%;
    height: 14px;
    background: #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar__fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    transition: width 0.3s ease;
}

/* Percent text */
.popup-loading__percent {
    font-size: 16px;
    margin-bottom: 25px;
    color: #555;
}

/* Buttons */
.popup-loading__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-pay {
    background: #2ecc71;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
}

.btn-pay:hover {
    background: #27ae60;
}

.btn-cancel {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
}

.btn-cancel:hover {
    background: #c0392b;
}

.btn-pay:disabled {
  background: #9be7b8;
  cursor: not-allowed;
  opacity: 0.7;
}