#order-popup {
    position: relative;
    max-width: 550px;
    width: 90%;
    margin: 20px auto;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    text-align: center;
}

/* Стили для блока с информацией о программе */
.program-info-header {
    background-color: #f5f9f7;
    padding: 15px;
    margin: -30px -20px 25px;
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #e0e0e0;
}

.program-info-header h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.program-price {
	font-size: 26px;
    color: #024d4e;
    font-weight: 700;
    background-color: #fff;
    border-radius: 100px;
    text-align: center;
    width: 160px;
    margin-top: 10px;
}
.program-price-p
 {
	font-size: 26px;
    color: #33b760;
    font-weight: 700;
   
}
/* Стили для заголовка и номера заказа */
.popup-title {
    font-size: 24px;
    color: #333;
    margin: 0 0 25px;
    font-weight: 600;
    line-height: 1.3;
}

.order-number {
    background: #f9f9f9;
    padding: 20px 15px;
    margin: 20px 0;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.order-number h3 {
    font-size: 46px;
    color: #33b760;
    margin: 0;
    font-weight: 700;
}

/* Стили для кнопки копирования */
.copy-btn {
    background-color: #33b760;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.copy-btn:hover {
    background-color: #2a9b50;
}

.copy-btn i {
    margin-right: 5px;
}

.copy-success {
    position: absolute;
    background-color: rgba(51, 183, 96, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
    opacity: 0;
    transition: opacity 0.3s, top 0.3s;
    pointer-events: none;
}

.copy-success.show {
    opacity: 1;
    top: -40px;
}

/* Стили для поля email */
.email-input {
    margin: 25px 0 20px;
    width: 100%;
}

#email {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #33b760;
    border-radius: 50px;
    background-color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    color: #333;
}

#email:focus {
    border-color: #33b760;
    box-shadow: 0 3px 8px rgba(51, 183, 96, 0.2);
    outline: none;
}

/* Стили для кнопки оплаты */
#pay-button {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    background-color: #f7d883;
    color: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#pay-button:hover {
    background-color: #f0ce6b;
    box-shadow: 0 6px 10px rgba(0,0,0,0.1);
}

#pay-button i {
    margin-right: 10px;
}

/* Дополнительные стили */
.delivery-text {
    font-size: 16px;
    color: #666;
    margin: 15px 0;
}

.mfp-bg {
    opacity: 0.8;
}

.mfp-close {
    font-size: 44px !important;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.mfp-close:hover {
    opacity: 0.8;
}