
/* إعدادات أساسية */
body {
  margin: 0;
  padding: 0;
  font-family: 'Tajawal', sans-serif;
  background-color: #1e1e1e;
  color: #e0e0e0;
  direction: rtl;
  text-align: center;
}

/* الحاوية */
.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

/* الشعار */
.logo-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid #444;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

/* العناوين */
h1 {
  margin-top: 20px;
  text-shadow: 1px 1px 3px #000;
}

h2 {
  color: #bbbbbb;
}

p {
  color: #cccccc;
  font-size: 18px;
  margin: 20px auto;
  max-width: 600px;
}

/* المنتجات */
.products {
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
}

.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background-color: #2c2c2c;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 20px;
  max-width: 300px;
  flex: 1 1 300px;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 15px;
  background-color: #222;
}

.card h3 {
  color: #f1f1f1;
  font-size: 20px;
  margin: 10px 0;
}

.card h5{
  color: #f1f1f1;
  font-size: 25px;
  margin: 9px 0;
}

.card p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

.card a {
  display: inline-block;
  background-color: #444;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s ease;
}

.card a:hover {
  background-color: #666;
  transform: scale(1.05);
}

/* الفوتر والسوشال */
footer {
  margin-top: 60px;
  padding: 20px;
  border-top: 1px solid #444;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-button {
  border: none;
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  transition: 0.2s ease;
  color: white;
  width: 48px;
  height: 48px;
}

.social-button:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}


.whatsapp-button {
  background-color: #25D366; /* لون واتساب الرسمي */
  color: white;
}



