.products-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    touch-action: pan-y;
}

.products-carousel {
    display: flex;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-wrap: nowrap;
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: grab;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.products-carousel:active {
    cursor: grabbing;
}


.product-slide {
    flex: 0 0 auto;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
    padding: 0 5px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: manipulation;
}

@media (max-width: 576px) {
    .product-slide {
        width: 50%;
        min-width: 50%;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .product-slide {
        width: 50%;
        min-width: 50%;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .product-slide {
        width: 50%;
        min-width: 50%;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .product-slide {
        width: 33.333%;
        min-width: 33.333%;
    }
}

@media (min-width: 1201px) {
    .product-slide {
        width: calc(25% - 10px);
        min-width: 25%;
    }
}

.products__title {
    margin: 0;
    flex-shrink: 0;
}

.products-more-wrapper-slider {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.products-more-wrapper-slider.hidden {
    display: none !important;
}

.products__prev,
.products__next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.products__prev:hover,
.products__next:hover {
    background: #007bff;
    color: white;
}

.products__prev.disabled,
.products__next.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.grid-container {
    margin: 0;
    padding: 0;
}

.products-list {
    margin: 0;
    padding: 0;
    width: 100%;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 25px;
}

.products-more-wrapper-slider {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.products__prev,
.products__next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.products__prev:hover,
.products__next:hover {
    background: #CC9453;
    color: white;
}

.products__prev.disabled,
.products__next.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.products-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
}

.products-carousel {
    display: flex;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-wrap: nowrap;
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: grab;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.col-12.d-flex {
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: 1px solid #e8e8e8;
}

@media (max-width: 768px) {
    .products-more-wrapper-slider {
        display: none;
    }
}