* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Vazirmatn", sans-serif;
}

/* تنظیم سکشن محصولات */
.products-section {
  background-color: var(--light-grey);
  padding: 80px 0;
}

/* کارت محصول */
.product-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--border-radius-md);
  padding: 15px;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column; /* برای تراز شدن عمودی محتوا */
}

.product-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  transform: translateY(-5px);
}

/* تصویر محصول */
.product-img-wrapper {
  background: #f8f9fa;
  border-radius: var(--border-radius-sm);
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-img-wrapper img {
  max-height: 140px;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.5s ease;
}



/* اطلاعات محصول */
.product-info {
  flex-grow: 1; /* باعث می‌شود تمام کارت‌ها هم‌ارتفاع شوند */
  display: flex;
  flex-direction: column;
}

.product-info h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-grey);
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.85rem;
  color: rgba(22, 30, 75, 0.6);
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

/* دکمه اختصاصی کوچک */
.btn-mini {
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.btn-mini:hover {
  background: var(--industrial-gradient);
  color: var(--white);
  border-color: transparent;
}

/* تنظیم ابعاد ثابت برای عکس‌ها جهت جلوگیری از سنگین شدن رندر */
.product-img-wrapper {
  position: relative;
  aspect-ratio: 4 / 3; /* تمام تصاویر با نسبت ابعاد یکنواخت و استاندارد ست می‌شوند */
  background: #f3f4f6; /* رنگ خاکستری ملایم به عنوان پیش‌فرض */
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* تصاویر محصولات فنی نباید کشیده یا دفرمه شوند */
  transition: opacity 0.4s ease;
}

/* افکت جذاب برای کارت‌ها در دسکتاپ */
.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}


/* اطلاعات اضافه بالای محصولات */

.products-extra-info {
  margin-top: 10px;
}

.products-extra-item {
  background: rgba(26, 77, 46, 0.08);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
