

/* Start:/local/templates/marketplace/components/bitrix/catalog.section/marketplace/style.css?17854885612998*/
/* ==========================================
   Product grid
   ========================================== */

.mp-product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:24px;
}

/* ==========================================
   Card
   ========================================== */

.mp-product-card{
    display:flex;
    flex-direction:column;
    width:100%;
    min-width:0;
}

/* ==========================================
   Image
   ========================================== */

.mp-product-card__image{
    position:relative;
    display:block;
    width:100%;
    aspect-ratio:1/1;
    overflow:hidden;
    border-radius:18px;
    background:#f5f5f5;
}

.mp-product-card__img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:
        opacity .35s ease,
        transform .35s ease;
}

.mp-product-card__img--main{
    opacity:1;
    z-index:1;
}

.mp-product-card__img--hover{
    opacity:0;
    z-index:2;
}

.mp-product-card:hover .mp-product-card__img{
    transform:scale(1.04);
}

.mp-product-card:hover .mp-product-card__img--main{
    opacity:0;
}

.mp-product-card:hover .mp-product-card__img--hover{
    opacity:1;
}

/* если второй картинки нет */

.mp-product-card__img--no-hover{
    opacity:1 !important;
}

/* ==========================================
   Info
   ========================================== */

.mp-product-card__info{
    display:flex;
    flex-direction:column;
    flex:1;
    padding-top:18px;
}

.mp-product-card__title{
    display:block;
    color:#111;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    line-height:1.35;
}

.mp-product-card__title:hover{
    color:#2563eb;
}

.mp-product-card__price{
    margin-top:12px;
    color:#111;
    font-size:20px;
    font-weight:700;
    line-height:1.2;
}

/* ==========================================
   Tablet
   ========================================== */

@media (max-width:1024px){

    .mp-product-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:20px;
    }

}

/* ==========================================
   Mobile
   ========================================== */

@media (max-width:768px){

    .mp-product-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:16px;
    }

    .mp-product-card__title{
        font-size:15px;
    }

    .mp-product-card__price{
        margin-top:8px;
        font-size:17px;
    }

}

/* ==========================================
   Small mobile
   ========================================== */

@media (max-width:480px){

    .mp-product-grid{
        gap:12px;
    }

    .mp-product-card__image{
        border-radius:14px;
    }

    .mp-product-card__info{
        padding-top:10px;
    }

    .mp-product-card__title{
        font-size:14px;
        line-height:1.3;
    }

    .mp-product-card__price{
        font-size:16px;
    }

}
/* End */
/* /local/templates/marketplace/components/bitrix/catalog.section/marketplace/style.css?17854885612998 */
