.container-component>:first-child, .container-sidebar-left>:first-child, .container-sidebar-right>:first-child, .container-component>*+*, .container-sidebar-left>*+*, .container-sidebar-right>*+* {
    margin-top: 0em !important;
}

.card-body {
    padding: 0;
}

/* Modern Products Module */
.modern-products-module {
    width: 100%;
    background: #FFFDFB;
    padding: 60px 0;
}

.modern-products-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Заголовок и ссылка */
.modern-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.modern-products-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #322614;
    margin: 0;
    font-family: "Urbanist", sans-serif;
}

.modern-products-view-all {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #322614;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    font-family: "Urbanist", sans-serif;
}

.modern-products-view-all:hover {
    color: #C09D5C;
}

.modern-products-view-all svg {
    transition: transform 0.2s ease;
}

.modern-products-view-all:hover svg {
    transform: translateX(4px);
}

/* Сетка товаров для десктопа */
.modern-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Карточка товара */
.modern-product-item {
    display: flex;
    padding: 35px 26px 26px 26px;
    flex-direction: column;
    background: rgba(248, 242, 234, 1);
    border-radius: 28px;
    transition: all 0.3s ease;
}

.modern-product-image-link {
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
}

.modern-product-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-product-image {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

.modern-product-image-link:hover .modern-product-image {
    transform: scale(1.05);
}

.modern-product-title {
    font-weight: 400;
    font-size: 24px;
    color: #322614;
    text-decoration: none;
   /*  margin-bottom: 12px; */
    transition: color 0.2s ease;
    font-family: "Noto Sans", sans-serif;
}

.modern-product-title:hover {
   /*  color: #C09D5C; */
}

.modern-product-description {
    font-weight: 300;
    font-size: 18px;
    margin-top: 16px;
    color: #322614;
    font-family: "Rubik", sans-serif;
}

/* Слайдер для мобильных */
.modern-products-slider {
    display: none;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.modern-slider-container {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
}

.modern-slider-item {
    flex: 0 0 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FFFDFB;
    border: 1px solid #E5E7EB;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #322614;
    transition: all 0.2s ease;
    z-index: 10;
}

.slider-prev {
    left: -20px;
}

.slider-next {
    right: -20px;
}

.slider-prev:hover,
.slider-next:hover {
    background: #C09D5C;
    color: #FFFDFB;
    border-color: #C09D5C;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background: #C09D5C;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .modern-products-grid {
        gap: 20px;
    }
    
    .modern-products-title {
        font-size: 28px;
    }
    
    .modern-products-view-all {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .modern-products-module {
        padding: 40px 0;
    }
    
    .modern-products-header {
        margin-bottom: 30px;
    }
    
    .modern-products-grid {
        display: none;
    }
    
    .modern-products-slider {
        display: block;
    }
    
    .modern-products-title {
        font-size: 24px;
    }
    
    .modern-products-view-all {
        font-size: 14px;
    }
    
    .slider-prev {
        left: -10px;
    }
    
    .slider-next {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .modern-products-header {
        flex-direction: column;
        text-align: center;
    }
    
    .modern-products-title {
        font-size: 22px;
    }
    
    .slider-prev,
    .slider-next {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .slider-prev {
        left: -8px;
    }
    
    .slider-next {
        right: -8px;
    }
}