.guri-carousel-heading {
    margin: 0 0 12px;
    text-transform: uppercase;
    padding: 20px 0;
}

.guri-carousel-wrapper {
    position: relative;
    margin: 0 auto;
    outline: none;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.guri-carousel-prev {
    left: 0;
}

.guri-carousel-next {
    right: 0;
}


.guri-carousel {
    display: flex;
    gap: clamp(8px, 1vw, 12px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    cursor: grab;
    padding: 10px 0;
}

.guri-grab {
    cursor: grabbing;
}

.guri-carousel::-webkit-scrollbar {
    display: none;
}

.guri-carousel-prev,
.guri-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    z-index: 2;
}



.guri-carousel-prev:disabled,
.guri-carousel-next:disabled {
    opacity: .3;
    cursor: default;
}

@media (max-width: 768px) {
    .guri-carousel-prev,
    .guri-carousel-next {
        display: none;
    }
}

.product-card-carousel-item {
    flex: 0 0 auto;
    width: clamp(160px, 22vw, 220px);
    scroll-snap-align: start;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.product-card-carousel-item img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.product-brand-overlay {
    position: absolute;
    top: 0;
    right: 0;
}

.product-card-carousel-item .brand-thumbnail {
    width: 35px;
    height: auto;
    object-fit: cover;
}

.product-card-carousel-item h3 {
    font-size: 14px;
    margin: 8px 0 4px;
    min-height: 36px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card-carousel-item p {
    font-size: 13px;
    color: #666;
}

.brand-name {
    font-size: 12px;
    color: #333;
}
