/* Box "Các sản phẩm khác của shop" - desktop */
.other-product-shop-box {
    position: relative;
}

.other-product-shop-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
}

/* Khi số sản phẩm nhiều, slick sẽ chuyển list sang dạng slider */
.other-product-shop-list.slick-initialized {
    display: block;
    grid-template-columns: none;
    grid-gap: 0;
}

.other-product-shop-list.slick-initialized .slick-list {
    margin: 0 -5px;
}

.other-product-shop-list.slick-initialized .slick-track {
    display: flex;
    align-items: stretch;
    margin-left: 0;
}

.other-product-shop-list.slick-initialized .slick-slide {
    height: auto;
    padding: 0 5px;
}

.other-product-shop-item {
    padding: 0;
}

/* Arrows */
.other-product-shop-box .other-product-shop-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
    color: var(--black);
    cursor: pointer;
    transition: all 0.2s ease;
}

.other-product-shop-box .other-product-shop-arrow:hover {
    background-color: #fff;
    color: var(--primary);
}

.other-product-shop-box .other-product-shop-arrow:before {
    content: none;
}

.other-product-shop-box .other-product-shop-arrow.slick-prev {
    left: -14px;
}

.other-product-shop-box .other-product-shop-arrow.slick-next {
    right: -14px;
}

.other-product-shop-box .other-product-shop-arrow.slick-disabled {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.other-product-shop-box .detail-content-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 16px;
}

.view-all-other-product {
    display: flex;
    align-items: center;
    grid-gap: 4px;
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 1200px) {
    .other-product-shop-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .other-product-shop-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .other-product-shop-box .other-product-shop-arrow.slick-prev {
        left: 0;
    }

    .other-product-shop-box .other-product-shop-arrow.slick-next {
        right: 0;
    }
}
