
.baosidun-other-products {
    padding-top: 64px;
    padding-bottom: 80px;
    width: 100%;
    position: relative;
    background: #f5f5f5;
}

.baosidun-other-products-header-wrapper {
    display: flex;
    align-items: center;
}

.baosidun-other-products-header {
    flex: 1;
    text-align: left;
}

.baosidun-other-products-title {
    color: var(--title-text-color);
    font-size: var(--font-48);
    font-weight: 700;
    line-height: 137.5%;
    font-family: var(--title-font-family);
    text-align: left;
}

.baosidun-other-products-content {
    position: relative;
}

.baosidun-other-products-swiper-wrapper {
    position: relative;
}

.baosidun-other-products-swiper-wrapper .baosidun-other-products-swiper {
    width: 100%;
    padding: 65px 0;
}

.baosidun-other-products-swiper-wrapper .baosidun-other-products-swiper .swiper-wrapper {
    display: flex;
}

.baosidun-other-products-swiper-wrapper .baosidun-other-products-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: auto;
    box-sizing: border-box;
}

.baosidun-other-products-swiper-wrapper .baosidun-other-products-swiper .swiper-slide .baosidun-other-products-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.baosidun-other-products-card {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: var(--gap-60);
}

.baosidun-other-products-card-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
}

.baosidun-other-products-card-image img {
    height: 226px;
    aspect-ratio: 213 / 226;
    object-fit: cover;
    margin:0 auto; 
}

.baosidun-other-products-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #9ca3af;
}


.baosidun-other-products-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 55px 30px 47px 30px;
}

.baosidun-other-products-card-title {
    color: var(--title-text-color);
    font-size: var(--font-22);
    font-weight: 600;
    line-height: 163.636%;
    font-family: var(--font-family);
    height: calc(1.63636em);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.baosidun-other-products-card-desc {
    font-family: var(--font-family);
    font-size: var(--font-18);
    font-weight: 400;
    line-height: 166.667%;
    color: #555;
    height: calc(1.66667em * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.baosidun-other-products-card-button {
    width: max-content;
    position: absolute;
    left: 30px;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.baosidun-other-products-card:hover {
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.12);
}

.baosidun-other-products-card:hover .baosidun-other-products-card-title {
    color: var(--color-primary);
}

.baosidun-other-products-card:hover .baosidun-other-products-card-button {
    opacity: 1;
    visibility: visible;
    transform: translateY(50%);
}

.baosidun-other-products-card:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
  }

.baosidun-other-products-card-button-text {
    display: inline-block;
}

.baosidun-other-products-navigation.navigation-container {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: none;
    gap: var(--gap-20);
    width: max-content;
    flex-shrink: 0;
}

.baosidun-other-products-navigation.show {
    display: flex;
}

.baosidun-other-products-navigation.navigation-container .navigation-button-prev,
.baosidun-other-products-navigation.navigation-container .navigation-button-next {
    transform: none;
    transition:
        opacity 0.3s ease,
        background-color 0.3s ease;
    width: 48px;
    height: 48px;
}

.baosidun-other-products-navigation.navigation-container .navigation-button-prev {
    background-color: #353A40;
    color: #fff;
}

.baosidun-other-products-navigation.navigation-container .navigation-button-next {
    background-color: var(--color-primary);
    color: #fff;
}

.baosidun-other-products-navigation.navigation-container .navigation-button-prev:hover,
.baosidun-other-products-navigation.navigation-container .navigation-button-next:hover {
    opacity: 0.8;
}

.baosidun-other-products-navigation.navigation-container .navigation-button-prev.swiper-button-disabled,
.baosidun-other-products-navigation.navigation-container .navigation-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.baosidun-other-products-empty {
    text-align: center;
    padding: var(--spacing-7xl) 0;
    color: var(--text-color);
    font-size: var(--font-size-md);
}

@media (max-width: 1200px) {
    .baosidun-other-products-card-content {
        padding: 45px 24px 40px 24px;
    }
}

@media (max-width: 992px) {
    .baosidun-other-products-card-content {
        padding: 36px 20px 34px 20px;
    }

    .baosidun-other-products-card-button {
        left: 20px;
    }

    .baosidun-other-products-swiper-wrapper .baosidun-other-products-swiper {
        padding: 40px 0;
    }
}

@media screen and (max-width: 768px) {
    .baosidun-other-products-card-content {
        padding: 28px 16px 30px 16px;
    }

    .baosidun-other-products-card-button {
        left: 16px;
    }

    .baosidun-other-products {
        padding: 40px 0;
    }

    .baosidun-other-products-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0px;
    }

    .baosidun-other-products-swiper-wrapper .baosidun-other-products-swiper {
        padding: 20px 0;
    }

}

@media (max-width: 576px) {
    .baosidun-other-products-card-content {
        padding: 24px 14px 26px 14px;
    }

    .baosidun-other-products-card-button {
        left: 14px;
    }
}

@media (min-width: 1200px) {
    /* .baosidun-other-products-swiper-wrapper .baosidun-other-products-swiper .swiper-slide {
        width: calc((100% - 60px) / 3) !important;
        flex-shrink: 0;
    } */
}
.baosidun-other-products-swiper-wrapper .baosidun-other-products-swiper {
    will-change: transform;
}

.baosidun-other-products-swiper-wrapper .baosidun-other-products-swiper .swiper-wrapper {
    will-change: transform;
}
