    .section-title {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 20px 0 10px;
      position: relative;
    }

    .section-title span {
      background: #f9f9f9;
      padding: 0 10px;
      font-size: 16px;
      color: #2A0800;
      z-index: 1;
      font-weight: bold;
    }

    .section-title::before,
    .section-title::after {
      content: "";
      flex: 1;
      height: 1px;
      background: #e0e0e0;
      margin: 0 10px;
    }



    h2 {
      text-align: center;
      margin-bottom: 30px;
      color: #444;
    }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px; /* 👈 فاصله بین باکس‌ها کمتر شد */
  padding: 0 24px; /* 👈 فاصله از چپ و راست صفحه بیشتر شد */
}


@media (min-width: 768px) and (max-width: 1023px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr); /* تبلت: ۳ ستون */
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr); /* لپ‌تاپ: ۴ ستون */
  }
}

    .product-card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      transition: transform 0.2s ease;
    }

    .product-card:hover {
      transform: translateY(-5px);
    }

    .product-card img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .product-card p {
      margin-top: 10px;
      font-size: 15px;
      color: #333;
    }

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}