/* Add custom CSS styles below */ 
.product-card--fit-height .product-card__image {
    height: 200PX;
    max-height: 200PX;
}






#customToast {
  visibility: hidden;
  min-width: 280px;
  background-color: #81cd25;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 14px 20px;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-family: 'Tajawal', sans-serif;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.6s, bottom 0.6s;
}
#customToast.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}









/* الشريط السفلي الخاص بـ Eagle Vision */
#evFooterBar {
  width: 100%;
  background: #fff; /* لون واتساب */
  text-align: center;
  padding: 14px 10px;
  font-family: 'Tajawal', sans-serif;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  margin-top: 0px;
}

#evFooterBar a {
  color: #013d16;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

#evFooterBar a:hover {
  opacity: 0.8;
}

/* تحسين المظهر على الجوال */
@media (max-width: 480px) {
  #evFooterBar {
    font-size: 14px;
    padding: 12px 8px;
  }
}