/* إخفاء المنتجات من الصفحة الرئيسية */
.home .product-item,
.home .products-wrapper {
  display: none !important;
}

/* تصنيف التصنيفات */
.category-list,
.categories-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* تنسيق كل بطاقة تصنيف */
.category-list a,
.categories-list a {
  display: block;
  text-align: center;
  background-color: #ffffff;
  border: 2px solid #A2C698;
  border-radius: 12px;
  padding: 15px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

/* تأثير التحويم */
.category-list a:hover,
.categories-list a:hover {
  background-color: #C6BD76;
  color: white;
  transform: translateY(-5px);
}

/* ألوان الروابط العامة */
a {
  color: #A2C698;
}

a:hover {
  color: #C6BD76;
}

/* أزرار الشراء */
button,
.btn,
.button {
  background-color: #A2C698;
  border: none;
  color: white;
  transition: all 0.3s ease;
}

button:hover,
.btn:hover,
.button:hover {
  background-color: #C6BD76;
}

/* تنسيق العناوين */
h1, h2, h3, h4 {
  color: #A2C698;
}