.our-products .home-products-carousel {
    position: relative;
}

.our-products .home-products-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.our-products .home-products-track::-webkit-scrollbar {
    display: none;
}

.our-products .home-products-track .product {
    flex: 0 0 calc((100% - 60px) / 3);
    scroll-snap-align: start;
    background: #f7f9fb;
    padding: 70px 30px 30px;
    display: flex;
    flex-direction: column;
}

.our-products .home-products-track .product .image {
    display: flex;
    justify-content: center;
    height: 225px;
}

.our-products .home-products-track .product .image img {
    height: 225px;
    max-width: 100%;
    object-fit: contain;
}

.our-products .home-products-track .product .product-info {
    flex-grow: 1;
}

.our-products .home-products-track .product .product-info .title {
    margin-top: 26px;
    font-family: Muli, sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #222;
}

.our-products .home-products-track .product .product-info .product-short-description {
    white-space: normal;
    overflow: initial;
    text-overflow: clip;
    min-height: 84px;
    margin-top: 10px;
}

.our-products .home-products-track .product .product-footer {
    align-items: center;
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.our-products .home-products-track .product .product-footer .btn {
    white-space: nowrap;
}

/* Carousel navigation arrows */
.our-products .home-products-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.our-products .home-products-arrow svg {
    width: 13px;
    height: 13px;
}

.our-products .home-products-arrow .fill {
    fill: #4070f4;
    transition: fill 0.2s ease;
}

.our-products .home-products-arrow:hover {
    background: #4070f4;
}

.our-products .home-products-arrow:hover .fill {
    fill: #fff;
}

.our-products .home-products-arrow:disabled {
    opacity: 0;
    pointer-events: none;
}

.our-products .home-products-arrow-prev {
    left: -22px;
}

.our-products .home-products-arrow-next {
    right: -22px;
}

@media (max-width: 991.98px) {
    .our-products .home-products-track .product {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 767.98px) {
    /* One full-width card at a time (no next-card peek), with the nav arrows
       reachable on narrow/downscaled windows (no touch-swipe): overlaid at the
       card edges and vertically centered on the product image. */
    .our-products .home-products-track .product {
        flex: 0 0 100%;
    }

    .our-products .home-products-arrow {
        width: 40px;
        height: 40px;
        top: 182px; /* image center: 70px card top-padding + 225px / 2 */
        transform: translateY(-50%);
    }

    .our-products .home-products-arrow-prev {
        left: 4px;
    }

    .our-products .home-products-arrow-next {
        right: 4px;
    }
}
