.mainProductContent .crossSells {
    width: 100%;
    padding: 0 5.3%;
    margin-top: 150px;
    box-sizing: border-box;
    background-color: rgb(242, 242, 242);
    padding-top: 40px;
    padding-bottom: 50px;
}

.crossSellsTitle h2 {
    margin: 0;
    font-family: 'Inter';
    font-size: 1.5em;
    font-weight: 500;
    color: rgb(9, 23, 43);
    margin-bottom: 10px;
}

.crossSellsTitle, .crossSellsSeparator {
    margin-left: 9px;
}

.crossSellsSeparator {
    background-color: rgba(9, 23, 43, 0.4);
    width: 400px;
    height: 1px;
    margin-bottom: 50px;
}

.crossSellsContent {
    position: relative;
}

a.crossSellsProduct {
    height: 570px;
    cursor: pointer;
    text-decoration: none;
    background-color: white;
    border-radius: 10px;
    filter: drop-shadow(4px 6px 4px rgba(0, 0, 0, 0.7));
    padding: 30px 15px;
    box-sizing: border-box;
    display: block;
}

.swiper.crossSellsSwiper {
    padding: 0 8.5px;
    padding-bottom: 10px;
}

.crossSellsContent .swiper-button-prev::after, .crossSellsContent .swiper-button-next::after {
    display: none;
}

.crossSellsContent :is(.swiper-button-next svg, .swiper-button-prev svg) {
    width: 100%;
    height: auto;
    display: block;
}

.crossSellsContent :is(.swiper-button-next, .swiper-button-prev) {
    border: 1px solid rgb(77, 77, 77);
    background-color: rgb(242, 242, 242);
    width: 30px;
    height: 30px;
    padding: 10px;
    transition: all 0.35s ease-in-out;
    border-radius: 50%;
}

.crossSellsContent .swiper-button-next {
    top: 50%;
    left: 100%;
    transform: translateX(-65%);
}

.crossSellsContent .swiper-button-prev {
    top: 50%;
    left: 0;
    transform: translateX(-35%);
}

.crossSellsProductTop {
    height: 75%;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.crossSellsProductIcons {
    position: absolute;
    top: 0;
    left: 100%;
    display: flex;
    flex-direction: row;
    transform: translateX(calc(-100% - 80px));
}

.crossSellsProductImgs {
    width: 100%;
    height: 70%;
    position: relative;
}

.crossSellsProductImgs img {
    width: 100%;
    height: 100% !important;
    display: block;
    object-fit: contain;
}

.crossSellsProductImgFirst, .crossSellsProductImgSecond {
    width: 100%;
    height: 100%;
    transition: all 0.15s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.crossSellsProductImgFirst {
    opacity: 1;
    transition: opacity 0.35s ease-in-out;
}

.crossSellsProductImgSecond {
    z-index: -1;
    opacity: 0;
    transform: scale(1);
    transition: all 0.75s cubic-bezier(.35,.86,.67,.86);
}

.crossSellsProductImgs:hover .crossSellsProductImgFirst {
    opacity: 0;
}

.crossSellsProductImgs:hover .crossSellsProductImgSecond {
    transform: scale(1.1);
    opacity: 1;
}

.crossSellsProductBottom {
    height: 25%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 15px;
    box-sizing: border-box;
}

.crossSellsProductIcons svg {
    width: 100%;
    height: 100%;
    display: block;
}

.crossSellsProductFav, .crossSellsProductCart {
    width: 20px;
}

.crossSellsProductFav {
    margin-left: 10px;
}

.crossSellsProductBottom p {
    margin: 0;
    font-family: 'Inter';
    font-weight: 600;
    color: rgb(51, 51, 51);
    font-size: 0.9em;
}

.crossSellsProductTitle p:first-of-type {
    margin-bottom: 5px;
}

.crossSellsProductPrice p {
    color: rgb(193, 39, 45);
    font-size: 1em;
}

.crossSellsProductAddCart {
    cursor: pointer;
    border: 1px solid rgb(51, 51, 51);
    width: 150px;
    margin: 0 auto;
    padding: 3px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.crossSellsProductAddCart p {
    font-size: 0.9em;
}

.crossSells .noProducts {
    font-family: 'Inter';
    margin: 0 auto;
    margin-bottom: 80px;
    font-size: 2em;
    color: rgb(9, 23, 43);
    font-weight: 600;
}