@import url('https://fonts.googleapis.com/css2?family=Asap+Condensed:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Bebas+Neue&family=League+Gothic&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

.popup-overlay {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    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 {
    background: linear-gradient(176deg, #fc4caa 0%, #000 43.7%, #fc4caa 100%);
    width: 400px;
    padding: 40px 20px 30px 20px;
    border-radius: 15px;
    position: relative;
    text-align: center;
    color: white;
    max-width: 350px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-weight: 300;
    cursor: pointer;
}

.popup-title {
    font-size: 28px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    margin: 0;
}

.popup-subtitle {
    margin: 5px 0;
    font-size: 14px;
}

.product-name {
    text-decoration: underline;
    margin-bottom: 20px;
}

.price-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.price-new {
    background-image: url(../assets-2/price-p.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 0px 30px;
    width: 128px;
    max-height: 53px;
    border-radius: 5px;
    font-size: 36px;
    font-weight: bold;
}

.price-old {
    background: rgba(0, 0, 0, 0);
    padding: 0px 20px;
    width: 128px;
    border-radius: 5px;
    max-height: 53px;
    pointer-events: none;
    border: 2px solid #ffffff70;
    font-size: 36px;
    position: relative;
    color: #ccc;
}

.price-old::after{
    content: "";
    display: block;
    position: absolute;
    top: 25px;
    left: 13px;
    width: 70%;
    height: 3px;
    background-color: #E93519;
}

.signup-form input {
    width: 100%;
    max-width: 265px;
    padding: 10px;
    background-color: #fff;
    color: #000;
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;
    font-size: 14px;
}

.join-btn {
    width: 100%;
    max-width: 265px;
    height: 42px;
    padding: 10px;
    background-image: url(../assets-2/button-p.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: white;
    font-weight: 300;
    border: none;
    font-family: "Montserrat", sans-serif;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    
}

.footer-info {
    font-size: 12px;
    margin: 15px 0 10px 0;
    line-height: 1.4;
}

.timer-title {
    font-size: 14px;
    padding-bottom: 10px;
    font-weight: 700;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.timer-block span {
    background: white;
    color: black;
    border-radius: 150px;
    padding-top: 4px;
    width: 51px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bebas Neue", sans-serif;
    font-weight: bold;
    font-size: 24px;
}

.timer-block label {
    font-size: 10px;
    display: block;
    margin-top: 5px;
}

.popup-privacy {
    font-size: 11px;
    margin-top: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}