
/* الحاوية الرئيسية */
.product-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  margin-top: 2px;
  background: radial-gradient(circle at center, goldenrod, #0d3b66);
}

/* عنوان القسم */
.product-section h2 {
  text-align: center;
  color: #f9f9f9;
  margin-bottom: 30px;
  font-size: 25px;
}

/* شبكة المنتجات */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* مربعات المنتجات */
.product-card {
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.3s ease;
  position: relative;
}

/* عند ظهور البطاقة في الشاشة */
.product-card.visible {
  transform: translateY(0);
  opacity: 1;
}

/* تكبير كامل المربع مع الظل عند المرور */
.product-card:hover,
.product-card.touch-active {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* صندوق الصورة لضمان شكل مربع */
.product-image {
  width: 100%;
  padding-top: 100%; /* مربع */
  position: relative;
  overflow: hidden;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* تأثير إبراز الصورة + ظل داخلي عند المرور */
.product-card:hover img,
.product-card.touch-active img {
  filter: brightness(1.2) contrast(1.2);
  transform: scale(1.05);
  box-shadow: inset 0 0 20px rgba(255,255,255,0.2);
}

/* تأثير النقر: شفافية بسيطة */
.product-card:active img {
  opacity: 0.8;
}

/* التدرج اللوني أسفل الصورة عند المرور */
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(255,255,255,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card:hover::after,
.product-card.touch-active::after {
  opacity: 1;
}

/* اسم المنتج */
.product-name {
  padding: 10px;
  font-size: 16px;
  line-height: 1.4;
  position: relative;
  z-index: 2; /* فوق التدرج */
}

/* التصميم المتجاوب للهواتف */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr); /* دائمًا 2 منتجات في الصف */
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* دعم اللمس للهواتف */
@media (hover: none) and (pointer: coarse) {
  .product-card {
    touch-action: manipulation;
  }
}

/* إزالة تزيين الروابط */
.product-card a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}




/* ازرار التنقل بين الاقسام رجالي و نسائي و للجنسين */


    /* أزرار التبويبات */
.tab-buttons {
  display: flex;
  justify-content: center;
  background: #0d3b66;
  margin: 20px 0;
    }

.tab-buttons button {
  flex: 1;
  padding: 15px;
  cursor: pointer;
  border: none;
  background: #0d3b66;
  color: #fff;
  font-size: 20px; 
  transition: background 0.3s;
    }

.tab-buttons button:hover { background: goldenrod; }
.tab-buttons button.active { background: goldenrod; }
.tab-content { display: none; }
.tab-content.active { display: block; }
 