/* =========================
   HARD OVERRIDE ZID FOOTER
========================= */

/* كسر أي background */
html body footer#footer,
html body footer#footer.bg-secondary {
  background: #020617 !important;
  background-image: linear-gradient(135deg, #020617, #0f172a) !important;
}

/* كسر أي لون نص */
html body footer#footer,
html body footer#footer * {
  color: #e2e8f0 !important;
}

/* العناوين */
html body footer#footer h3 {
  color: #ffffff !important;
  font-weight: 600 !important;
}

/* اللينكات */
html body footer#footer a {
  color: #94a3b8 !important;
}

html body footer#footer a:hover {
  color: #38bdf8 !important;
}

/* الصور */
html body footer#footer img {
  opacity: 0.7 !important;
}

html body footer#footer img:hover {
  opacity: 1 !important;
}

/* إزالة أي خلفية جاية من div داخلي */
html body footer#footer div {
  background: transparent !important;
}

/* ===============================
   HEADER MODERN HOVER EFFECTS
================================ */

/* اللينكات في الهيدر */
header a {
  position: relative;
  color: var(--foreground);
  transition: all 0.3s ease;
}

/* خط أنيميشن تحت اللينك */
header a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #0ea5e9, #6366f1);
  transition: width 0.3s ease;
}

/* hover */
header a:hover {
  color: #6366f1;
}

header a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

/* اللوجو */
header img {
  transition: all 0.3s ease;
}

header img:hover {
  transform: scale(1.05);
}

/* الأيقونات (cart - user) */
header svg {
  transition: all 0.3s ease;
}

header svg:hover {
  transform: scale(1.15);
  color: #6366f1;
}

/* زرار (لو فيه) */
header button {
  transition: all 0.3s ease;
}

header button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99,102,241,0.2);
}

/* تأثير شادو للهيدر */
header {
  transition: all 0.3s ease;
}

header:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}