 .slide-san-pham-moi {
    padding: 10px 0 30px;
    overflow: hidden;
}

.slide-san-pham-moi .swiper-slide {
    flex-shrink: 0;
    min-width: 140px;
    max-width: 160px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
    margin-right: 8px;
}

/* Remove margin right cho slide cuối cùng */
.slide-san-pham-moi .swiper-slide:last-child {
    margin-right: 0;
}

/* Hover hiệu ứng */
.slide-san-pham-moi .swiper-slide:hover {
    transform: translateY(-4px);
}

/* Ảnh sản phẩm */
.slide-san-pham-moi .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 8px;
}

/* Giá sản phẩm */
.slide-san-pham-moi .price {
    display: block;
    font-weight: bold;
    color: #d0021b;
    margin-top: 5px;
    font-size: 14px;
}

/* Tên sản phẩm */
.slide-san-pham-moi h3 {
    font-size: 14px;
    margin: 0;
    color: #333;
}

/* Nút next/prev */
.slide-san-pham-moi .swiper-button-next,
.slide-san-pham-moi .swiper-button-prev {
    color: #333;
    top: 40%;
}

/* Link xem tất cả */
.xem-tat-ca-wrapper {
    text-align: center;
    margin-top: 20px;
}

.xem-tat-ca-link {
    font-size: 14px;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.xem-tat-ca-link:hover {
    color: #000;
}

/* Đường kẻ chia */
.divider-full {
    border: none;
    height: 1px;
    background-color: #ddd;
    width: 100%;
    margin: 20px 0;
}

/* Responsive cho mobile: hiển thị 1.5 sản phẩm */
@media (max-width: 767px) {
    .slide-san-pham-moi .swiper-slide {
        min-width: 66vw;  /* 66% viewport width ~ 1.5 sản phẩm */
        max-width: 66vw;
        margin-right: 12px;
    }

    .slide-san-pham-moi .swiper-button-next,
    .slide-san-pham-moi .swiper-button-prev {
        display: none;
    }
}

