/** Shopify CDN: Minification failed

Line 21:13 Expected identifier but found whitespace
Line 21:15 Unexpected "{"
Line 21:24 Expected ":"
Line 22:8 Expected identifier but found whitespace
Line 22:10 Unexpected "{"
Line 22:19 Expected ":"
Line 23:14 Expected identifier but found whitespace
Line 23:16 Unexpected "{"
Line 23:25 Expected ":"
Line 23:65 Expected ":"
... and 4 more hidden warnings

**/
/* ============================================
   MB FOOTER
   ============================================ */

.mb-footer {
  background: {{ section.settings.background_color | default: '#141820' }};
  color: {{ section.settings.text_color | default: '#ffffff' }};
  padding-top: {{ section.settings.padding_top | default: 60 }}px;
  padding-bottom: {{ section.settings.padding_bottom | default: 40 }}px;
}

.mb-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- LOGO --- */
.mb-footer__top {
  margin-bottom: 48px;
}

.mb-footer__logo-link {
  display: inline-block;
}

.mb-footer__logo {
  display: block;
  height: auto;
}

.mb-footer__logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.02em;
}

/* --- MENÚS --- */
.mb-footer__menus {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.mb-footer__col-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: 0.01em;
}

.mb-footer__col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mb-footer__col-link {
  font-size: 13px;
  color: #a0a8b8;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.4;
}

.mb-footer__col-link:hover {
  color: #ffffff;
}

/* --- REDES SOCIALES --- */
.mb-footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.mb-footer__social-link {
  color: #a0a8b8;
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.mb-footer__social-link:hover {
  color: #ffffff;
}

/* --- DIVISOR --- */
.mb-footer__divider {
  width: 100%;
  height: 1px;
  background: #2a2f3a;
  margin-bottom: 28px;
}

/* --- BOTTOM --- */
.mb-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.mb-footer__bottom-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.mb-footer__policy-link {
  font-size: 12px;
  color: #a0a8b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mb-footer__policy-link:hover {
  color: #ffffff;
}

.mb-footer__copyright {
  font-size: 12px;
  color: #a0a8b8;
  margin: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .mb-footer__menus {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .mb-footer__inner {
    padding: 0 20px;
  }

  .mb-footer__menus {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .mb-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .mb-footer__menus {
    grid-template-columns: 1fr;
  }

  .mb-footer__bottom-links {
    gap: 16px;
  }
}