/* Add custom CSS styles below */ 
.footer-list {
  list-style: none;      /* إزالة النقاط */
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column; /* العناصر تحت بعض */
  gap: 8px;              /* مسافة موحّدة بين الصفوف */
}

.footer-list li {
  line-height: 1.8;      /* توحيد الارتفاع */
 /* Add custom CSS styles below */ 
/* تحريك شعار مميزات المتجر */
.store-features img {
  animation: pulseSoft 2.5s ease-in-out infinite;
}

@keyframes pulseSoft {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
  .store-header {
    background-color: #000000; /* لون الخلفية */
}

.store-header a,
.store-header span {
    color: #ffffff; /* لون النص */
}