/* Keep the social row vertically centered so a larger icon doesn't shift others */
.socials {
  align-items: center !important;
}

/* Facebook icon intentionally larger than the other social icons.
   Others render at 18px (inline SVG attrs); CSS width/height beats those. */
.socials a[data-platform="facebook"] svg {
  width: 24px !important;
  height: 24px !important;
}

/* Footer bottom bar — shared across all Jinja frontend pages */
.foot-bottom {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 12px 20px !important;
}

.foot-bottom p {
  margin: 0;
  flex: 1 1 auto;
  min-width: min(100%, 220px);
}

.pay {
  display: flex !important;
  align-items: flex-end !important;
  gap: 14px !important;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.pay img,
.pay-logo {
  height: 28px !important;
  width: auto !important;
  max-width: none;
  object-fit: contain !important;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  display: block !important;
  vertical-align: bottom;
  pointer-events: none;
  user-select: none;
}

.pay img:hover,
.pay-logo:hover {
  background: transparent;
  box-shadow: none;
}

/* Payment method wrappers: kill the gray "chip"/hover overlay.
   Page CSS (homepage.css + per-page files) style `.pay span` as a gray chip
   and footer anchors pick up hover backgrounds. Whether each method is a bare
   <img>, wrapped in <a>/<span>, or paired with a translated name, no gray box
   should appear idle, on hover or on focus. footer.css loads after those files;
   !important also beats the chip rule declared inside their media queries. */
.pay a,
.pay span,
.pay button,
.pay figure,
.pay .pay-item {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  text-decoration: none;
}

.pay:hover,
.pay a:hover,
.pay a:focus,
.pay a:focus-visible,
.pay span:hover,
.pay button:hover,
.pay figure:hover,
.pay .pay-item:hover {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}
