/** Shopify CDN: Minification failed

Line 26:22 Expected identifier but found whitespace
Line 26:24 Unexpected "{"
Line 26:33 Expected ":"
Line 26:64 Expected identifier but found "!"
Line 35:20 Expected identifier but found whitespace
Line 35:22 Unexpected "{"
Line 35:31 Expected ":"
Line 35:63 Expected identifier but found "!"

**/


/* CSS from section stylesheet tags */
/* 1. Fjern tekst-justering for menyer og lokaliserings­velger */
  .custom-footer__menus,
  .custom-footer__aside .localization-selectors {
    text-align: initial;
  }

  /* 2. Tving meny­justering på mobil */
  @media (max-width: 768px) {
    .custom-footer__menus {
      display: flex;
      justify-content: {{ section.settings.menu_mobile_align }} !important;
      text-align: initial !important;
    }
    
  }

  /* 3. Tving lokaliserings­justering alltid */
  .custom-footer__aside .localization-selectors {
    display: flex;
    justify-content: {{ section.settings.localization_align }} !important;
    text-align: initial !important;
  }
  

  /* — Grunnleggende styling — */
  .custom-footer { padding: 4rem 1rem; background: #fafafa; text-align: center; }
  .custom-footer__top { margin-bottom: 3rem; }
  .custom-footer__logo img { max-width: 150px; display: block; margin: 0 auto; }
  .custom-footer__heading { margin: 0; }

  .custom-footer__social { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; }

  .custom-footer__newsletter { margin-bottom: 3rem; }
  .newsletter__field { position: relative; display: inline-block; width: 100%; max-width: 400px; }
  .newsletter__field input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    font-size: 1rem;
    border: none; border-radius: 4px; background: #eee;
  }
  .newsletter__field button {
    position: absolute; top: 50%; right: 1rem;
    transform: translateY(-50%);
    background: none; border: none; font-size: 1.5rem; cursor: pointer;
  }

  .custom-footer__menus { display: flex; justify-content: center; gap: 2rem; margin-bottom: 3rem; }
  .menu { list-style: none; padding: 0; margin: 0; }
  .menu li { display: inline-block; margin: 0 0.5rem; }
  .menu a { text-decoration: none; color: inherit; }

  .custom-footer__aside { border-top: 1px solid #e1e1e1; padding-top: 2rem; }
  .localization-selectors { display: flex; gap: 1rem; margin-bottom: 1rem; }
  .payment-icons { display: flex; justify-content: center; gap: 1rem; margin-top: 1rem; }

  @media (max-width: 768px) {
    .custom-footer__menus { flex-direction: column; gap: 1rem; }
    .menu li { display: block; margin: 0.5rem 0; }
    .newsletter__field { max-width: 100%; }
    .custom-footer__logo img { max-width: 100px; }
  }
  @media (min-width: 1200px) {
    .newsletter__field { max-width: 500px; }
  }

  /* --- Mobilfix for country/locale dropdown i footer --- */
.custom-footer { position: relative; isolation: isolate; }
.custom-footer * { -webkit-tap-highlight-color: rgba(0,0,0,0); }

/* Sørg for at popover/lista havner øverst og tar imot trykk */
.custom-footer .disclosure,
.custom-footer .localization-selector,
.custom-footer .popover,
.custom-footer .disclosure__list-wrapper,
.custom-footer [data-disclosure],
.custom-footer [role="listbox"],
.custom-footer [role="option"] {
  position: relative;
  z-index: 99999 !important;
  pointer-events: auto !important;
}

/* I tilfelle noe annet i footer er lagt over – legg det under lista */
.custom-footer__top,
.custom-footer__newsletter,
.custom-footer__menus,
.custom-footer__aside {
  position: relative;
  z-index: 1;
}

/* Popover må kunne stikke utenfor og fortsatt være klikkbar */
.custom-footer,
.custom-footer__aside {
  overflow: visible !important;
}

/* Noen valuta-apper bruker egne wrappers – løft dem også */
.doubly-wrapper,
.doubly-popup,
.wcp-currency-wrapper,
.wcp-country-dropdown,
.wcp-currency-dropdown {
  position: relative;
  z-index: 100000 !important;
  pointer-events: auto !important;
}