/* Main Sliders Container */
.multi-category-sliders {
    margin: 30px 0;
}

/* Individual Category Section */
.category-slider-section {
    margin-bottom: 40px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.category-header h2 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.see-all {
    color: #0073aa;
    text-decoration: none;
    font-size: 14px;
}

/* Slider Container */
.category-slider {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

/* Individual Product Slide */
.product-slide {
    scroll-snap-align: start;
    flex: 0 0 180px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 10px;
    transition: all 0.3s ease;
}

.product-slide:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product-thumbnail img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.product-title {
    font-size: 14px;
    margin: 0 0 8px;
    color: #333;
    font-weight: 500;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    margin-top: 8px;
}

.regular-price {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
    margin-right: 5px;
}

.sale-price {
    color: #ff0000;
    font-weight: bold;
    font-size: 15px;
}

.price {
    color: #333;
    font-weight: bold;
    font-size: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .product-slide {
        flex: 0 0 150px;
    }
    
    .category-header h2 {
        font-size: 18px;
    }
}