/*
 * UNIMERCE Marketplace
 * Developer: Morris Robinson <morrisrobinson1688@aol.com>
 * Patch 191 — storefront footer icon rows with admin controls
 */
.footer-v10 .footer-company-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
}
.footer-v10 .footer-company-copy{
  flex:1 1 auto;
  min-width:0;
}
.footer-v10 .footer-socials-row{
  flex:0 0 auto;
  margin-left:auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  max-width:520px;
}
.footer-v10 .footer-socials-row a.footer-social-icon-link{
  width:38px;
  height:38px;
  min-width:38px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  padding:0;
  margin:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.07);
  color:#fffaf2;
  transition:background .18s ease,border-color .18s ease,transform .18s ease;
}
.footer-v10 .footer-socials-row a.footer-social-icon-link:hover,
.footer-v10 .footer-socials-row a.footer-social-icon-link:focus{
  background:rgba(212,164,76,.22);
  border-color:rgba(212,164,76,.55);
  transform:translateY(-1px);
}
.footer-v10 .footer-social-icon-img{
  width:20px;
  height:20px;
  display:block;
  object-fit:contain;
}
.footer-v10 .footer-payment-icon-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
}
.footer-v10 .payment-icon.footer-payment-icon-card,
.footer-v10 .payment-icon.image.footer-payment-icon-card{
  width:62px;
  height:38px;
  min-width:62px;
  min-height:38px;
  padding:4px 6px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:9px;
  background:#fff;
  box-shadow:0 6px 18px rgba(0,0,0,.18);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.footer-v10 .footer-payment-icon-img{
  width:100%;
  max-width:54px;
  height:26px;
  display:block;
  object-fit:contain;
}
.footer-v10 .footer-bottom-v10{
  gap:20px;
}
@media(max-width:991.98px){
  .footer-v10 .footer-company-row{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
  }
  .footer-v10 .footer-socials-row{
    justify-content:flex-start;
    margin-left:0;
    margin-top:0;
  }
  .footer-v10 .footer-payment-icon-row{
    justify-content:flex-start;
  }
}
@media(max-width:575.98px){
  .footer-v10 .payment-icon.footer-payment-icon-card,
  .footer-v10 .payment-icon.image.footer-payment-icon-card{
    width:58px;
    min-width:58px;
  }
}
