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