/*
================================================
Space Vanta Theme 1.0
Module:
Product Card
File:
product-card.css

Purpose:
Product Card Visual Layer

Version:
1.1
================================================
*/


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

.sv-product-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}


/*
================================================
Product Card Media
================================================
*/

.sv-product-card__media {
    width: 100%;
    height: 220px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;

    transition: transform 0.25s ease;
}


/*
================================================
Desktop Image Hover
================================================
*/

@media (min-width: 769px) {

    .sv-product-card:hover .sv-product-card__media img {
        transform: scale(1.03);
    }

}


/*
================================================
Product Card Information
================================================
*/

.sv-product-card__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
}


/*
================================================
Product Title
================================================
*/

.sv-product-card__title h3 {
    margin: 0;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


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

@media (max-width: 768px) {

    .sv-product-card__media {
        height: 150px;
    }

    .sv-product-card__info {
        margin-top: 10px;
    }

    .sv-product-card__title h3 {
        font-size: 14px;
    }

}