.catalog {
    padding: 40px 0 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between
}

.catalog_item {
    width: calc(33% - 10px);
    margin-bottom: 30px
}

.catalog_item:nth-child(2n) {
    margin-right: 0
}

.catalog_item:last-child,
.catalog_item:nth-last-child(2) {
    margin-bottom: 0
}

.catalog_item a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 6px
}

.catalog_item-img {
    width: 100%;
    aspect-ratio: 458 / 687;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
}

.catalog_item-img picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.catalog_item-img picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
}

.catalog_item-img picture:first-of-type img {
    opacity: 1;
    visibility: visible;
}

.catalog_item-img .sold_out {
    position: absolute;
    z-index: 3;
    padding: 10px 10px;
    background: rgb(255 255 255);
    color: #000000;
    font-size: 12px;
    line-height: 1;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
}

.catalog_item-img picture:first-of-type img {
    position: unset;
    z-index: 1;
    visibility: visible;
    opacity: 1
}

.catalog_item-name {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .1em;
    text-align: center;
}

.catalog_item-price {
    color: #888;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
}

.catalog_item-colors {
    display: none;
    justify-content: center;
    align-items: center
}

.catalog_item-color {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 10px
}

.catalog_item-color:last-child {
    margin-right: 0
}

@media(max-width:768px) {
    .catalog {
        padding: 66px 0 75px
    }
}

@media(max-width:575px) {
    .catalog_item {
        width: calc(50% - 2px);
        margin-right: 0
    }

    .catalog_item,
    .catalog_item:nth-last-child(2) {
        margin-bottom: 10px
    }
}