.popup {
    display: none; /* Скрыто по умолчанию */
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f4fafb;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: opacity 0.5s ease;
}

.popup-content {
    text-align: center;
}

.popup-text {
    font-family: 'TildaSans', sans-serif;
    font-size: 14px;
    color: #000000;
}

.popup-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #c1ccb5;
    color: #000000;
    border-radius: 30px;
    text-decoration: none;
}

.popup-button:hover {
    background-color: #688066;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #688066;
    font-size: 20px;
    cursor: pointer;
}

@media (max-width: 480px) {
    .popup {
        width: calc(100% - 40px); /* 12 колонок */
        height: 50px;
        bottom: 50px; /* отступ от нижнего края */
        left: 0; /* по центру */
        right: 0; /* по центру */
        margin-left: auto; 
        margin-right: auto; 
    }
}

@media (min-width: 480px) {
    .popup {
        width: calc(33.33% - 20px); /* 4 колонки */
        height: 50px;
        bottom: 50px; /* отступ от нижнего края */
        right: 20px; /* отступ от правого края */
        left: auto; /* убрать левый отступ */
    }
}