.carousel__item {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    height: 100%;
}

.carousel__item .carousel__image {
    background: white;
    position: relative;
    text-align: center;
    display: flex;
}

.carousel__item .carousel__image img {
    aspect-ratio: 16/11;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.carousel__item .carousel__price {
    font-size: .875rem;
    padding: .4rem .55rem;
    display: flex;
    border: none;
    color: white;
    font-weight: 600;
    background: var(--black);
    margin-right: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel__item .free-delivery {
    color: var(--orange);
    font-weight: 400;
    padding: 0;
}

.carousel__item .basket-button-wrapper {
    margin-top: auto;
}

.carousel__item .carousel__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .3rem;
}

.carousel__item .carousel__buttons {
    position: absolute;
    top: 0;
    right: 0;
    z-index: var(--z-index-carousel-buttons);
    display: flex;
    flex-direction: row-reverse;
    gap: 1rem;
}

.carousel__content .sale__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .4rem;
}

.carousel__content .sale__container div {
    display: flex;
    gap: .4rem;
    align-items: center;
}

.carousel__content .product__grid__bottom {
    display: flex;
    gap: 1.3rem;
    margin-top: 1rem;
}

.carousel__content .list__cart__button {
    text-transform: uppercase;
    font-weight: 700;
}

.carousel__content .description {
    font-size: 1rem;
    text-decoration: none;
    color: var(--black);
    /*max-height: 40px;*/
    /*min-height: 40px;*/
    line-height: 1.55rem;
    /*font-weight: 600;*/
}

.description:hover {
    color: var(--orange);
    transition: .6s;
}

.carousel__content .product-opinions {
    display: flex;
    gap: 0.25rem;
    align-items: center;

    .product-opinions__stars {
        height: 0.75rem;
    }

    .product-opinions__count {
        font-size: var(--fs-xs);
    }
}

.sale__container .sale__price {
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
}

.sale__container .sale__price span {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 100%;
}

.sale__container .sale__price--black {
    color: var(--black);
    font-weight: 600;
}

.sale__container .price {
    font-size: .9rem;
    text-decoration: none;
}

/*@media only screen and (max-width: 767px) {*/
/*    .glider-contain .glider-next, .glider-contain .glider-prev {*/
/*        display: none;*/
/*    }*/
/*}*/
@media only screen and (max-width: 449px) {
    .carousel__item .carousel__image img {
        aspect-ratio: 15/9;
    }

    .sale__container .sale__price {
        font-size: 1.2rem;
    }

    .sale__container .sale__price span {
        font-size: 0.75rem;
    }
}