/* Add custom CSS styles below */ 

.navbar-brand img {
    max-height: 5rem;
    max-width: 100px;
    width: auto;
}


@media only screen and (min-width: 1024px) {
    .main-menu li>a:hover {
        color: #414042;
        color: #1e69b5;
        text-decoration-line: none;
    }
}


.top-navbar .s-search-input {
    background-color: rgb(100 177 255);
    border-style: none;
}




/* الحاوية الأساسية للسحب */
#cloud-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

/* شكل السحابة */
.cloud {
  position: absolute;
  top: -40px;
  width: 40px;
  height: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  filter: blur(2px);
  animation: floatDown linear infinite;
}

/* شكل منفوش أكتر (دوائر متعددة) */
.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.cloud::before {
  top: -10px;
  left: -5px;
}

.cloud::after {
  top: -8px;
  right: -5px;
}

/* الحركة */
@keyframes floatDown {
  to {
    transform: translateY(100vh) translateX(20px);
    opacity: 0;
  }
}







/* الطيارة */
.real-plane {
  position: fixed;
  top: 18vh;               /* مكان الطيارة */
  left: -300px;            /* تبدأ من خارج الشاشة */
  width: 240px;            /* حجم الطيارة (تقدر تعدله) */
  height: auto;
  z-index: 999999;
  pointer-events: none;
  animation: flySky 14s linear forwards;
  filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.35)); /* ظل بسيط */
}

/* حركة الطيران */
@keyframes flySky {
  0% {
    transform: translateX(0) scale(1);
    opacity: 0.9;
  }
  100% {
    transform: translateX(120vw) scale(1.08); /* تكبير بسيط كأنها بتقرب */
    opacity: 1;
  }
}






/* عرض الصورة كاملة داخل البانر */
.banner-entry {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border-radius: 20px !important;
    overflow: hidden;
    height: 260px !important; /* عدلها حسب المقاس اللي تحبه */
    background-color: #fff !important;
    position: relative;
}

/* إلغاء التعتيم الافتراضي */
.banner-entry.has-overlay::before {
    display: none !important;
}

/* طبقة الضباب عند الوقوف */
.banner-entry::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0); /* بدون ضباب */
    transition: 0.3s ease;
    z-index: 1;
}

/* الهافر (ضباب خفيف شفاف) */
.banner-entry:hover::after {
    background: rgba(255, 255, 255, 0.25); /* ضباب خفيف */
    backdrop-filter: blur(2px); /* ضباب ناعم */
}

/* النص فوق الصورة */
.banner-entry__text {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 2;
    color: #000 !important;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 12px;
    border-radius: 10px;
}






/* شاشة التحميل */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 999999999;
  transition: opacity 0.6s ease;
}

/* اللوجو */
#preloader-logo {
  width: 140px;
  height: auto;
  margin-bottom: 40px;
  animation: fadeIn 1.2s ease forwards;
}

/* الطيارة فوق */
#preloader-plane {
  position: absolute;
  top: 8vh;
  left: -300px;
  width: 200px;
  animation: planeFly 2s ease-out forwards;
  pointer-events: none;
}

/* حركة الطائرة */
@keyframes planeFly {
  0%   { transform: translateX(-300px) scale(1); opacity: 1; }
  80%  { transform: translateX(100vw) scale(1.2); opacity: 1; }
  100% { transform: translateX(120vw) scale(0.7); opacity: 0; }
}

/* تأثير ظهور اللوجو */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}



.shop-by-cats {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin: 25px 0;
  color: #222;
}