.pins-look {
    display: none;
    max-width: 596px;
    width: 100%;
}

.pins-look.is-open {
    display: block;
}

body.pins-look-body-lock {
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
}

.pins-look__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 500;
    font-size: 20px;
    color: #141414;
}

.pins-look__close {
    border: none;
    background: url('/_/dist/images/icon64.svg') no-repeat center;
    background-size: contain;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    padding: 0;
    cursor: pointer;
}



.pins-look-item {
    display: grid;
    gap: 16px;

    padding: 20px 0;
    border-bottom: 1px solid #e7e7e7;
}
.pins-look-item_row{
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pins-look-item__image-link {
    display: block;
    flex: 0 0 95px;
    width: 95px;
    height: 130px;
    background: #f4f4f4;
}

.pins-look-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pins-look-item__content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    min-height: 130px;
}

.pins-look-item__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.pins-look-item__meta {
    min-width: 0;
}

.pins-look-item__name {
    display: inline-block;
    margin-bottom: 6px;
    color: #141414;
    font-size: 16px;
    text-decoration: none;
}


.pins-look-item__article {
    color: #8f8f8f;
    font-size: 16px;
}

.pins-look-item__bottom-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: auto;
}

.pins-look-item .itemsLeftTextBottomBlock {
    width: auto;
    max-width: none;
}

.pins-look-item__color {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.pins-look-item__color-dot {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    border: 1px solid #141414;
    border-radius: 50%;
}

.pins-look-item__color-name {
    color: #141414;
    font-size: 14px;
}

.pins-look-item__price-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    white-space: nowrap;
}

.pins-look-item__price-current {
    color: #141414;
    font-size: 16px;
    font-weight: bold;
}

.pins-look-item__price-old {
    color: #8f8f8f;
    font-size: 16px;
    text-decoration: line-through;
}

.cardRightBottom__href.pins-look-item__button {
    width: 100%;
    height: 43px;
    font-size: 14px;
}
@media (max-width: 650px) {
    .cardRight{
        display: block!important;
    }
    .pins-look__title{
        padding-bottom: 10px;
    }
    .pins-look{
        position: fixed;
        bottom: 0px;
        background-color: #fff;
        width: 100%;
        z-index: 99999;
        max-width: 100%;
        left: 0px;
        padding: 20px;
        max-height: 70vh;
        flex-direction: column;
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
        -webkit-border-top-left-radius: 10px;
        -webkit-border-top-right-radius: 10px;
        -moz-border-radius-topleft: 10px;
        -moz-border-radius-topright: 10px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .pins-look.is-open {
        display: flex;
    }

    .pins-look__list {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}