/** Shopify CDN: Minification failed

Line 7:0 Unexpected "`"
Line 319:0 Unexpected "`"

**/
```css
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Open+Sans:wght@400;500&display=swap');

/* =========================================
   MENIGMA FOOTER — FINAL CLEAN VERSION
========================================= */

#site-footer,
#site-footer * {
  box-sizing: border-box;
}

#site-footer {
  background: #071a33;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  width: 100%;
  overflow: hidden;
}

#site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#site-footer a {
  text-decoration: none;
}

/* =========================
   CONTAINER
========================= */

#site-footer .footer__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

/* =========================
   MAIN FOOTER
========================= */

#site-footer .footer__main {
  padding: 38px 0 30px;
}

#site-footer .footer__main .footer__container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr 1.4fr;
  gap: 26px;
  align-items: start;
}

/* =========================
   BRAND
========================= */

#site-footer .footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#site-footer .footer__logo-link {
  display: inline-block;
}

#site-footer .footer__logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  line-height: 1;
}

#site-footer .footer__logo-text sup {
  font-size: 12px;
  top: -0.5em;
  position: relative;
}

#site-footer .footer__logo-underline {
  width: 26px;
  height: 3px;
  background: #cf102d;
  margin-top: 10px;
  margin-bottom: 14px;
}

#site-footer .footer__tagline {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 240px;
  margin-bottom: 20px;
}

/* =========================
   SOCIALS
========================= */

#site-footer .footer__socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

#site-footer .footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

#site-footer .footer__social-link:hover {
  opacity: 1;
}

#site-footer .footer__social-link svg {
  width: 18px;
  height: 18px;
}

/* =========================
   COLUMNS
========================= */

#site-footer .footer__col {
  display: flex;
  flex-direction: column;
}

#site-footer .footer__col-title {
  position: relative !important;
  display: inline-block !important;
  font-family: 'Oswald', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  margin: 0 0 14px !important;
  padding-bottom: 10px !important;
  line-height: 1 !important;
}

#site-footer .footer__col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 92px;
  height: 2px;
  background: #cf102d;
}
#site-footer .footer__links {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

#site-footer .footer__col {
  padding-top: 16px !important;
}
#site-footer .footer__brand {
  padding-top: 0px !important;
}

#site-footer .footer__link {
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s ease;
}

#site-footer .footer__link:hover {
  color: #ffffff;
}

/* =========================
   NEWSLETTER
========================= */

#site-footer .footer__newsletter-desc {
  margin-top: -2px !important;
  margin-bottom: 12px !important;
}
#site-footer .footer__tagline {
  margin-top: -2px !important;
}

#site-footer .footer__newsletter-row {
  display: flex;
  width: 100%;
  max-width: 420px;
}

#site-footer .footer__newsletter-input {
  flex: 1;
  height: 44px;
  border: none;
  background: #ffffff;
  padding: 0 16px;
  font-size: 13px;
  color: #111111;
  outline: none;
}

#site-footer .footer__newsletter-btn {
  height: 44px;
  padding: 0 28px;
  border: none;
  background: #cf102d;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
#site-footer .footer__col--newsletter {
  padding-top: 18px !important;
}   

/* =========================
   BOTTOM BAR
========================= */

#site-footer .footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
  background: rgba(0,0,0,0.12);
}

#site-footer .footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#site-footer .footer__copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

#site-footer .footer__payments {
  display: flex;
  align-items: center;
  gap: 8px;
}

#site-footer .footer__pay-icon {
  width: 42px;
  height: 26px;
  display: block;
}

/* =========================
   TABLET
========================= */

@media (max-width: 980px) {

  #site-footer .footer__main .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  #site-footer .footer__brand,
  #site-footer .footer__col--newsletter {
    grid-column: 1 / -1;
  }
}

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

@media (max-width: 640px) {

  #site-footer .footer__container {
    padding: 0 20px;
  }

  #site-footer .footer__main .footer__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #site-footer .footer__newsletter-row {
    flex-direction: column;
    gap: 10px;
  }

  #site-footer .footer__newsletter-btn {
    width: 100%;
  }

  #site-footer .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
}
```
#site-footer .footer__logo-underline {
  margin-bottom: 12px !important;
}

/* FINAL LEFT COLUMN ALIGNMENT */

#site-footer .footer__main .footer__container {
  grid-template-columns: 1.45fr 0.8fr 0.8fr 1fr 1.45fr !important;
  column-gap: 52px !important;
}

#site-footer .footer__brand {
  padding-top: 14px !important;
}

#site-footer .footer__logo-text {
  line-height: 1.08 !important;
}

#site-footer .footer__logo-underline {
  margin-top: 12px !important;
  margin-bottom: 16px !important;
}

#site-footer .footer__tagline {
  max-width: 300px !important;
  line-height: 1.65 !important;
}
/* FINAL TEXT COLOR FIX */

#site-footer .footer__link,
#site-footer .footer__tagline,
#site-footer .footer__newsletter-desc {
  color: #ffffff !important;
  opacity: 0.92 !important;
}

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

@media screen and (max-width: 768px) {

  #site-footer .footer__main .footer__container {
    display: flex !important;
    flex-direction: column !important;
    gap: 38px !important;
  }

  #site-footer .footer__brand,
  #site-footer .footer__col,
  #site-footer .footer__col--newsletter {
    width: 100% !important;
    max-width: 100% !important;
  }

  #site-footer .footer__brand {
    margin-bottom: 8px !important;
  }

  #site-footer .footer__col-title {
    font-size: 15px !important;
    letter-spacing: 0.16em !important;
    margin-bottom: 18px !important;
    display: inline-block !important;
  }

  #site-footer .footer__links {
    gap: 14px !important;
  }

  #site-footer .footer__link {
    font-size: 17px !important;
    line-height: 1.5 !important;
  }

  #site-footer .footer__tagline {
    max-width: 100% !important;
    line-height: 1.7 !important;
    margin-top: 18px !important;
  }

  #site-footer .footer__newsletter-row {
    flex-direction: row !important;
  }

  #site-footer .footer__newsletter-input {
    min-width: 0 !important;
  }

  #site-footer .footer__bottom-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  #site-footer .footer__payments {
    flex-wrap: wrap !important;
  }
}/* =========================================
   FOOTER LOGO FIX
========================================= */

#site-footer .footer__logo-img {
  width: 140px !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

/* Optional: bigger logo on desktop */
@media screen and (min-width: 769px) {
  #site-footer .footer__logo-img {
    width: 100px !important;
  }
}