section#products {
    background: #f0f0f07a;
    padding-bottom: 50px;
    padding-top: 25px;
}

/* GRID – 3 PER ROW */
.products-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* CARD */
.product-card{
  display:flex;
  gap:20px;
  padding:22px;
  border-radius:20px;
  text-decoration:none;
  color:#111;
  background:#f9fafb;
  align-items:center;
  transition:transform .2s ease;   /* انیمیشن خیلی خفیف */
}

.product-card:hover{
  transform:translateY(-2px);      /* فقط حس زنده بودن */
}

/* LOGO AREA – 40% */
.product-thumb{
  flex:0 0 40%;                     /* ✅ ۴۰٪ */
  height:100px;
  background:#fff;                  /* بک سفید */
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* LOGO IMAGE */
.product-thumb img{
  max-width:85%;
  max-height:85%;
  object-fit:contain;
}

/* CONTENT – 60% */
.product-content{
  flex:0 0 60%;                     /* ✅ ۶۰٪ */
}

.product-content h3{
  font-size:1.1rem;
  font-weight:800;
  margin-bottom:6px;
}

.product-content p{
  font-size:.9rem;
  color:#333;
  line-height:1.5;
}

/* COLOR THEMES */
.product-card.store{background:#e0f2fe;}
.product-card.stock{background:#dcfce7;}
.product-card.hr{background:#ede9fe;}
.product-card.care{background:#fee2e2;}
.product-card.travel{background:#fef3c7;}
.product-card.edu{background:#e0e7ff;}

/* RESPONSIVE */
@media(max-width:1024px){
  .products-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:640px){
  .products-grid{
    grid-template-columns:1fr;
  }

  .product-card{
    flex-direction:row;
  }

  .product-thumb{
    height:90px;
  }
}



.products-head{
  max-width:900px;
  margin:0 auto 60px;
  text-align:center;        /* ✅ وسط‌چین */
}

.products-head h2{
  font-size:2.4rem;
  font-weight:800;
  margin-bottom:12px;
}

.products-head p{
  color:#555;
  line-height:1.7;
  margin:0 auto;            /* ✅ وسط */
}
