/* ======================================================================
   ✅ Moon-Host — Footer Styles (mh-footer.css)
   ====================================================================== */

/* Footer Logo Centered */
.logo-container{
  text-align:center;
  margin:20px 0;
}
.footer-logo{
  width:160px;
  height:auto;
  display:inline-block;
}

/* Payment Methods Section */
.payment-methods{
  text-align:center;
  margin:20px 0;
}
.payment-methods h3{
  color:#fff;
  font-size:18px;
  margin-bottom:20px;
  text-transform:uppercase;
  letter-spacing:2px;
}
footer.footery .payment-icons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
  margin-top:40px;
}
/* ✅ Store/cart felülírás ellen */
footer.footery .payment-icons img{
  width:60px !important;
  height:60px !important;
  max-width:60px !important;
  max-height:60px !important;
  object-fit:contain !important;
  display:block;
  transition:transform .3s ease;
}

.payment-icons img:hover{
  transform:scale(1.1);
}

/* Footer Bottom Section */
.footery .footer-bottom{
  text-align:center;
  margin:0;
  padding:10px 0;
  border-top:1px solid #333;
  font-size:13px;
  color:#999;
}
.footery .footer-bottom a{
  color:#f05454;
  text-decoration:none;
  margin:0;
  padding:0 5px;
}
.footery .footer-bottom a:hover{
  text-decoration:underline;
}

/* Scroll to Top Button */
#myBtn{
  background-color:#f05454;
  border-radius:50%;
  box-shadow:0 4px 8px rgba(0,0,0,.2);
  transition:opacity .5s ease;
  width:55px;
  height:55px;
}
#myBtn:hover{
  transform:scale(1.1);
}

/* Mobile */
@media (max-width:768px){
  .footery .container{
    flex-direction:column;
    align-items:center;
  }
  .footery nav{
    text-align:center;
    margin-bottom:20px;
  }
  .logo-container{
    margin-bottom:20px;
  }
  .payment-icons{
    justify-content:center;
  }
}
