.wc-category-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    margin: auto;
    padding: 10px 0;
    box-sizing: border-box;
}

.wc-slider-prev,
.wc-slider-next {
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 22px;
    cursor: pointer;
    padding: 12px;
    border-radius: 5px;
    height: 60px;
    width: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-category-slider-viewport {
    overflow: hidden;
    width: 1068px; /* 5 tabs * (204px + 12px gap) - last gap */
    flex-shrink: 0;
}

.wc-category-slider {
    display: flex;
    transition: transform 0.4s ease;
    gap: 12px;
    will-change: transform;
}

.wc-category-tab {
    flex: 0 0 auto;
    width: 204px;
    height: 60px;
    padding: 10px;
    background: #0073aa;
    color: #fff;
    border-radius: 5px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    cursor: pointer;
    text-align: center;
    transition: background 0.3s;
}

.wc-category-tab:hover {
    background: #005177;
}
h3.wc-shop-title {
    font-size: 17px;
    padding-top: 10px;
    color: #000;
	transition: color 0.3s ease;
}
h3.wc-shop-title:hover {
    color: #ff7738;
}
p.wc-shop-price {
    font-size: 18px;
    font-weight: 700;
}
.wc-category-tab.active {
    background-color: #ff6600;
}

.wc-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
    width: 102.3%;
    left: -13px;
    position: relative;
}

.wc-product-item {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}