/* Add custom CSS styles below */ 
.Store.Categories {
  margin-top: 10px;
}
header.scrolled *,
header.scrolled svg {
  color: #222 !important;
  fill: #222 !important;
  stroke: #222 !important;
}

/* ===== FOOTER ===== */
footer {
  background-color: #f5f5f5;
  padding: 50px 40px 20px;
  direction: rtl;
}

/* Layout رئيسي للديسكتوب */
footer .footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

/* قسم اللوجو والوصف */
footer .footer__about {
  flex: 2;
  text-align: center;
}

footer .footer__logo img {
  max-width: 150px;
  margin-bottom: 15px;
}

footer .footer__about p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 20px;
}

/* السجل التجاري والضريبي */
footer .footer__reg {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 15px;
}

/* روابط مهمة */
footer .footer__links {
  flex: 1;
  text-align: right;
}

footer .footer__links h3 {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
  border-bottom: 2px solid #c9a96e;
  padding-bottom: 8px;
  display: inline-block;
}

footer .footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer__links ul li {
  margin-bottom: 12px;
}

footer .footer__links ul li a {
  color: #444;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

footer .footer__links ul li a:hover {
  color: #2d6a4f;
}

/* أيقونات التواصل */
footer .footer__contact {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 25px auto;
}

footer .footer__contact a {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}

footer .footer__contact a:hover {
  background-color: #2d6a4f;
  color: #fff;
  border-color: #2d6a4f;
}

/* أيقونات السوشيال */
footer .footer__social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 15px 0 25px;
}

footer .footer__social a {
  color: #444;
  font-size: 20px;
  transition: color 0.3s;
}

footer .footer__social a:hover {
  color: #2d6a4f;
}

/* شعارات الدفع */
footer .footer__payments {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid #ddd;
}

footer .footer__payments img {
  height: 28px;
  object-fit: contain;
}

/* حقوق الملكية */
footer .footer__copy {
  text-align: center;
  font-size: 13px;
  color: #888;
  padding-top: 15px;
  border-top: 1px solid #ddd;
  margin-top: 10px;
}

/* ===== جوال ===== */
@media (max-width: 768px) {
  footer {
    padding: 30px 20px 15px;
  }

  footer .footer__top {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  footer .footer__links {
    text-align: center;
    width: 100%;
  }

  footer .footer__links h3 {
    display: block;
    text-align: center;
  }

  footer .footer__reg {
    gap: 15px;
  }

  footer .footer__contact {
    gap: 10px;
  }

  footer .footer__contact a {
    font-size: 13px;
    padding: 7px 12px;
  }
}