/* Полноэкранный контейнер меню */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.96); /* Полупрозрачный глубокий чёрный */
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
}

/* Класс для активации меню через JS */
.fullscreen-menu.is-active {
    opacity: 1;
    visibility: visible;
}

/* Кнопка закрытия (крестик) */
.close-menu-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 35px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}
.close-menu-btn:hover {
    opacity: 1;
}

/* Контент внутри */
.menu-content {
    width: 90%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

/* Контейнер для текста */
.shop-description-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Стили для опций описания */
.desc-option h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #ffffff;
}

.desc-option p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    font-weight: 300;
}

/* Разделительная линия в стиле нижней линии из area-1782770371.jpg */
.divider-line {
    height: 1px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
}

/* Список особенностей */
.spec-list {
    list-style: none;
    padding: 0;
    margin: 0 Implied;
    text-align: left;
    display: inline-block;
}

.spec-list li {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    font-weight: 300;
}

/* Кастомный маркер списка */
.spec-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
}

/* Кнопка заказа */
.order-cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.order-cta-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Блокировка скролла основного сайта при открытом меню */
body.menu-open {
    overflow: hidden;
}
