.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s ease 0.3s;
    backdrop-filter: blur(10px); /* Размытие фона */
    padding: 15px; /* Добавляем отступы для заголовка */
    z-index: 1;
    cursor: pointer;
}

.modal.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s ease 0s;
}

.modal-content {
    transition: transform 0.3s ease;
    transform: scale(0.9);
    position: relative;
    width: 50%;
    top: 2%;
    left: 25%;
}

.modal-content.active {
    transform: scale(1);
    border-radius: 15px;
}

.modal img {
    cursor: default;
}

/* Эффект при наведении */
.modal-content:hover {
    box-shadow: 0 0px 25px 5px rgb(255, 59, 59); /* Добавляем тень */
    transform: scale(1.01); /* Небольшое увеличение */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modal-header {
    margin: 0;
    padding: 0px 0px 10px 0px;
    font-size: 24px;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #616161;
    cursor: default;
}

.modal-info {
    margin: 10px 0;
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 1.6;
    cursor: default;
}

.price-info {
    margin: 35px;
    font-size: 25px;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

