/**
 * Payment method icon styles -- the small white logo cards used both in
 * the footer (after #nav_menu-2) and inside the trust-widget payment modal.
 *
 * Loaded by payment-icons.php via wp_enqueue_style() at high priority so
 * it prints after the theme's own stylesheet in <head>.
 */

.gt-payment-icons {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.gt-payment-icons .gt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 28px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  background: #fff;
  transition: transform 0.15s ease;
}

.gt-payment-icons .gt-icon:hover {
  transform: translateY(-1px);
}

.gt-payment-icons .gt-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 767px) {
  .gt-payment-icons {
    justify-content: center;
    width: 100%;
  }
}
