/* Add custom CSS styles below */ 
footer.store-footer {
  position: relative;
  background: var(--footer-bg-gradient, linear-gradient(135deg, #156dd3, #77aded));
  color: #fff;
  padding: 5rem 2rem 3rem 2rem;
  overflow: hidden;
  
  /* زوايا علوية مستديرة للأسفل */
  border-top-left-radius: 80px 100px;   /* منحنى عرضي وارتفاعي */
  border-top-right-radius: 80px 100px;
  
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* إزالة الانحناء السابق إذا كنت تستخدم ::before منحنى */
footer.store-footer::before {
  display: none;
}


:root {
  --color-primary: #156dd3;
  --color-primary-dark: #77aded;
  --color-primary-light: #5a952a;
}

/* تأثير تدرج متحرك للنص */
@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

/* تأثير العناوين */
h2, .footer-links a, .button, .btn {
  text-transform: uppercase;
  background-image: linear-gradient(-225deg, var(--color-primary) 0%, var(--color-primary) 29%, var(--color-primary-dark) 67%, var(--color-primary-dark) 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 4s linear infinite;
  font-weight: 600;
  cursor: pointer;
}

/* تأثير أزرار */
button, .button, .btn {
  background-image: linear-gradient(-225deg, var(--color-primary) 0%, var(--color-primary) 29%, var(--color-primary-dark) 67%, var(--color-primary-dark) 100%);
  color: #fff !important;
  border: none;
  border-radius: 25px !important;
  padding: 10px 20px !important;
  transition: background-position 0.4s ease;
}
button:hover, .button:hover, .btn:hover {
  background-position: 200% center;
}

/* الفوتر: الخلفية + الزوايا العلوية المنحنية للأسفل */
footer.store-footer {
  background: linear-gradient(134deg, transparent -183%, #156dd3 83%, #fff 200%);
  padding: 3rem 2rem 2rem 2rem;
  border-top-left-radius: 80px 100px;  /* زاوية علوية منحنية للأسفل */
  border-top-right-radius: 80px 100px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* روابط الفوتر */
footer.store-footer .footer-links a {
  display: block;
  margin-bottom: 0.6rem;
  background: rgba(255 255 255 / 0.15);
  padding: 8px 15px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}
footer.store-footer .footer-links a:hover {
  background: var(--color-primary-dark);
}

/* أيقونات التواصل في الفوتر */
footer.store-footer .contact-icons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
footer.store-footer .contact-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255 255 255 / 0.2);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  transition: background 0.3s ease;
}
footer.store-footer .contact-icons a:hover {
  background: var(--color-primary);
}
footer.store-footer .contact-icons a svg {
  fill: #fff;
  width: 24px;
  height: 24px;
}

/* تحسين استجابة الموبايل */
@media (max-width: 667px) {
  footer.store-footer {
    padding: 2rem 1rem 1rem 1rem;
    border-top-left-radius: 50px 70px;
    border-top-right-radius: 50px 70px;
  }
  footer.store-footer .footer-links a {
    margin-bottom: 0.5rem;
    text-align: center;
  }
  footer.store-footer .contact-icons {
    gap: 1rem;
  }
}




#mobile-menu *,
#mobile-menu svg,
#mobile-menu i {
    color: #fff !important;
    fill: #fff !important;
}