/* خلفية الصفحة */
body {
  background-color: #F5F0EB;
  font-family: 'Lato', sans-serif;
  color: #1C1C1C;
  margin: 0;
  padding: 0;
}

/* البانر الرئيسي */
.hero-banner {
  background-image: url('your-banner-image.jpg'); /* استبدل بالصورة الفعلية */
  background-size: cover;
  background-position: center;
  height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 5%;
  color: #1C1C1C;
}

.hero-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-banner p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}

.hero-banner .cta-button {
  background-color: #C4A484;
  color: #fff;
  padding: 12px 24px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-banner .cta-button:hover {
  background-color: #a88c6b;
}

/* بطاقات المنتجات */
.product-card {
  background-color: #FFFFFF;
  border: 1px solid #EAEAEA;
  padding: 20px;
  margin: 20px;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  border-radius: 6px;
}

.product-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin-top: 10px;
}

.product-card p {
  font-size: 16px;
  color: #555;
}

/* زر الفئة */
.category-button {
  background-color: transparent;
  border: 2px solid #C4A484;
  color: #C4A484;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-button:hover {
  background-color: #C4A484;
  color: #fff;
}