/* =========================
   Products
========================= */

.products-section{
    width:100%;
    padding:60px 0;
}

/* هر دسته زیر دسته قبلی */
.product-category{
    display:flex;
    flex-direction:column;
    gap:30px;
    margin-bottom:80px;
    width:100%;
}

.product-category:last-child{
    margin-bottom:0;
}

/* عنوان دسته */
.category-header{
    width:100%;
}

.category-header h2{
    font-size:32px;
    margin-bottom:10px;
}

.category-header p{
    color:#666;
    line-height:1.9;
}

/* محصولات کنار هم */
.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
    gap:24px;
    width:100%;
}

/* کارت محصول */
.product-card{
    background:#fff;
    border-radius:16px;
    border:1px solid #eee;
    overflow:hidden;
    transition:.3s;
    display:flex;
    flex-direction:column;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.product-image{
    width:100%;
    aspect-ratio:1/1;
    background:#f6f6f6;
    display:flex;
    align-items:center;
    justify-content:center;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.product-body{
    padding:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.product-title{
    font-size:20px;
    font-weight:700;
}

.product-features{
    list-style:none;
    padding:0;
    margin:0;
}

.product-features li{
    margin-bottom:8px;
    color:#555;
}

.product-actions{
    display:flex;
    gap:12px;
    margin-top:auto;
}

.product-actions a{
    flex:1;
    text-align:center;
}

/* موبایل */
@media (max-width:768px){

    .products-grid{
        grid-template-columns:1fr;
    }

    .category-header h2{
        font-size:26px;
    }

}