body {
  margin:0;
  font-family: Arial, sans-serif;
  background:#0d0d0d;
  color:white;

  padding-bottom:70px; /* علشان الأزرار الثابتة */
}

/* الهيدر */
header {
  text-align:center;
  padding:10px 10px; /* قللنا المسافة */
}

/* عنوان */
h1 {
  color:#ff9800;
  margin:2px 0;
  font-size:22px;
  font-weight:bold;
}

/* جملة انت في أمان */
header p {
  font-size:28px;
  font-weight:900;
  color:#ff9800;
  margin:4px 0 2px 0; /* 👈 أهم تعديل */
  letter-spacing:1px;
  text-shadow: 0 0 8px rgba(255,152,0,0.6);
}

.delivery-text {
  margin-top:2px;
  font-size:18px;
  color:#00e676; /* أخضر مميز */
  font-weight:bold;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  animation:blinkDelivery 1.5s infinite;
}

/* أيقونة الفيسبا */
.delivery-icon {
  font-size:20px;
}

/* حركة ظهور واختفاء */
@keyframes blinkDelivery {
  0% { opacity:1; }
  50% { opacity:0.3; }
  100% { opacity:1; }
}

/* التابات */
.tabs {
  display:flex;
  gap:10px;
  padding:10px;
  background:#111;
  position:sticky;
  top:0;
  z-index:1000;
}

/* الأزرار */
.tabs button {
  flex:1;
  padding:12px;
  border:none;
  border-radius:12px;
  background:linear-gradient(135deg, #2196f3, #0d47a1);
  color:white;
  font-size:15px;
  font-weight:bold;
  cursor:pointer;
  box-shadow:0 4px 10px rgba(0,0,0,0.4);
  transition:0.3s;
}

/* hover */
.tabs button:hover {
  transform:translateY(-2px);
  box-shadow:0 6px 14px rgba(0,0,0,0.5);
}

/* المختار */
.tabs button.active {
  background:#ff9800;
  color:#000;
  box-shadow:0 0 12px rgba(255,152,0,0.8);
  transform:scale(1.05);
}

/* الجريد */
#content {
  padding:12px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}

/* الكارت */
.card {
  background:#1a1a1a;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(0,0,0,0.6);
}

/* الصورة */
.card img {
  width:100%;
  height:140px;
  object-fit:cover;
  background:#000;
}

/* المحتوى */
.card-content {
  padding:12px;
  text-align:center;
  background:#3a3a3a;
  border-top:1px solid #555;
}

/* الاسم */
.name {
  font-size:18px;
  font-weight:700;
  color:#ffffff;
  margin-bottom:6px;
}

/* السعر كله */
.price {
  direction: rtl;
  unicode-bidi: isolate;

  font-size:16px;
  font-weight:600;
  color:#cccccc; /* رصاصي هادي */
}

/* الرقم */
.price .num {
  direction:ltr;
  display:inline-block;

  font-size:24px;   /* أكبر */
  font-weight:900;
  color:#ff9800;    /* أورنج الأساسي */

  /* لمعة خفيفة جدًا */
  text-shadow:0 0 3px rgba(255,152,0,0.3);

  /* حركة هادية */
  animation:pricePulse 2.5s ease-in-out infinite;
}

/* حركة بسيطة جدًا */
@keyframes pricePulse {
  0%   { transform:scale(1); opacity:1; }
  50%  { transform:scale(1.03); opacity:0.85; }
  100% { transform:scale(1); opacity:1; }
}
/* الفوتر */
.footer {
  background:#111;
  padding:15px;
  text-align:center;
  margin-top:20px;
  font-size:14px;
}

/* ================== */
/* البانر */
/* ================== */

.banner {
  position:relative;
  width:100%;
  height:160px;
  overflow:hidden;
}

.banner img {
  width:100%;
  height:100%;
  object-fit:cover;
}

/* اللوجو */
.logo-right {
  position:absolute;
  top:25%; /* رفعناه شوية */
  right:5px;
  transform:translateY(-50%);
  z-index:2;
}

.logo-right img {
  width:90px;
  height:90px;
  border-radius:50%;
  border:3px solid #ff9800;
  background:#000;
}

/* الشريط */
.ticker {
  display:flex;
  align-items:center;
  width:100%;
  background:#111;
  border-top:2px solid #ff9800;
  border-bottom:2px solid #ff9800;
  overflow:hidden;
  margin-top:8px;
}

.ticker-label {
  background:red;
  color:#fff;
  font-weight:bold;
  padding:8px 12px;
  font-size:18px;
}

.ticker-move {
  width:100%;
  overflow:hidden;
}

.ticker-move {
  overflow:hidden;
  width:100%;
}

.ticker-track {
  display:flex;
  width:max-content;
  animation:scrollNews 25s linear infinite;
}

.ticker-track span {
  white-space:nowrap;
  font-size:20px;
  font-weight:900;
  color:#ff9800;
  padding-left:30px;
}

@keyframes scrollNews {
  0% {
    transform:translateX(-50%);
  }
  100% {
    transform:translateX(0%);
  }
}

/* زرار اطلب */
.order-item-btn {
  display:block;
  margin-top:10px;
  background:#25D366;
  color:#fff;
  text-decoration:none;
  padding:8px;
  border-radius:8px;
  font-size:14px;
  font-weight:bold;
}

.order-item-btn:hover {
  background:#1ebe5d;
}

/* الأزرار الثابتة */
.fixed-buttons {
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  display:flex;
  gap:10px;
  padding:10px;
  background:#0d0d0d;
  z-index:999;
}

.call-btn {
  flex:1;
  text-align:center;
  background:#ff9800;
  color:#000;
  padding:10px;
  border-radius:10px;
  text-decoration:none;
  font-weight:bold;
}

.whatsapp-btn {
  flex:1;
  text-align:center;
  background:#25D366;
  color:#fff;
  padding:10px;
  border-radius:10px;
  text-decoration:none;
  font-weight:bold;
}

.call-btn span {
  color:red;
}

/* بوكس الصورة */
.img-box {
  position:relative;
  width:100%;
  height:140px;
  overflow:hidden;
  border-top-left-radius:16px;
  border-top-right-radius:16px;
}

/* الصورة */
.img-box img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;

  opacity:0;
  transition:opacity 0.4s ease;
}

/* لما الصورة تتحمل */
.img-box img.loaded {
  opacity:1;
}

/* اللودر */
.img-loader {
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(
    90deg,
    #1a1a1a 25%,
    #2a2a2a 50%,
    #1a1a1a 75%
  );
  background-size:200% 100%;
  animation:loading 1.2s infinite;
}

@keyframes moveNews {
  0% {
    transform:translateX(100%);
  }
  100% {
    transform:translateX(-100%);
  }
}

.date-box {
  margin-top:5px;
  font-size:14px;
  color:#aaa;
  text-align:center;
}
