
.buffyz-slider {
    position: relative;
    overflow: hidden;
    margin: 6px 0;
}
.buffyz-slider-inner {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scroll-behavior: smooth;
}
.buffyz-item {
    min-width: 140px;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 6px;
    text-align: center;
    background: #fff;
}
.buffyz-item img {
    max-width: 100%;
    height: 90px;
    object-fit: cover;
}
.buffyz-item-name {
    font-size: 14px;
    margin-top: 4px;
}
.buffyz-item-price {
    font-weight: 600;
    margin: 4px 0;
}
.buffyz-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(255,255,255,0.9);
    padding: 4px 8px;
    cursor: pointer;
    z-index: 10;
}
.buffyz-arrow-left { left: 0; }
.buffyz-arrow-right { right: 0; }
