/** Shopify CDN: Minification failed

Line 171:63 Unexpected "/"
Line 230:63 Unexpected "/"

**/



/* ----------------------------------------------------------- */
/* NÃO MEXER - PARA O H1 FUNCIONAR                               */
/* ----------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}





/* ----------------------------------------------------------- */
/* BODY PRINCIPAL FINALIZADO                                */
/* ----------------------------------------------------------- */

/* Fundo preto para quando se faz scroll */
.template-index .body-main-content::before {
    content: '';
    display: block;
    position: absolute;
    top: 0; /* Coloca o fundo no topo */
    left: 0;
    right: 0;
    height: 150px; /* Ajusta a altura para onde o preto fica */
    background-color: #171717; /* Cor preta */
    z-index: -1; /* Coloca o fundo atrás do conteúdo */
}





/* ----------------------------------------------------------- */
/* HEADER                                        */
/* ----------------------------------------------------------- */

/* Sobe a página toda */
.header-style-8 .header-top {
    padding-top: 20px !important; 
}

/* Mete o top header do INDEX a preto  */
.template-index .header-container {
    background-color: #171717 !important;
}

/* Mete a cor do heading das páginas todas a branco */
:root {
    --header-bg-color: #ffffff !important;
}

/* Define os textos do header como preto em todas as páginas */
.header-container a,
.header-container span,
.header-container .text {
    color: #000000 !important;
}

/* Exceção: deixa APENAS os textos do menu principal brancos na página principal */
.template-index .header-menu a,
.template-index .header-menu span,
.template-index .header-menu .text {
    color: #ffffff !important;
}

/* Define a cor do valor do carrinho como preto em todas as páginas */
.header-container .header-action-item_label {
    color: #000000 !important;
}

/* Exceção: deixa o valor do carrinho branco apenas na página principal */
.template-index .header-container .header-action-item_label {
    color: #ffffff !important;
}

/* Exceção: mete o icone do carrinho branco apenas na página principal */
.template-index .header-action-list .header-cart svg path {
    fill: #ffffff !important;
}

/* Alterar os extras para branco do index */
.template-index .header-action-item.header-account a,
.template-index .header-action-item.header-account span,
.template-index .header-container .text {
    color: #ffffff !important;
}

/* Exceção: Define a cor preta so stiky apenas no index */
.template-index {
    --header-bg-color: #171717 !important;
}

/* Exceção: Tira o bug do scroll no index */
.template-index .header-sticky {
    background-color: #171717 !important;
}

/* Exceção: deixa APENAS o ícone ao lado de "Inicia sessão" branco na página principal */
.template-index .header-action-item.header-account .icon svg {
    fill: #ffffff !important;
}





/* ----------------------------------------------------------- */
/* MENU PRINCIPAL                                              */
/* ----------------------------------------------------------- */

.header-bottom-lr {
    display: flex;
    justify-content: center; /* Mantém o menu principal centrado */
    align-items: center;
    width: 100%;
    position: relative;
}

/* Espaçamento uniforme entre itens do menu principal */
.header-bottom-lr ul.menu-list > li {
    margin: 0 30px; /* Ajusta espaçamento entre os itens */
}

/* Ajuste de letras, espaçamento e peso do menu */
ul.menu-list li a,
ul.menu-list li a span {
    font-size: 14px !important;
    letter-spacing: 0.7px !important;
    font-weight: 400 !important;
}

/* Mantém o menu principal no topo */
.header-bottom-lr {
    position: relative;
    top: -10px;
}

/* Cor do menu principal geral */
.header-menu .menu-list > li .menu-item_wrapper > a {
    color: #000000 !important;
}

/* Cor do menu principal do INDEX */
.template-index .header-menu .menu-list > li .menu-item_wrapper > a {
    color: #ffffff !important;
}

/* Muda a cor dos itens do menu principal ao passar o rato */
.header-menu .menu-list > li .menu-item_wrapper a:hover span {
    color: #00ff1e !important; /* Verde */
}


* ----------------------------------------------------------- */
/* APOIO AO CLIENTE TEXTO                                     */               
/* ----------------------------------------------------------- */

/* Mantém o menu centrado e distribui os elementos */
.header-bottom_wrapper {
    display: flex;
    justify-content: center; /* Mantém o menu no centro */
    align-items: center;
    width: 100%;
    position: relative;
    flex-wrap: nowrap; /* 🔥 Evita que itens passem para a linha de baixo */
}

/* Afasta apenas o "Apoio ao Cliente" sem afetar o dropdown */
ul.menu-list > li:last-child a span {
    margin-left: 150px !important; /* Empurra só o texto */
}

/* 🔥 Corrige o alinhamento do menu empurrando-o ligeiramente para a direita */
.header-bottom-lr {
    margin-left: 230px; /* Ajusta conforme necessário para centralizar */
}

/* Reduz o espaço entre os itens quando a tela for menor */
@media (max-width: 1600px) {
    .header-bottom_wrapper ul.menu-list > li {
        margin: 0 20px; /* 🔥 Diminui a margem entre os itens para caber */
    }
}

/* Esconde "Apoio ao Cliente" em telas menores */
@media (max-width: 1450px) {
    .header-bottom-lr ul.menu-list > li:last-child {
        display: none !important;
    }

    /* 🔥 Quando "Apoio ao Cliente" desaparece, corrige a centralização do menu */
    .header-bottom-lr {
        margin-left: 0; /* Remove a margem para recentrar */
    }
}

/* Mantém "Apoio ao Cliente" alinhado corretamente */
ul.menu-list > li:last-child {
    display: flex;
    align-items: center;
    white-space: nowrap; /* 🔥 Evita que o texto quebre */
}

/* Muda a cor do texto ao passar o rato */
ul.menu-list > li:last-child a:hover span {
    color: #00ff1e !important; /* Verde, troca pelo que quiseres */
}





* ----------------------------------------------------------- */
/* APOIO AO CLIENTE ICONE                                     */               
/* ----------------------------------------------------------- */

/* Adiciona o ícone antes do texto */
ul.menu-list > li:last-child a {
    display: flex;
    align-items: center;
    gap: 6px; /* 🔥 Espaço entre o ícone e o texto */
}

/* Adiciona o ícone apenas no menu principal e não no footer */
.header-bottom-lr ul.menu-list > li:last-child a::before {
    content: "";
    background: url('/cdn/shop/files/apoio_ao_cliente.png?v=1747057798') no-repeat center;
    background-size: contain;
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
    position: relative;
    left: 145px; /* Ajusta conforme necessário */
    filter: brightness(0);
}

/* Exceção: deixa o ícone branco apenas na página principal */
.template-index .header-bottom-lr ul.menu-list > li:last-child a::before {
    filter: brightness(100);
}






/* ----------------------------------------------------------- */
/* DROP DOWN MENU                                              */
/* ----------------------------------------------------------- */

.header-menu .dropdown-menu a {
  color: #000 !important; /* Define as letras do dropdown a preto */
  z-index: 20; /* Define um z-index mais alto do que a barra verde */
}

/* Ajustes para as subcategorias no dropdown */
.mega-menu .menu-list {
    display: block; /* Garante que os itens da lista fiquem em coluna */
    padding-left: 0; /* Remove qualquer preenchimento à esquerda */
    text-align: left; /* Alinha os itens da lista à esquerda */
}

.mega-menu .menu-list li {
    list-style-type: none; /* Remove o marcador de lista */
    padding-left: 0;
}

.mega-menu .menu-list li a {
    text-align: left; /* Alinha os links à esquerda */
}

/* Alinhamento fino para subcategorias */
.header-bottom-lr ul.menu-list > li ul > li {
    padding-left: 0 !important; /* Remove preenchimento extra */
    margin-left: 0 !important; /* Remove qualquer margem adicional */
    text-align: left !important; /* Garante alinhamento à esquerda */
}

/* Ajustar textos com quebra para manter alinhamento */
.header-bottom-lr ul.menu-list > li ul > li a {
    white-space: normal !important; /* Permite quebras de linha para evitar desalinhamento */
}

/* Ajustar tipo de letra e tamanho */
.header-menu .dropdown-menu a {
  font-family: Helvetica, Arial, sans-serif !important; /* Fonte limpa e disponível */
  font-size: 13.3px !important; /* Tamanho da letra mais pequeno */
}

/* Diminuir o espaço vertical entre os itens */
.header-menu .dropdown-menu a {
  line-height: 1.3 !important; /* Ajusta o espaçamento entre linhas */
  padding-top: 4px !important; /* Espaçamento superior */
  padding-bottom: 4px !important; /* Espaçamento inferior */
}

.header-menu .dropdown-menu a {
  color: #3b3b3b !important; /* Cor mais suave */
  transition: none !important; /* Remove qualquer efeito de transição */

}

.header-menu .dropdown-menu h4 {
  color: #272727 !important; /* Define a cor para os títulos */
  font-family: Helvetica, Arial, sans-serif !important; /* Fonte limpa e disponível */
  font-size: 14px !important; /* Tamanho da letra mais pequeno */
}

.header-menu .dropdown-menu a:hover {
  color: #32CD32 !important; /* Cor verde limão */
  text-decoration: none !important; /* Remove o sublinhado */
}

/* Define as setinhas do menu dropdown como preto em todas as páginas */
.header-menu > .menu-list > li > .menu-item_wrapper svg {
    color: #000000 !important;
}

/* Exceção: deixa as setinhas brancas apenas na página principal */
.template-index .header-menu > .menu-list > li > .menu-item_wrapper svg {
    color: #ffffff !important;
}





/* ----------------------------------------------------------- */
/* FUNDOS DE DROP DOWNS MENUS                                 */
/* ----------------------------------------------------------- */

/* ---- FUNDO de "Gadgets e Acessórios" ---- */
.menu-item.mega-menu-item:nth-of-type(2) .dropdown-menu_wrapper::before {
    content: ''; /* Cria o logotipo como pseudo-elemento */
    position: absolute;
    top: 0; /* Ajusta o topo */
    right: -70px; /* Ajusta para alinhar ao lado direito */
    width: 30%; /* Ajusta a largura */
    height: 100%; /* Ajusta a altura */
    background-image: url('/cdn/shop/files/logo_drop_down_menu.png?v=1743056394');
    background-size: contain; /* Ajusta o tamanho do logotipo */
    background-repeat: no-repeat; /* Evita repetições */
    background-position: center;
    transform: rotate(-90deg); /* Roda apenas o logotipo */
    z-index: 0; /* Coloca o logotipo atrás */
    opacity: 0.6; /* Torna o logotipo mais subtil */
}





/* ---- FUNDO de "Gaming e Extras" ---- */
.menu-item.mega-menu-item:nth-of-type(3) .dropdown-menu_wrapper::before {
    content: ''; /* Cria o logotipo como pseudo-elemento */
    position: absolute;
    top: 100px; /* Ajusta o topo */
    right: -70px; /* Ajusta para alinhar ao lado direito */
    width: 30%; /* Ajusta a largura */
    height: 10%; /* Ajusta a altura */
    background-image: url('/cdn/shop/files/logo_drop_down_menu.png?v=1743056394');
    background-size: contain; /* Ajusta o tamanho do logotipo */
    background-repeat: no-repeat; /* Evita repetições */
    background-position: center;
    transform: rotate(-90deg); /* Roda apenas o logotipo */
    z-index: 0; /* Coloca o logotipo atrás */
    opacity: 0.6; /* Torna o logotipo mais subtil */
}





/* ----------------------------------------------------------- */
/* SLIDER DA BARRA VERDE                                       */
/* ----------------------------------------------------------- */

.section-image-gallery {
    position: relative !important;
    z-index: 5 !important; /* mete a barra verde em cima de tudo */
}

.template-index div.slider-wrapper div.tns-outer div.tns-inner div.slider-list div.slider-item {
    flex: 0 0 90px;
    max-width: 100%;
    height: 33px;
    margin: 0 10px; /* Espaçamento entre os itens do slider */
}

.template-index div.slider-wrapper div.tns-outer {
    padding: 0 0px; /* Adiciona espaçamento nas laterais */
    position: relative;
}

.template-index div.slider-wrapper div.tns-outer div.tns-inner div.slider-list div.slider-item img {
    width: 37px; /* Ajusta o tamanho dos ícones */
    height: auto; /* Mantém a proporção dos ícones */
    margin-left: 12px;
  margin-top: 3px;
}

.template-index div.slider-wrapper div.tns-outer div.tns-inner div.slider-list div.slider-item span {
    margin-top: -2px; /* Reduz o espaçamento entre os ícones e o texto */
    display: block; /* Garante que os nomes fiquem numa linha separada */
    text-align: center; /* Centraliza o texto */
    font-size: 10px; /* Ajusta o tamanho do texto para harmonizar */
    line-height: 1; /* Ajusta o espaçamento interno do texto */
}





/* ----------------------------------------------------------- */
/* CAPA ANIMADA COM 3 IMAGENS                                  */
/* ----------------------------------------------------------- */

/* ----------------------------------------------------------- */
/* ESTADO 1 - PRIMEIRA CAPA ESTÁTICA (INICIAL)                */
/* ----------------------------------------------------------- */
.section-single-product-v2 {
  position: relative;
  width: 100%;
  padding-top: 19%;
  margin: 0;
  background-image: url('/cdn/shop/files/CAPA_1_NOVA_LETRAS_PEQUENAS.jpg?v=1757045135'); /* Primeira imagem */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}


/* ----------------------------------------------------------- */
/* VERSÃO MOBILE - CAPA OTIMIZADA PARA TELEMÓVEIS (iPhone, etc.) */
/* ----------------------------------------------------------- */
@media (max-width: 768px) {
  .section-single-product-v2 {
    height: 55vh; /* Garante que ocupa toda a tela */
    margin-top: -10px;
    background-image: url('/cdn/shop/files/mobile_1.jpg?v=1751948144'); /* Imagem mobile */
    background-size: cover; /* Ajusta sem cortes laterais */
    background-position: top center; /* Mantém o enquadramento correto */
  }
}





/* ----------------------------------------------------------- */
/* ESTADO 2 - SEGUNDA CAPA DESLIZA DA DIREITA PARA A ESQUERDA  */
/* ----------------------------------------------------------- */
.section-single-product-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%; /* Começa fora da tela */
  width: 100%;
  height: 100%;
  background-image: url('/cdn/shop/files/CAPA_2_NOVA_LETRAS_PEQUENAS.jpg?v=1757045135'); /* Segunda imagem */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation: alternarCapa 23s infinite ease-in-out forwards;
}

@keyframes alternarCapa {
    0%, 26.6% {
        left: 100%; /* Segunda imagem ainda fora da tela */
    }
    28% {
        left: 0%; /* Segunda imagem desliza rapidamente */
    }
    55% {
        left: 0%; /* Segunda imagem fica estática APENAS 9 segundos */
    }
    100% {
        left: 0%; /* Mantém-se fixa, NÃO desliza para a esquerda */
    }
}


/* ----------------------------------------------------------- */
/* VERSÃO MOBILE - SEGUNDA CAPA COM ANIMAÇÃO                   */
/* ----------------------------------------------------------- */
@media (max-width: 768px) {
  .section-single-product-v2::before {
        height: 65vh; /* Garante que ocupa toda a tela */
    margin-top: 0px;
    background-image: url('/cdn/shop/files/mobile_2.jpg?v=1751948144'); /* Segunda imagem (mobile) */
    background-size: cover; /* Ajusta ao espaço sem cortes laterais */
    background-position: top center; /* Mantém o enquadramento correto */
  }
}





/* ----------------------------------------------------------- */
/* ESTADO 3 - TERCEIRA CAPA DESLIZA DA DIREITA PARA A ESQUERDA */
/* ----------------------------------------------------------- */
.section-single-product-v2 .extra-cover {
  position: absolute;
  top: 0;
  left: 100%; /* Começa fora da tela */
  width: 100%;
  height: 100%;
  background-image: url('/cdn/shop/files/CAPA_3_NOVA_LETRAS_PEQUENAS.jpg?v=1757045135'); /* Terceira imagem */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation: alternarCapa3 23s infinite ease-in-out forwards;
  z-index: 2; /* Garante que está acima das outras camadas */
}

@keyframes alternarCapa3 {
    0%, 55% {
        left: 100%; /* Terceira imagem ainda fora da tela */
    }
    57% {
        left: 0%; /* Terceira imagem entra mais cedo e desliza rapidamente */
    }
    85% {
        left: 0%; /* Terceira imagem fica estática durante cerca de 9 segundos */
    }
    100% {
        left: 0%; /* Mantém-se fixa, NÃO desaparece */
    }
}


/* ----------------------------------------------------------- */
/* VERSÃO MOBILE - TERCEIRA CAPA COM ANIMAÇÃO                  */
/* ----------------------------------------------------------- */
@media (max-width: 768px) {
  .section-single-product-v2 .extra-cover {
        height: 55vh; /* Garante que ocupa toda a tela */
    margin-top: 0px;
    background-image: url('/cdn/shop/files/mobile_3.jpg?v=1751948144'); /* Terceira imagem (mobile) */
    background-size: cover; /* Ajusta ao espaço sem cortes laterais */
    background-position: top center; /* Mantém o enquadramento correto */
  }
}





/* ----------------------------------------------------------- */
/* ESTADO 4 - PRIMEIRA CAPA VOLTA A DESLIZAR RÁPIDO COMO A SEGUNDA */
/* ----------------------------------------------------------- */
.section-single-product-v2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%; /* Começa fora da tela */
  width: 100%;
  height: 100%;
  background-image: url('/cdn/shop/files/CAPA_1_NOVA_LETRAS_PEQUENAS.jpg?v=1757045135'); /* Primeira imagem volta */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation: voltarCapa 23s infinite ease-in-out forwards;
  z-index: 2; /* Garante que cobre a terceira imagem */
}

@keyframes voltarCapa {
    0%, 85% { 
        left: 100%; /* Primeira imagem ainda fora da tela enquanto a terceira está visível */
    }
    86% {
        left: 0%; /* Primeira imagem desliza rapidamente, igual à segunda */
    }
    100% {
        left: 0%; /* Primeira imagem fixa-se e o ciclo reinicia */
    }
}


/* ----------------------------------------------------------- */
/* VERSÃO MOBILE - RETORNO À PRIMEIRA CAPA                     */
/* ----------------------------------------------------------- */
@media (max-width: 768px) {
  .section-single-product-v2::after {
        height: 55vh; /* Garante que ocupa toda a tela */
    margin-top: -0px;
    background-image: url('/cdn/shop/files/mobile_1.jpg?v=1751948144'); /* Primeira imagem (mobile) */
    background-size: cover; /* Ajusta ao espaço sem cortes laterais */
    background-position: top center; /* Mantém o enquadramento correto */
  }
}





/* ----------------------------------------------------------- */
/* BANNER DE BENEFICIOS                   */
/* ----------------------------------------------------------- */

#banner-mobile img {
  margin-top: -6px !important;
  margin-bottom: 15px !important;
}

/* Posiciona melhor o banner de beneficios verão móvel */
@media (max-width: 1024px) {
  #banner-mobile img {
    width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: cover;
    margin-bottom: 60px;
  }
}





/* ----------------------------------------------------------- */
/* PRODUCT CARDS                                              */
/* ----------------------------------------------------------- */

.product-card:before, 
.product-card:after {
    content: none !important; /* Remove os pseudo-elementos */
    background: none !important; /* Remove qualquer fundo */
    border: none !important; /* Remove bordas */
}

.product-card {
    border: 1px solid rgba(0, 0, 0, 0.08); /* Cor preta com 8% de opacidade */
    border-radius: 0px;
    overflow: hidden;
    display: block; /* 🐀񙐠Remove o flex e usa o comportamento normal */
}

.product-card img {
    width: 100%;
    height: auto;
    max-height: 80%; /* 🔥 Permite que a imagem cresça livremente */
    object-fit: contain;
    display: block;
    margin: 10px auto;
    flex-grow: 1; /* 🔥 Mantém o crescimento proporcional */
}

/* 🔥 Define um espaço fixo para a área da imagem, impedindo que o título desça */
.product-card .image-container {
    width: 100%;
    min-height: 200px; /* Mantém uma altura mínima estável */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Garante que o nome do produto não é sobreposto e Mantém os títulos fixos na posição correta */
.product-card h3 {
    margin-top: -5px;
    flex-shrink: 0; /* Impede que o título seja comprimido */
    min-height: 48px; /* Mantém espaço fixo para o nome */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.slider-item > .product-card {
    width: 100% !important;
    box-sizing: border-box;
}

.product-card_quick-view {
    display: none !important;
}

/* Aumentar product cards */
.col-lg-5th,
.col-md-3,
.col-sm-4,
.col-6 {
  padding-left: 8px !important;
  padding-right: 8px !important;
  box-sizing: border-box;
}

/* Aumentar product cards */
.template-index .col-lg-5th,
.template-index .col-md-3,
.template-index .col-sm-4,
.template-index .col-6 {
  padding-left: 8px !important;
  padding-right: 8px !important;
  box-sizing: border-box;
}

.template-index .row {
  margin-left: -8px !important;
  margin-right: -8px !important;
}





/* ----------------------------------------------------------- */
/* EFEITO HOVER NOS PRODUCT CARDS       */
/* ----------------------------------------------------------- */

/* Efeito de hover suave para os product cards */
.product-card {
    transition: all 0.3s ease-in-out; /* Suaviza a transição */
    position: relative;
}

.product-card:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12); /* Elevação subtil */
    transform: translateY(-1px); /* Levanta ligeiramente o card */
}

.product-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.01); /* Fundo ligeiramente escuro */
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
}

.product-card:hover::after {
    opacity: 1; /* Ativa o fundo ao passar o rato */
}





/* -------------------------------------------------------------------------------- */
/* PRODUCT CARDS ETIQUETAS          (mais coisas na secção product-item.liquid )    */
/* -------------------------------------------------------------------------------- */

/* Estilo base para a etiqueta "Stock Limitado" */
.stock-limitado-badge {
    background-color: #75fb4c;
    color: #000000;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 3px 4px;
    position: absolute;
    top: -16px;
    left: -19px;
    border-radius: 1px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Versão mobile para ecrãs até 600px */
@media (max-width: 600px) {
    .stock-limitado-badge {
        background-color: #75fb4c !important;
        color: #000000 !important;
        font-size: 10px !important;
        font-weight: bold !important;
        text-transform: uppercase !important;
        letter-spacing: 0.7px !important;
        padding: 2px 3px !important;
        position: absolute !important;
        top: -11px !important;
        left: -11px !important;
        border-radius: 1px !important;
        z-index: 5 !important;
        display: inline-flex !important;
        align-items: center !important;
        transition: transform 0.2s ease, background-color 0.2s ease !important;
    }
}

/* Estilo base para a etiqueta "Novidade" */
.novidade-badge {
    background-color: #4a9eee;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 2px 4px;
    position: absolute;
    top: -16px;
    left: -19px;
    border-radius: 1px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Versão mobile para ecrãs até 600px */
@media (max-width: 600px) {
    .novidade-badge {
        background-color: #4a9eee !important;
        color: #ffffff !important;
        font-size: 11px !important;
        font-weight: bold !important;
        text-transform: uppercase !important;
        letter-spacing: 0.7px !important;
        padding: 2px 3px !important;
        position: absolute !important;
        top: -12px !important;
        left: -10px !important;
        border-radius: 1px !important;
        z-index: 5 !important;
        display: inline-flex !important;
        align-items: center !important;
        transition: transform 0.2s ease, background-color 0.2s ease !important;
    }
}


/* Estilo base para a etiqueta "desconto" */
.product-card_labels .label-desconto {
    background-color: #75fb4c;
    color: #000000;
    height: 18px !important; /* Altura fixa do fundo */
    width: 110px !important; /* Largura adaptada ao conteúdo */
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 2px 4px;
    position: absolute;
    top: -25px;
    left: -19px;
    border-radius: 1px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Ícone para etiquetas de desconto */
.product-card_labels .label-desconto::before {
    content: ""; /* Adiciona o ícone antes do texto */
    display: inline-block;
    width: 11px;
    height: 11px;
    background-image: url('/cdn/shop/files/etiqueta.png?v=1744258177'); /* Ícone de etiqueta */
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 4px; /* Espaçamento entre o ícone e o texto */
}

/* Versão mobile para ecrãs até 600px */
@media (max-width: 600px) {
    .product-card_labels .label-desconto {
        background-color: #75fb4c !important;
        color: #000000 !important;
        height: 20px !important;
        width: 105px !important;
        font-size: 10px !important;
        font-weight: bold !important;
        text-transform: uppercase !important;
        letter-spacing: 0.7px !important;
        padding: 2px 3px !important;
        position: absolute !important;
        top: -20px !important;
        left: -12px !important;
        border-radius: 1px !important;
        z-index: 5 !important;
        display: inline-flex !important;
        align-items: center !important;
        transition: transform 0.2s ease, background-color 0.2s ease !important;
    }
}

/* Versão mobile para ecrãs até 600px */
@media (max-width: 600px) {
    .product-card_labels .label-desconto::before {
        content: "" !important;
        display: inline-block !important;
        width: 10px !important;
        height: 10px !important;
        background-image: url('/cdn/shop/files/etiqueta.png?v=1744258177') !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        margin-right: 3px !important;
    }
}




























/* -------------------------------------------------------------------------------- */
/* PRODUCT CARDS PREÇO      
/* -------------------------------------------------------------------------------- */

.template-index .price-container {
  display: flex !important; /* Mantém os preços lado a lado */
  align-items: baseline !important; /* Alinha os números e os cêntimos corretamente */
  justify-content: center !important; /* Centraliza os preços */
  gap: 0px !important; /* Define um espaçamento fixo entre os preços */
  flex-wrap: nowrap !important; /* Impede que os preços quebrem para outra linha */
  width: 100% !important; /* Garante que ocupa toda a largura disponível */
  text-align: center !important; /* Garante que o conteúdo dentro está centrado */
}

.template-index .price-sale {
  font-size: 19px !important;
  font-weight: 500 !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 1px !important; /* Pequeno espaçamento entre os números e os cêntimos */
  margin-right: 0 !important; /* Remove qualquer margem negativa */
    color: #000000 !important;
}

@media (max-width: 767px) {
  .template-index .price-sale {
    font-size: 22px !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 0px !important;
    margin-right: 0 !important;
    color: #000000 !important;
  }
}

.template-index .price-label {
  font-size: 12px !important; /* PVPR */
  color: #000000 !important;
  font-weight: 400 !important;
}

.product-price .price-sale span:last-child {
    font-size: 14px !important; /* Mantém os cêntimos menores */
    position: relative !important; /* Permite deslocamento */
    top: -7px !important; /* Move os cêntimos para cima */
    margin-left: 1px !important; /* Espaço antes dos cêntimos (ajusta o valor) */
}

.template-index .price-sale span:last-child {
    font-size: 12px !important; /* Mantém os cêntimos menores */
    position: relative !important; /* Permite deslocamento */
    top: -5px !important; /* Move os cêntimos para cima */
    margin-left: 0px !important; /* Espaço antes dos cêntimos (ajusta o valor) */
}

@media (max-width: 767px) {
  .template-index .price-sale span:last-child {
    font-size: 10px !important;
    position: relative !important;
    top: -9px !important;
    margin-left: 0px !important;
  }
}

.template-index .product-card_price_action {
  display: flex !important;
  justify-content: center !important; /* Centraliza o conteúdo */
  align-items: center !important;
  width: 100% !important;
  text-align: center !important;
  border-bottom: none !important;
}

.template-index .product-price {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important; /* 🔥 Agora fica centrado */
    width: 100% !important;
    text-align: center !important;
  
}

/* Garantir que o container do preço não force alinhamento lateral */
.template-index .price-sale {
    margin-top: -10px !important; /* Espaço abaixo do preço */
  margin-bottom: 10px !important; /* Espaço abaixo do preço */
}

.template-index  span.price-compare del {
    color: #7f7f7f !important; /* Altera a cor para preto */
    text-decoration: line-through !important; /* Mantém o efeito de preço riscado */
}

.template-index .product-card_price_action {
  border-bottom: none !important;
}


/* Tira o PVPR */
.price-label {
  display: none !important;
}


/* Garante que apenas um euro aparece no final */
.template-index .price-compare del::after {
    content: " €" !important;
    font-weight: normal;
    margin-left: 2px;
    display: inline-block;
}

/* Remove o símbolo do euro antes do preço comparado */
.template-index .price-compare del {
    unicode-bidi: plaintext;
}

/* Remove o símbolo do euro antes do preço comparado */
.template-index .price-compare del::before {
    content: "" !important;
    display: none !important;
}

/* Remove o símbolo do euro antes do preço comparado */
.template-index .price-compare del::first-letter {
    visibility: hidden !important;
    width: 0 !important;
}


.template-index .price-sale {
    margin-right: -15px !important; /* Reduz a margem entre o preço atual e o riscado */
}

@media (max-width: 767px) {
  .template-index .price-sale {
    margin-right: -5px !important;
  }
}

.template-index .product-price .price-compare {
  font-size: 14px;       /* ou outro valor à tua escolha */
  color: #999999;        /* cinzento claro (podes trocar) */
  opacity: 0.7;          /* torna o preço riscado mais discreto */
}





/* Mete o preço sem ser comparado igual ao preço comparado */
.template-index .product-price::after {
  content: "";
  display: block;
  height: 18px; /* altura média ocupada pelo price-compare */
  margin-bottom: 20px !important;
  visibility: hidden;
}

























/* -------------------------------------------------------------------------------- */
/* PRODUCT CARDS BOTÃO 
/* -------------------------------------------------------------------------------- */

/* Garantir que o botão fica na linha seguinte (botão abaixo do preço) */
.template-index .btn-add-to-cart {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 90% !important;  /* Tentei garantir que o botão ocupa 100% da largura */
  max-width: 250px !important; /* Limitar a largura máxima do botão se necessário */
  background-color: #464646 !important;
  color: #fff !important;
  text-align: center !important;
  border-radius: 3px !important;
  font-size: 14px !important;
  font-weight: bold !important;
  border: none !important;
  cursor: pointer !important;
  gap: 8px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  height: 30px !important;
  min-width: 120px !important;
  padding: 5px 8px !important;
  margin-bottom: 10px !important;
  margin-top: 7px !important;
}


.template-index .btn-add-to-cart {
  transition: transform 0.2s ease !important; /* Controla a animação de aumento */
}

.template-index .btn-add-to-cart:hover {
  transform: scale(1.05) !important; /* Aumenta o botão 5% quando o rato passa em cima */
}


/* Adiciona texto ao lado do ícone no botão */
.template-index .btn-add-to-cart span {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important; /* Helvetica com fallback */
  display: inline !important; /* Garante que o texto aparece ao lado do ícone */
  color: #77fb4c !important; /* Cor */
  font-size: 12px !important; /* Tamanho do texto */
  font-weight: 500 !important; /* Semi-bold */
}

/* Estilo do ícone dentro do botão */
.template-index .btn-add-to-cart svg {
  width: 14px !important; /* Tamanho do ícone */
  height: 14px !important;
  color: #FFFFFF !important; /* Cor para o ícone */
}


/* Ajustar o container geral (se necessário) */
.template-index .product-card_price_action {
  display: block !important; /* Força os elementos dentro do container a ficarem em bloco */
  text-align: left !important; /* Ajusta alinhamento, se necessário */
}

/* Forçar o texto a aparecer no botão apenas nas páginas de listagem */
.template-index .template-collection .btn-add-to-cart::after,
.template-search .btn-add-to-cart::after {
  content: attr(aria-label); /* Usa o texto do atributo "aria-label" */
  margin-left: 8px; /* Espaçamento entre o ícone e o texto */
  color: #fff; /* Cor do texto */
  font-size: 14px; /* Tamanho do texto */
  font-weight: bold; /* Texto em negrito */
}

/* Esconde o texto extra na página do produto */
.template-index .template-product .btn-add-to-cart::after {
  content: none !important; /* Remove o texto na página do produto */
}

/* Esconde o segundo botão na página do produto */
.template-index .template-product .btn-add-to-cart:not(:first-of-type) {
  display: none !important;
}

/* Garantir que todos os preços seguem o mesmo formato */
.template-index .product-price {
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 23px !important; /* Mantém o tamanho correto */
    font-weight: 500 !important;
}

/* Corrige formatação do preço dos vouchers */
.template-index .product-card_price_action .product-price {
    font-size: 20px !important;
    font-weight: 500 !important;
    color: var(--price-color); /* Mantém a cor correta */
    text-align: center !important;
}

/* Mantém o preço alinhado corretamente */
.template-index .price {
    display: flex !important;
    align-items: center !important; /* 🔥 Centraliza verticalmente */
    justify-content: center !important;
    font-size: 18px !important; /* 🔥 Mantém o tamanho igual aos outros preços */
    font-weight: 500 !important;
}

/* Garante que o botão "Adicionar ao cesto" fica sempre no mesmo lugar */
.template-index .product-card_footer {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end !important; /* 🔥 Mantém o botão fixo na parte inferior */
    min-height: 0px !important; /* 🔥 Ajusta para evitar que o botão suba */

}

/* Esconde os botões "Adicionar ao Carrinho" apenas nas páginas de coleção */
.template-index .template-collection .product-card_actions {
    display: none !important;
}

@media (max-width: 1180px) {  /* Agora o botão desaparece em telas com largura até 1180px */
  .menu-item.mega-menu-item:nth-of-type(3)::after {
    display: none; /* Esconde o botão */
  }
}

/* Tamanho do preço da página dos produtos */
.price-sale.js-price {
  font-size: 22px !important; /* ou o valor que quiseres */
}





/* ----------------------------------------------------------- */
/* MENU DAS MINI THUMBNAILS       */
/* ----------------------------------------------------------- */

.product-card .btn-add-to-cart,
.btn-add-to-cart {
  padding: 10px 12px !important;
}

.mega-menu_widget .price-sale {
    font-size: 18px !important; /* Corrige o tamanho do preço */
    font-weight: 500 !important;
    gap: 10px !important;
}

.mega-menu_widget .product-price {
    margin-top: -20px !important; /* Ajusta conforme necessário */
      margin-bottom: 20px !important; /* Ajusta conforme necessário */
    padding-top: 0 !important;
}

.price {
    font-size: 18px !important; /* Aumenta o tamanho para igualar aos product cards */
    font-weight: 500 !important;
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    height: auto !important; /* Remove a altura fixa de 50px */
    margin-top: 0px !important; /* Reduz o espaço acima */
    padding-top: 0 !important; /* Garante que não há padding extra */
}

.mega-menu_widget .price-compare {
    font-size: 15px !important; /* Corrige o tamanho do preço */
    font-weight: 500 !important;
    padding-left: 15px !important;
}




/* ----------------------------------------------------------- */
/* Banner do lado esquerdo com 3 imagens                       */
/* ----------------------------------------------------------- */
.template-index .sb-banner {
  width: 88% !important;
  max-width: 1200px;        /* Ajusta como quiseres */
  height: auto !important;  /* Ou usa um valor fixo ex: 80px */
  margin: 0 auto;           /* Centraliza horizontalmente */
}





/* ----------------------------------------------------------- */
/* COISAS VARIADAS                                             */
/* ----------------------------------------------------------- */

@media (max-width: 480px) {
    #section-template--23876920213772__16502682770d90b4c8 {
        margin-top: 40px !important;
        padding: 0 !important;
    }
}

/* Estilo para o logotipo na versão mobile */
@media (max-width: 768px) {
    .header-logo img {
        width: 100%; /* Ajusta a largura da imagem para 100% do seu contêiner */
        height: auto; /* Mantém a proporção da imagem */
        max-width: 200px; /* Limita o tamanho máximo do logotipo */
        object-fit: contain; /* Evita que a imagem seja distorcida */
        background-color: transparent; /* Remove o fundo vermelho de teste */
        image-rendering: -webkit-optimize-contrast; /* Melhora a nitidez */
        image-rendering: crisp-edges; /* Garante bordas nítidas */
        margin-top: 9px;
    }
}


ul li {
  line-height: 1.4;
}





/* Substitui o OU do header pelo traço ao pé do regista-te */

.header-account a + span {
  font-size: 0;
}

.header-account a + span::before {
  content: "|";
  font-size: 14px;
  color: inherit;
}


@media (min-width: 992px) {
  .section-featured-collection {
    margin: 50px !important;
    margin-top: 12px !important;
    margin-bottom: 15px !important;


  }
}


@media (min-width: 992px) {
  body.template-product .section-featured-collection {
    margin: -5px !important; /* ou o valor que quiseres para produto */
    margin-top: 40px !important; /* ou o valor que quiseres para produto */
  }
}









/* Selo visual POUZEK RECOMENDADO com imagem */
.pouzek-recomendado-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 95px !important;
    height: auto !important;
    z-index: 6;
    display: block;
}

/* Versão mobile */
@media (max-width: 600px) {
    .pouzek-recomendado-badge {
        top: -14px;
        left: -8px;
        width: 95px !important;
    }
}




/* Todos os centimos, tanto nos preços normais como nos com desconto */
.product-price span:last-child,
.price-sale span:last-child {
  font-size: 12px !important;
  vertical-align: super;
}



.price-cents {
  font-size: 10px;
  vertical-align: top;
  position: relative;
  top: -2px;
}









/* ----------- VERSÃO MÓVEL ----------- */
@media (max-width: 767px) {
  .template-index .price-euros {
    font-size: 22px !important; /* Tamanho dos euros no telemóvel */
  }

  .template-index .price-cents {
    font-size: 14px !important; /* Tamanho dos cêntimos no telemóvel */
    position: relative !important;
    top: -7px !important;
    margin-left: 2px !important;
  }
}





/* ----------- VERSÃO MÓVEL ----------- */
@media (max-width: 767px) {
  .template-index .price-cents {
    font-size: 10px !important;
    vertical-align: top !important;
    position: relative !important;
    top: -4px !important;
  }
}



.template-index .price {
  font-size: 20px !important; 
}


































/* BARRA SUPERIOR CUSTOMIZADA DA POUZEK (MAIS EM THEME.LIQUID) */

@media screen and (min-width: 768px) {
  .barra-superior-custom {
    background: #252525;
    color: #fff;
    font-size: 12px;
    padding: 7px 60px;
    display: flex;
    justify-content: space-between;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.8px;
    font-weight: 300;
    border-bottom: 1px solid #323232;
  }

  .texto-esquerda {
    padding-top: 3px;
    font-size: 11px;
  }

  .barra-superior-custom a {
    color: #fff;
    text-decoration: none;
    opacity: 1;
    transition: all 0.2s ease-in-out;
  }

  .barra-superior-custom a:hover {
    text-decoration: underline;
    opacity: 1;
  }
}


/* Esconde totalmente em ecrãs pequenos */
@media screen and (max-width: 767px) {
  .barra-superior-custom {
    display: none !important;
  }
}





/* Ícone de apoio ao cliente na barra superior POUZEK */
@media screen and (min-width: 768px) {
.apoio-cliente-icon::before {
    content: "";
    display: inline-block;
    background: url('/cdn/shop/files/apoio_ao_cliente.png?v=1747057798') no-repeat center;
    background-size: contain;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    position: relative;
    top: 2px;
    filter: brightness(0) invert(1); /* Fica branco */
  }
}




