:root{
  --mibkhar-maroon:#4c191e;
  --mibkhar-cream:#cdbaa9;
}

/* ✅ Footer Background - catch most Salla themes */
html body :is(
  footer,
  .store-footer,
  .s-footer,
  .site-footer,
  .footer,
  #footer,
  [class*="footer"],
  [id*="footer"]
){
  background-color: var(--mibkhar-maroon) !important;
  color: var(--mibkhar-cream) !important;
}

/* ✅ Make everything inside footer readable */
html body :is(
  footer,
  .store-footer,
  .s-footer,
  .site-footer,
  .footer,
  #footer,
  [class*="footer"],
  [id*="footer"]
) *{
  color: var(--mibkhar-cream) !important;
}

/* ✅ Links */
html body :is(
  footer,
  .store-footer,
  .s-footer,
  .site-footer,
  .footer,
  #footer,
  [class*="footer"],
  [id*="footer"]
) a{
  color: var(--mibkhar-cream) !important;
  text-decoration: none !important;
}
html body :is(
  footer,
  .store-footer,
  .s-footer,
  .site-footer,
  .footer,
  #footer,
  [class*="footer"],
  [id*="footer"]
) a:hover{
  opacity: .85;
  text-decoration: underline !important;
}

/* ✅ Icons (SVG) */
html body :is(
  footer,
  .store-footer,
  .s-footer,
  .site-footer,
  .footer,
  #footer,
  [class*="footer"],
  [id*="footer"]
) svg,
html body :is(
  footer,
  .store-footer,
  .s-footer,
  .site-footer,
  .footer,
  #footer,
  [class*="footer"],
  [id*="footer"]
) svg *{
  fill: var(--mibkhar-cream) !important;
  stroke: var(--mibkhar-cream) !important;
}