/* =========================================
   BOX SLIDER STYLES (Compact List)
   ========================================= */

   .dp-box-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'PP Neue Montreal', sans-serif;
}

.dp-box-section .dp-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.dp-box-header {
    margin-bottom: 60px;
}

.dp-heading-lg {
    font-size: 52px;
    font-weight: 400;
    line-height: 1.1;
    color: #121212;
    margin: 0;
}

/* --- Layout --- */
.dp-box-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* --- Left Column: Navigation --- */
.dp-box-nav {
    width: 35%;
    flex-shrink: 0;
    padding-top: 10px; /* Чуть уменьшил отступ сверху */
}

.dp-box-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dp-box-item {
    display: flex;
    align-items: center;
    /* БЫЛО: padding: 25px 0; */
    /* СТАЛО (уменьшили высоту): */
    padding: 18px 0; 
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.dp-box-item:first-child {
    border-top: 1px solid #e0e0e0;
}

.dp-box-item.active,
.dp-box-item:hover {
    opacity: 1;
}

.dp-item-index {
    width: 32px;
    height: 32px;
    border: 1px solid #121212;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    margin-right: 20px;
    flex-shrink: 0;
}

.dp-item-text {
    font-size: 18px;
    color: #121212;
}

/* --- Right Column: Slider --- */
.dp-box-content {
    width: 65%;
    overflow: hidden;
}

/* Слайд */
.dp-box-slide {
    padding-right: 20px;
}

.dp-box-image-wrap {
    background-color: #e5e5e5;
    border-radius: 20px;
    position: relative;
    width: 100%;
    padding-bottom: 100%; 
    overflow: hidden;
}

.dp-box-image-wrap img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
    width: auto !important;
    display: block;
    object-fit: contain;
}

/* Кружок с цифрой на картинке */
.dp-slide-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 32px;
    height: 32px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

/* --- Owl Carousel Fixes --- */
.dp-box-carousel .owl-stage {
    display: flex;
}

/* --- Mobile --- */
@media (max-width: 1024px) {
    .dp-box-wrapper {
        flex-direction: column-reverse;
    }

    .dp-box-nav {
        width: 100%;
        margin-top: 30px;
    }

    .dp-box-content {
        width: 100%;
    }

    .dp-heading-lg {
        font-size: 36px;
    }
}