/* =========================
   PRODUCT FEED
========================= */

.product-feed {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px;
}


.products-grid {
    display: grid;

    /*
     * Երկու հավասար սյուն
     */

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px;
}


.product-card {
    background: #fff;

    border-radius: 14px;

    overflow: hidden;

    border: 1px solid #e9e9e9;

    cursor: pointer;

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}


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

    box-shadow:
        0 5px 20px rgba(0,0,0,0.08);
}


.product-image {
    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    display: block;

    background: #eee;
}


.product-info {
    padding: 11px;
}


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

    font-weight: 700;

    margin-bottom: 5px;
}


.product-description {
    font-size: 13px;

    line-height: 1.4;

    color: #777;

    height: 38px;

    overflow: hidden;

    margin-bottom: 9px;
}


.product-meta {
    font-size: 12px;

    color: #999;

    margin-bottom: 7px;
}


.product-price {
    font-size: 18px;

    font-weight: 800;
}


/* =========================
   DESKTOP
========================= */

@media (min-width: 700px) {

    .product-feed {
        padding: 20px;
    }


    /*
     * Desktop-ում նույնպես պահում ենք
     * հենց 2 հավասար սյուն։
     */

    .products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

}