body {
    margin: 0;
    padding: 0;
    font-family: "Vazirmatn", sans-serif;

  }
  
  .products-page-main {
    max-width: 2000px;
    margin: 20px auto;
    padding: 0 15px;
  }
  
  .products-category-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 30px;
    color: #333;
  }
  
  /* گرید محصولات */
  .products-gridd {
    width: 1500px; /* همونی که گفتی حذف نشه */
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr); /* دسکتاپ = 3 ستون */
    margin: 0 auto;
}

/* کارت محصول */
.prod-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: .2s ease;
}

.prod-card:hover {
    transform: translateY(-5px);
}

  
  /* عکس محصول */
  .prod-img {
    width: 200px;
    height: 200px;
    margin-top: 30px;
    margin-right: 50px;
    object-fit: cover;
    display: block;
  }
  
  /* بخش اطلاعات */
  .prod-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
  
  .prod-info h3 {
    font-size: 16px;
    color: #222;
    margin: 0;
    line-height: 1.4;
  }
  
  .prod-price {
    color: #e53935;
    font-weight: bold;
  }
  
  .prod-btn {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
  }
  
  .prod-btn:hover {
    background: #0056b3;
  }
  
  .out-of-stock-text {
    color: #ff3333;
    font-weight: bold;
  }
  /* @media (max-width: 1110px) {
    .products-page-main{
      flex-wrap: wrap;
      
    }
} */

  /* ریسپانسیو */
  @media (max-width: 992px) {
    .products-page-main {
        flex-direction: column;   /* فیلتر برود بالا */
        align-items: center;
    }
    .filters-sidebar {
        width: 100%;              /* تمام عرض صفحه */
        max-width: 700px;
        order: -1;                /* بیاید بالای محصولات */
    }
    .products-gridd {
        width: 100%;
        max-width: 900px;
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ✅ موبایل بزرگ (تا 768px): دو ستونه */
@media (max-width: 768px) {
    .products-gridd {
        width: 100%;
        max-width: 700px;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ✅ موبایل کوچک: یک ستونه */
@media (max-width: 600px) {
  .filters-sidebar {
      width: 100%;
      max-width: 500px;
      order: -1;
  }
  .products-gridd {
      width: 100%;
      max-width: 500px;
      grid-template-columns: 1fr;
  }
}