/* گرید محصولات */

.marketer-products-wrapper {
  margin: 40px auto;
  max-width: 1200px;
  padding: 10px;
}


.marketer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

/* هر محصول */
.marketer-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.marketer-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* کارت داخلی */
.marketer-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 15px;
}

/* تصویر */
.marketer-thumb img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.marketer-thumb:hover img {
  transform: scale(1.05);
}

/* عنوان محصول */
.marketer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 10px 0;
}

/* قیمت */
.marketer-price {
  font-size: 1rem;
  color: #00a859;
  font-weight: bold;
  margin-bottom: 10px;
}

/* دکمه افزودن به سبد */
.marketer-btn .button {
  background: #0073aa;
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.marketer-btn .button:hover {
  background: #005f8a;
}

/* صفحه‌بندی */
.marketer-pagination {
  text-align: center;
  margin-top: 25px;
}

.marketer-pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 12px;
  border-radius: 6px;
  background: #f2f2f2;
  color: #333;
  transition: all 0.2s ease;
}

.marketer-pagination .current {
  background: #0073aa;
  color: #fff;
}
