.product-slider-container {
    margin: 30px 0;
    position: relative;
    
}

.slider-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}
.product-swiper {
    width: 100%;
    height: 300px;
     overflow: hidden;
}

.swiper-slide {
    text-align: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.3s ease;
}

.swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.swiper-slide img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.swiper-slide h4 {
    font-size: 14px;
    margin: 10px 0;
    
}

.swiper-slide a {color: #333; text-decoration: none;}

.swiper-slide a:hover { color: #f9730e; text-decoration: none; }

/* Стили для кнопок навигации */
.swiper-button-next,
.swiper-button-prev {
    color: #333;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Адаптивность */
@media (max-width: 768px) {
    .product-swiper {
        padding: 10px 30px;
        height: 250px;
    }
    
    .swiper-slide img {
        height: 120px;
    }
}