/* فقط استایل محصول، بدون تأثیر روی منو */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  padding: 4rem 2rem;
  background: #f4f6f9;
}

.product-card {
  background: #0f1c2e;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #1c2c42;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.35);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #22334c;
}

.product-card-content {
  padding: 1.5rem;
  text-align: center;
}

.product-card-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.product-card-content p {
  font-size: 0.95rem;
  color: #d0d6e0;
}

.product-card-content a {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.6rem 1.2rem;
  color: #0f1c2e;
  background: linear-gradient(135deg, #f9d976, #f39f19);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(243, 159, 25, 0.45);
  transition: all 0.3s ease;
}

.product-card-content a:hover {
  background: linear-gradient(135deg, #f1c63f, #e68a00);
  box-shadow: 0 6px 18px rgba(243, 159, 25, 0.6);
}

@media (max-width: 768px) {
  .products-grid {
    padding: 2rem 1rem;
  }

  .product-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
}
