
.related-product-slider-wrapper {
    position: relative;

    max-width: 100%;
    margin-top: 30px;
}
.related-product-slider {
    display: flex;
    transition: transform 0.3s ease;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
}
.slider-item {
    flex: 0 0 300px;
    display: flex;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.slider-image img {
    width: 100px;
    height: auto;
    object-fit: cover;
}
.slider-content {
    padding: 10px;
    flex: 1;
}
.slider-button {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 12px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.slider-prev, .slider-next {
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    font-size: 20px;
    padding: 8px 12px;
    cursor: pointer;
}
