@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

:root {
  --main-color: #711921;
  --hover-color: #a43c4f;
}

/* الفوتر */
.store-footer {
  background: #fff !important;
  padding: 40px 20px 60px;
  font-size: 14px;
  color: var(--main-color);
  text-align: center;
  position: relative;
  font-family: 'Cairo', sans-serif;
}

/* صورة الشعار فوق الفوتر */
.store-footer::before {
  content: "";
  display: block;
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  background: url('https://h.top4top.io/p_3494ewxzp0.png') center/contain no-repeat;
}

/* تنسيق موحد لعناصر الفوتر */
.store-footer .footer-contact,
.store-footer .footer-icons,
.store-footer .footer-social,
.store-footer .footer-block {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center !important;
}

/* الألوان والتأثيرات */
.store-footer a,
.store-footer p,
.store-footer h3,
.store-footer i {
  color: var(--main-color) !important;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.store-footer a:hover,
.store-footer i:hover {
  transform: scale(1.15);
  color: var(--hover-color);
}