body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  background: url('https://i.postimg.cc/XqJyGRG7/1761317659987.png') repeat fixed center center;
  background-size: cover;
  color: white;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

/* 🔥 الشعار */
header {
  text-align: center;
  margin-top: 30px;
}
header .logo {
  width: 260px;
  filter: drop-shadow(0 0 20px #ff9900);
}

/* ✨ الجملة الترحيبية */
.tagline {
  text-align: center;
  font-size: 22px;
  margin-top: 10px;
  color: #fff3cd;
  text-shadow: 0 0 10px #ffcc66;
  margin-bottom: 30px;
}

/* 🔘 أزرار واتساب وإنستغرام */
.socials {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.btn-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.btn-circle img {
  width: 40px;
  height: 40px;
}

.btn-circle.whatsapp {
  background: radial-gradient(circle, #25D366 10%, #128C7E 90%);
}
.btn-circle.instagram {
  background: radial-gradient(circle, #E4405F 10%, #8a3ab9 90%);
}

.btn-circle:hover {
  transform: scale(1.1);
}

/* 🛒 المنتجات */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-items: center;
  padding: 10px;
}

.product {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 25px;
  text-align: center;
  width: 90%;
  max-width: 350px;
  padding: 15px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}
.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.product img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.product h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #ffeb99;
  text-shadow: 0 0 10px #ffaa33;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 5px;
  color: #fff;
}
.price-table td {
  padding: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 17px;
}
.price-table tr:nth-child(even) {
  background: rgba(255,255,255,0.05);
}

/* 🎨 ألوان المنتجات */
.red { border: 2px solid #ff3b3b; }
.gold { border: 2px solid #ffd700; }
.blue { border: 2px solid #00bfff; }
.orange { border: 2px solid #ff6600; }
.purple { border: 2px solid #b266ff; }
.green { border: 2px solid #1DB954; }
.cyan { border: 2px solid #00ffff; }
.gray { border: 2px solid #aaa; }

.order-btn {
  background: linear-gradient(45deg, #ff0099, #ff6600);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 30px;
  font-size: 18px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}
.order-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #ff6600, #ff0099);
}

/* 🔚 التذييل */
footer {
  background: linear-gradient(45deg, #2b0033, #4b007a);
  text-align: center;
  padding: 25px 10px;
  color: white;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-top: 50px;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 10px;
}
.footer-icons img {
  width: 35px;
  height: 35px;
  transition: transform 0.3s;
}
.footer-icons img:hover {
  transform: scale(1.1);
}

footer p {
  font-size: 16px;
  color: #f5e6ff;
}