.vpm-product-slider-section {
    padding: 40px 0;
    background: #fff;
}

.vpm-product-slider-section .slider-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.vpm-product-slider-section .slider-title h4 {
    color: #243849;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vpm-product-slider-section .next-prev-button {
    display: flex;
    gap: 10px;
}

.vpm-product-slider-section .next-prev-button span {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1.5px solid #243849;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #243849;
}

.vpm-product-slider-section .next-prev-button span:hover {
    background: #243849;
    color: #fff;
}

.vpm-product-slider-section .next-prev-button span.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.vpm-product-slider-section .swiper {
    width: 100%;
    padding-bottom: 20px;
}

.vpm-product-slider-section .swiper-slide {
    height: auto;
}

.vpm-product-slider-section .product-card {
    background: #fff;
    border: 1px solid #eaeaea;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vpm-product-slider-section .product-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.vpm-product-slider-section .product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vpm-product-slider-section .product-image {
    position: relative;
    width: 100%;
    padding: 20px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
}

.vpm-product-slider-section .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.vpm-product-slider-section .product-card:hover .product-image img {
    transform: scale(1.03);
}

.vpm-product-slider-section .product-image .onsale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: #fff;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.vpm-product-slider-section .product-image .out-of-stock {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #95a5a6;
    color: #fff;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.vpm-product-slider-section .product-info {
    padding: 0 15px 15px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vpm-product-slider-section .product-title {
    font-size: 15px;
    font-weight: 700;
    color: #243849;
    margin: 0 0 12px 0;
    line-height: 1.4;
    text-decoration: none;
    text-underline-offset: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vpm-product-slider-section .price-material-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 10px;
}

.vpm-product-slider-section .product-price {
    font-size: 16px;
    font-weight: 700;
    color: #243849;
}

.vpm-product-slider-section .product-price del {
    opacity: 0.6;
    font-size: 14px;
    margin-right: 5px;
}

.vpm-product-slider-section .product-price ins {
    text-decoration: none;
    color: #243849;
}

.vpm-product-slider-section .product-materials {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.vpm-product-slider-section span.product_material {
    border: 1px solid #243849;
    color: #243849;
    padding: 3px 12px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
}

.vpm-product-slider-section span.used-for {
    display: none;
}

.vpm-product-slider-section .product-rating {
    margin-top: 8px;
}

.vpm-product-slider-section .product-rating .star-rating {
    font-size: 14px;
}


.vpm-product-slider-section .swiper-scrollbar {
    height: 5px !important;
    background-color: #E2E1DB !important;
    width: calc(100% - 0px) !important;
    left: 0 !important;
    bottom: 0 !important;
}

.vpm-product-slider-section .swiper-scrollbar-drag {
    background: #243849;
}

@media (max-width: 768px) {
    .vpm-product-slider-section .slider-title h4 {
        font-size: 20px;
    }
    
    .vpm-product-slider-section .next-prev-button {
        display: none;
    }
    
    .vpm-product-slider-section {
        padding: 30px 0;
    }
}
