/** Shopify CDN: Minification failed

Line 122:31 Unexpected "4"

**/
/* ==========================================================================
   nFitCore — Refinamento premium do header
   Brilho azul ao passar o rato (lupa, cliente, carrinho, idioma, país)
   + dropdown de idioma/país a abrir suavemente ao passar o rato (desktop)
   Não altera a paleta de cores existente — só adiciona um estado de "hover".
   ========================================================================== */

:root {
  --nf-glow-color: 51, 79, 180; /* mesmo azul já usado na marca (#334fb4) */
}

/* Ícones do header: lupa, conta, carrinho */
.header__icon {
  position: relative;
  border-radius: 50%;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.header__icon:hover,
.header__icon:focus-visible {
  box-shadow:
    0 0 0 3px rgba(var(--nf-glow-color), 0.16),
    0 8px 18px -6px rgba(var(--nf-glow-color), 0.55);
  transform: translateY(-1px);
}

.header__icon:hover .svg-wrapper svg,
.header__icon:hover account-icon svg {
  filter: drop-shadow(0 0 4px rgba(var(--nf-glow-color), 0.5));
}

/* Botão do país / idioma (o gatilho do dropdown) */
.header-localization .disclosure__button {
  border-radius: 8px;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.header-localization .disclosure__button:hover,
.header-localization .disclosure__button:focus-visible {
  box-shadow:
    0 0 0 3px rgba(var(--nf-glow-color), 0.16),
    0 8px 18px -6px rgba(var(--nf-glow-color), 0.55);
  transform: translateY(-1px);
}

/* Painel do dropdown: sombra azul suave + entrada animada */
.header-localization .disclosure__list-wrapper {
  box-shadow:
    0 16px 34px -14px rgba(var(--nf-glow-color), 0.4),
    0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

/* Mobile: esconde a lupa de pesquisa, deixa espaço para Promoções + carrinho + conta */
@media screen and (max-width: 749px) {
  .header__icon--search {
    display: none !important;
  }
}

/* Link "Promoções" — só aparece no mobile, ao lado dos ícones */
.nf-mobile-promo-link {
  display: none;
}

@media screen and (max-width: 749px) {
  .nf-mobile-promo-link {
    display: inline-flex;
    align-items: center;
    color: rgb(var(--nf-glow-color));
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    white-space: nowrap;
    margin-right: 4px;
  }
}

/* Em ecrãs com rato (desktop): o dropdown abre só ao clicar (comportamento
   nativo do Shopify). Removida a versão anterior que forçava abertura ao
   passar o cursor — estava a manter o painel em display:block mesmo
   "escondido", o que fazia sobrepor-se de forma semi-transparente a outros
   elementos (pesquisa, etc.) enquanto o rato passava por perto. */

/* ==========================================================================
   Header: mais compacto e com sombra suave ao fazer scroll
   ========================================================================== */
.scrolled-past-header .header {
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 2px 12px rgba(18, 18, 18, 0.06);
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}

.header {
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}

/* ==========================================================================
   Logótipo: respiração extremamente subtil (não altera a imagem em si)
   ========================================================================== */
.header__heading-logo {
  animation: nfLogoBreathe 7s ease-in-out infinite;
}

@keyframes nfLogoBreathe {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.95; }
}

@media (prefers-reduced-motion: reduce) {
  .header__heading-logo {
    animation: none;
  }
}
   Substitui a antiga barra de 4 cartões — agora são só ícones com tooltip
   ========================================================================== */
.nf-header-trust-icons {
  display: none;
}

@media screen and (min-width: 990px) {
  .nf-header-trust-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 16px;
    padding-right: 16px;
    border-right: 1px solid rgba(18, 18, 18, .12);
  }
}

.nf-header-trust-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: default;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.nf-header-trust-icon .svg-wrapper svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
}

.nf-header-trust-icon:hover,
.nf-header-trust-icon:focus-visible {
  box-shadow:
    0 0 0 3px rgba(var(--nf-glow-color), 0.16),
    0 8px 18px -6px rgba(var(--nf-glow-color), 0.55);
  transform: translateY(-1px);
  outline: none;
}

.nf-header-trust-icon::before,
.nf-header-trust-icon::after {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nf-header-trust-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #121212;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2px;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 6px;
  z-index: 20;
}

.nf-header-trust-icon::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: #121212;
  z-index: 20;
}

.nf-header-trust-icon:hover::after,
.nf-header-trust-icon:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nf-header-trust-icon:hover::before,
.nf-header-trust-icon:focus-visible::before {
  opacity: 1;
}

/* --------------------------------------------------------------------
   Header sticky: fundo escuro semi-transparente (#222222 a 40%), com
   ícones brancos e sombra para garantir contraste sobre qualquer imagem
   ou conteúdo por trás.
   -------------------------------------------------------------------- */
.shopify-section-header-sticky .header-wrapper {
  background-color: rgba(34, 34, 34, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

/* O dropdown de país/idioma precisa de fundo sólido e opaco, sempre,
   independentemente do header estar transparente ou não */
.header-localization .disclosure__list-wrapper,
.disclosure__list-wrapper.country-selector {
  z-index: 50;
  background-color: #ffffff !important;
  box-shadow: 0 12px 34px -10px rgba(0, 0, 0, 0.45);
}

.shopify-section-header-sticky .header__icon,
.shopify-section-header-sticky .header__icon .icon,
.shopify-section-header-sticky .header-localization .disclosure__button,
.shopify-section-header-sticky .nf-header-trust-icon,
.shopify-section-header-sticky .header__heading-link,
.shopify-section-header-sticky .header__heading-logo,
.shopify-section-header-sticky a.header__menu-item {
  color: #ffffff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.55));
}

.shopify-section-header-sticky .header__icon:hover,
.shopify-section-header-sticky .header__icon:focus-visible {
  color: rgb(var(--nf-glow-color));
}
