/* ==========================================================================
   PRODUCT LIST PAGE SPECIFIC STYLES
   ========================================================================== */

/* PRODUCTS GRID
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 140px 94px;
    margin-bottom: 80px;
}

.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card>a {
    text-decoration: none;
}

.product-card.grid_start {
    grid-column-start: 1;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: auto;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 16px 0 0;
    position: relative;
}

.product-name {
    font-size: 14px;

    color: var(--color-text-primary);
    line-height: 1.4;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product-name {
    font-weight: bold;
}

.product-name span span {
    font-size: 10px;
    font-weight: 400;
}

.product-price {
    font-size: 16px;
    color: var(--color-text-primary);
}

.product-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    margin-left: 10px;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

/* PRODUCT ICONS
   ========================================================================== */
.brain-icon {
    background-image: url("../img/icon/products_icon_brain.png");

}

.eye-icon {
    background-image: url("../img/icon/products_icon_eye.png");

}

.skin-icon {
    background-image: url("../img/icon/products_icon_skin.png");

}

.hair-icon {
    background-image: url("../img/icon/products_icon_hair.png");
}

.muscle-icon {
    background-image: url("../img/icon/products_icon_muscle.png");
}

.leaf-icon {
    background-image: url("../img/icon/products_icon_nature.png");

}

/* RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .products-grid {
        /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 24px;

    }

    .product-icon {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
        margin-left: 10px;
        background-position: top;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .product-info {
        padding: 10px 0 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: auto;
    }

    .product-price {
        align-items: flex-end;
    }
}