/**
 * Products Archive & Grid Styles
 * استایل لیست و گرید محصولات
 */

.main-products-list { 
  max-width: 1460px; 
  margin: 0 auto; 
  padding: 22px 12px; 
}

/* Products Header */
.products-header {
  text-align: center;
  margin-bottom: 40px;
}

.products-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.products-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.products-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* Grid محصولات - پیش‌فرض دسکتاپ */
.products-grid { 
  display: grid !important; 
  grid-template-columns: repeat(4, 1fr) !important; 
  gap: 20px 15px !important; 
}

/* استایل کارت محصول */
.product-card { 
  border-radius: 13px;
  box-shadow: 0 2px 14px #cacaca1d;
  overflow: hidden;
  transition: all .3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%; 
}

.product-card:hover { 
  box-shadow: 0 7px 25px #99999932;
  transform: translateY(-5px);
}

.product-thumb { 
  display: block; 
  width: 100%; 
  height: 280px; 
  overflow: hidden; 
  position: relative;
}

.product-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover .product-thumb::after {
  opacity: 1;
}

.product-thumb img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.08);
}

.product-content { 
  padding: 13px 13px 12px; 
  width: 100%; 
  text-align: center; 
}

.product-title { 
  font-weight: bold; 
  font-size: 1.1rem; 
  color: #242424; 
  margin: 0 0 5px; 
  line-height: 1.4; 
}

.product-price { 
  font-weight: 600; 
  font-size: 1rem; 
  margin: 0 0 11px 0; 
  letter-spacing: .2px; 
}

.product-detail-btn { 
  display: block; 
  font-weight: 600; 
  text-decoration: none; 
  padding: 8px 23px; 
  border-radius: 8px; 
  font-size: .98rem; 
  transition: all .3s; 
  margin: 0 auto; 
  box-shadow: 0 2px 4px #ffeab720;
}

.product-detail-btn:hover { 
  background: #faaf40 !important; 
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px #ffeab750;
}

/* ===== ریسپانسیو ===== */
@media only screen and (max-width: 1200px) { 
  .products-grid { 
    grid-template-columns: repeat(3, 1fr) !important; 
  } 
}

@media only screen and (max-width: 900px) { 
  .products-grid { 
    grid-template-columns: repeat(2, 1fr) !important; 
  } 
}

@media only screen and (max-width: 768px) { 
  .products-grid { 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 15px 12px !important; 
  }
  
  .product-thumb { 
    height: 200px !important; 
  }
  
  .product-title { 
    font-size: 1rem !important; 
  }
  
  .product-price { 
    font-size: 0.95rem !important; 
  }
  
  .product-detail-btn { 
    padding: 7px 15px !important; 
    font-size: 0.9rem !important; 
  }
}

@media only screen and (max-width: 600px) { 
  .products-grid { 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 12px 10px !important; 
  } 
}

@media only screen and (max-width: 480px) { 
  .products-grid { 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 10px 8px !important; 
  }
  
  .product-thumb { 
    height: 180px !important; 
  }
}

