/* Базовый контейнер */
.item-wrap {
    max-width: 95vw;
    margin: 0 auto;
    padding: 24px;
    box-shadow: 0 30px 60px 0 rgba(118, 126, 173, 0.12);
    border-radius: 20px;
    overflow: hidden;
    color: #444;
    font-size: 15px;
    line-height: 1.5;
}

/* Типографика */
.item-wrap h2 {
    margin: 0px 0px 24px 0px !important;
    font-size: 24px !important;
}

.item-wrap h3 {
    margin: 24px 0px 12px 0px !important;
}

.item-wrap h4 {
    margin: 12px 0px 12px 0px !important;
}

.item-wrap p,
.item-wrap ul {
    margin-bottom: 16px !important;
}

.item-wrap p {
    margin: 0px 0px 16px 0px !important;
}


/* Списки */
.item-wrap ul {
    padding: 0px 32px !important;
}

.item-wrap li {
    position: relative;
    list-style-type: none !important;
    padding-top: 8px !important;
}

.item-wrap li::before {
    content: "";
    width: 6px;
    height: 8px;
    border-radius: 30%;
    background-color: #dedede;
    position: absolute;
    left: -25px;
    top: 14px;
}

/* Вложенные списки */
.item-wrap ul ul li {
    background-color: #f5f5f5;
    padding: 8px 32px;
    border-radius: 9999px;
    margin: 8px -30px;
    display: flex;
    width: max(70%, 300px);
}

.item-wrap ul ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    left: -25px;
    top: 14px;
}

/* Ссылки */
.item-wrap a {
    color: #00b92c;
}

/* Изображения */
.item-wrap img {
    border-radius: 16px;
}

/* Кнопка */
.item-button {
    background-color: #F5F5F5;
    border-radius: 100px;
    padding: 16px;
    display: flex;
    justify-content: center;
    margin: 24px 0px;
}

.item-button p {
    margin-bottom: 0px !important;
    font-size: 20px;
    font-weight: 600;
}

.item-button p:hover {
    color: #00ac20; 
}

/* Контейнеры и сетки */
.item-wrap .item-cont-c {
    display: flex;
    flex-flow: column nowrap;
}

.item-wrap .item-cont-r {
    display: flex;
    justify-content: center;
    column-gap: 24px;
    margin: 12px 0px 24px 0px;
}

.item-wrap .item {
    width: 45%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px 0 rgba(118, 126, 173, 0.12);
    padding: 16px;
}

/* Видео */
.item-wrap .item-cont-video video {
    width: 500px;
    height: auto;
    border-radius: 16px;
}

/* Таблицы */
.item-wrap table {
    width: 100%;
    margin-bottom: 24px !important;
    background-color: #f5f5f5;
    border-radius: 24px;
    overflow: hidden;
}

.item-wrap td,
.item-wrap th {
    padding: 10px !important;
    padding-left: 20px !important;
    border: 5px solid white;
    transition: .5s linear;
}

.item-wrap td:hover,
.item-wrap th:hover {
    background-color: #f1f1f1;
    color: #00b92c;
    transition: .1s linear;
}

/* Палитра/слайдер */
.item-wrap .pallete-wrap {
    max-height: 500px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

.item-wrap .pallete-slider {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    border-radius: 10px;
    overflow-x: scroll;
    padding-bottom: 16px;
    column-gap: 8px;
}

.item-wrap .pallete-slider img {
    width: 85%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.item-wrap .pallete-slider img:hover {
    transform: scale(1.02);
}

/* Popup (отдельный компонент) */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.popup-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-close:hover {
    color: #ccc;
}

/* Адаптивность */
@media (max-width: 1000px) {
    .item-wrap .item-cont-r {
        flex-flow: row wrap;
        justify-content: center;
        align-items: stretch;
        row-gap: 24px;
    }
    
    .item-wrap .item {
        width: 40%;
    }
    
    .item-wrap .item-cont-video video {
        width: 100%;
    }
}

@media (max-width: 850px) {
    .item-wrap .item {
        width: 95%;
    }


@media (max-width: 500px) {
    .popup-close {
        top: -30px;
        right: 0;
        font-size: 24px;
    }
}
}