/* FOOTER */
.bm-footer{
  background: #0F1733;
  color: rgba(255,255,255,.85);
}

.bm-footer__wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Main footer */
.bm-footer__main{
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.bm-footer__grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.bm-footer__col--logo .custom-logo{
  max-height: 100px;
  width: auto;
}

.bm-footer__logo-text{
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
}

.bm-footer__title{
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
}

.bm-footer__menu{
  list-style: none;
  margin: 0;
  padding: 0;
}

.bm-footer__menu li{
  margin-bottom: 12px;
}

.bm-footer__menu a{
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s ease;
}

.bm-footer__menu a:hover{
  color: #6F7FEA;
}

.bm-footer__col--contact{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bm-footer__address{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  line-height: 1.6;
}

.bm-footer__address svg{
  flex-shrink: 0;
  margin-top: 2px;
}

.bm-footer__social{
  display: flex;
  gap: 12px;
}

.bm-footer__social-link{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all .2s ease;
}

.bm-footer__social-link:hover{
  background: #6F7FEA;
  color: #fff;
}

/* Features */
.bm-footer__features{
  padding: 30px 0;
}

.bm-footer__features-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.bm-footer__feature{
  display: flex;
  align-items: center;
  gap: 12px;
}

.bm-footer__feature svg{
  flex-shrink: 0;
  color: #6F7FEA;
}

.bm-footer__feature-title{
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.bm-footer__feature-text{
  font-size: 12px;
  color: rgba(255,255,255,.6);
}

.bm-footer__feature-payments,
.bm-footer__feature-shipping{
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.bm-footer__feature-payments img,
.bm-footer__feature-shipping img{
  height: 28px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.bm-footer__feature-payments img[alt="American Express"]{
  height: auto;
  width: 42px;
}

.bm-footer__feature-payments svg{
  height: 24px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Bottom */
.bm-footer__bottom{
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.bm-footer__copyright{
  font-size: 12px;
  color: rgba(255,255,255,.6);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  width: fit-content;
  padding-left: 20px;
  padding-right: 20px;
}

.bm-footer__vat{
  color: rgba(255,255,255,.45);
  font-size: 11px;
}

.bm-footer__vat::before{
  content: "·";
  margin-right: 8px;
  color: rgba(255,255,255,.3);
}

/* RESPONSIVE */
@media (max-width: 1024px){
  .bm-footer__grid{
    grid-template-columns: repeat(3, 1fr);
  }
  
  .bm-footer__col--logo{
    grid-column: 1 / -1;
  }
  
  .bm-footer__features-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px){
  .bm-footer__main{
    padding: 40px 0 30px;
  }
  
  .bm-footer__grid{
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: center;
  }
  
  .bm-footer__col--logo{
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .bm-footer__col--logo a{
    display: inline-block;
  }
  
  .bm-footer__title{
    text-align: center;
  }
  
  .bm-footer__menu{
    text-align: center;
  }
  
  .bm-footer__col--contact{
    grid-column: 1 / -1;
    align-items: center;
  }
  
  .bm-footer__social{
    justify-content: center;
  }
  
  .bm-footer__features{
    padding: 20px 0;
  }
  
  .bm-footer__features-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .bm-footer__feature{
    justify-content: center;
  }
  
  .bm-footer__feature-payments,
  .bm-footer__feature-shipping{
    justify-content: center;
  }
}
