/* ==================================================
   FOOTER MOBILE
================================================== */

@media (max-width:992px) {
  
  .footer {
    margin-top: 80px;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    padding: 60px 30px;
  }
  
}

@media (max-width:768px) {
  
  .footer-top {
    grid-template-columns: 1fr;
    padding: 50px 22px;
    gap: 32px;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-brand h2 {
    font-size: 2rem;
  }
  
  .footer-brand p {
    max-width: 100%;
    margin: 0 auto 24px;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-column {
    align-items: center;
    text-align: center;
  }
  
  .footer-payment-icons {
    justify-content: center;
  }
  
  .footer-security-icons {
    align-items: center;
  }
  
  .footer-middle {
    margin-top: 30px;
    padding: 25px 18px;
  }
  
  .footer-middle p,
  .footer-bottom p {
    font-size: 14px;
    line-height: 1.6;
  }
  
}

@media (max-width:480px) {
  
  .footer-brand h2 {
    font-size: 1.8rem;
  }
  
  .footer-social a {
    width: 42px;
    height: 42px;
  }
  
  .footer-payment-icons img {
    width: 58px;
    height: 36px;
  }
  
  .footer-security-icons img {
    width: 120px;
  }
  
}