/* الخط الأساسي */
body {
  font-family: 'Cairo', sans-serif;
  background-color: #ffffff;
  color: #000000;
}

/* الهيدر */
.header {
  background-color: #000000;
  color: #FFD700;
  padding: 20px;
  text-align: center;
}

/* الفوتر */
.footer {
  background-color: #000000;
  color: #FFD700;
  padding: 20px;
  text-align: center;
}

/* الأزرار */
.button, .btn {
  background-color: #FFD700;
  color: #000000;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

/* بطاقات المنتج */
.product-card {
  border: 1px solid #e0e0e0;
  padding: 20px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

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

.product-card .product-title {
  color: #000000;
  font-weight: bold;
  margin: 10px 0;
}

.product-card .product-price {
  color: #FFD799;
  font-size: 1.2em;
  margin-bottom: 10px;
}
.cart-icon {
  position: relative;
  display: inline-block;
  padding: 10px;
  background-color: #FFD700;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cart-icon:hover {
  background-color: #FFD700;
  transform: scale(1.05);
}

.cart-icon img {
  width: 24px;
  height: 24px;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #FFD700;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}