/* Add custom CSS styles below */ 
/* اهتزاز وتكبير واضح للشعار */
img[alt*="E-STORE1"] {
  animation: wobbleZoom 1.2s infinite ease-in-out;
  display: block;
  margin: 0 auto;
}

/* نص التحميل تحت الشعار */
#loading-text {
  text-align: center;
  font-family: 'Cairo', sans-serif;
  color: #444;
  font-size: 16px;
  margin-top: 8px;
  user-select: none;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

/* حركة الاهتزاز + التكبير الأكبر */
@keyframes wobbleZoom {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.25) rotate(3deg);
  }
  50% {
    transform: scale(1.35) rotate(-3deg);
  }
  75% {
    transform: scale(1.25) rotate(2deg);
  }
}

/* ظهور النص تدريجي */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}