.popup-overlay {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Додайте це до існуючого CSS */
.popup-overlay {
    display: none;
    /* Приховуємо за замовчуванням */
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Клас для відображення */
.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    box-shadow: 0 12px 18px 0 rgba(0, 0, 0, 0.28);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 132, 255, 0.2) 100%);
    max-width: 400px;
    backdrop-filter: blur(10px);
    width: 100%;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    text-align: center;
    color: white;
    max-width: 350px;
}

.popup-overlay .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 0;
    background: none;
    border: none;
    color: rgba(0, 0, 0, 0.5);
    font-size: 24px;
    font-family: 'trebuchet ms', geneva, sans-serif;
    cursor: pointer;
}

.popup-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 119%;
    margin-left: -6px;
    padding-top: 10px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    color: #0084ff;
}

.popup-subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 128%;
    padding: 5px 0;
    letter-spacing: -0.02em;
    color: #000;
    text-align: center;
    font-family: 'trebuchet ms', geneva, sans-serif;
}

.product-name {
    color: #000;
    font-weight: 700;
    font-size: 20px;
    line-height: 128%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-align: center;
    font-family: 'trebuchet ms', geneva, sans-serif;
}

.price-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.popup-price-new {
    background: linear-gradient(90deg, #52acff 0%, #0084ff 50.48%, #52acff 100%);
    border-radius: 8px;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    font-family: 'Manrope';
    font-weight: 700;
    font-size: 36px;
    line-height: 160%;
    text-align: center;
    color: #fff;
}

.popup-price-old {
    background: linear-gradient(178deg, #fff 0%, #999 100%);
    border-radius: 8px;
    width: 100%;
    font-weight: 700;
    font-size: 36px;
    border: 1px solid #fff;
    line-height: 283%;
    text-align: center;
    font-family: 'Manrope';
    height: 60px;
    text-decoration: line-through;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-form input {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 8px;
    border-radius: 5px;
    height: 45px;
    border: none;
    background: #fff;
    color: #000;
    font-size: 14px;
    text-align: left;
}

.join-btn2 {
    width: 100%;
    padding: 10px;
    background: linear-gradient(90deg, #52acff 0%, #0084ff 50.48%, #52acff 100%);
    color: #fff;
    border: none;
    border-radius: 5px;
    
    border: 1px solid #92FF6F;
    font-size: 18px;
    font-weight: bold;
    font-family: monospace;
    cursor: pointer;
}

.footer-info {
    font-size: 12px;
    margin: 15px 0 10px 0;
    line-height: 1.4;
}

.footer-info p{
    margin: 0 !important;
    color: #000;
}

.timer-title {
    font-size: 14px;
    padding-bottom: 5px;
    margin: 0 !important;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    line-height: 128%;
    letter-spacing: -0.02em;
    text-align: center;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.timer-block span {
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.19);
    background: #fff;
    border: 1px solid #0084ff;
    font-family: 'Bebas Neue';
    color: #000;
    width: 51px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 150px;
    font-weight: 500;
    font-size: 24px;
}

.timer-block label {
    font-size: 10px;
    display: block;
    margin-top: 5px;
    color: #000;
}

.popup-privacy {
    font-weight: 700;
    font-size: 12px;
    line-height: 128%;
    letter-spacing: -0.02em;
    text-align: center;
    margin-top: 10px;
    opacity: 0.8;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.popup-privacy::before{
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../../images/lock.png);
}

@media(max-height: 600px){
    .popup-content{
        transform: scale(0.9);
    }
}