/*
 * Exclusive Custom CSS/JS
 * Este arquivo recebe o CSS customizado da loja Exclusive Tricot.
 * Cole aqui, gradualmente, o CSS que hoje está em Aparência > Personalizar > CSS adicional.
 */


/* =========================
   PDP (Product Page) — Woo native gallery
   Thumbs vertical left + controllable spacing + contain + optional zoom
   ========================= */

/* ---------- CONTROLES (ajuste aqui) ---------- */
:root{
  --pdp-main-max-h: 600px;     /* altura max da imagem principal (desktop) */
  --pdp-thumb-w: 98px;         /* largura da coluna de miniaturas */
  --pdp-gap: 3px;             /* distancia entre miniaturas e imagem principal */
  --pdp-zoom-scale: 1.06;       /* zoom no hover (1.0 = sem zoom) */
}

/* ---------- LAYOUT: thumbs verticais à esquerda ---------- */
.single-product div.product .woocommerce-product-gallery{
  display: flex;
  flex-direction: row;
  gap: var(--pdp-gap);
  align-items: flex-start;
}

/* Viewport da imagem grande (slider) */
.single-product div.product .woocommerce-product-gallery .flex-viewport{
  order: 2;
  width: calc(100% - var(--pdp-thumb-w) - var(--pdp-gap));
  max-height: var(--pdp-main-max-h);
  overflow: hidden;
  box-sizing: border-box;
}

/* Zera espaçamentos que alguns temas aplicam */
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper{
  margin: 0 !important;
  padding: 0 !important;
}

/* Slide vira um container e alinha a imagem à esquerda (evita “vazio” com contain) */
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__image{
  display: flex;
  align-items: flex-start; /* topo: alinha a imagem destacada com o topo dos thumbs */
  justify-content: flex-start; /* chave para aproximar visualmente da galeria */
}

/* Imagem principal: contain + controle de altura + alinhamento à esquerda */
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__image img{
  width: 100%;
  height: var(--pdp-main-max-h);
  max-height: var(--pdp-main-max-h);
  object-fit: contain;
  object-position: left top; /* topo: evita centralizar verticalmente quando sobra altura (alguns tamanhos de tela) */
  display: block;

  transition: transform .25s ease; /* para zoom (hover) */
}

/* ---------- MINIATURAS ---------- */
.single-product div.product .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs,
.single-product div.product .woocommerce-product-gallery ol.flex-control-thumbs{
  order: 1;
  width: var(--pdp-thumb-w);
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin: 0;
  padding: 0;
  max-height: var(--pdp-main-max-h);
  overflow: auto;              /* rolagem se tiver muitas thumbs */
  box-sizing: border-box;
}

.single-product div.product .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs li,
.single-product div.product .woocommerce-product-gallery ol.flex-control-thumbs li{
  width: 100% !important;
  margin: 0 !important;
}

.single-product div.product .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs img,
.single-product div.product .woocommerce-product-gallery ol.flex-control-thumbs img{
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}



/*---------------------------------------*/


/* VillaTheme WPVS — título + valor sempre na MESMA LINHA e à esquerda */
.single-product .variations th,
.single-product .variations .label{
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  text-align: left !important;
  white-space: nowrap !important;
}

/* Garante que o texto interno não quebre */
.single-product .variations th *,
.single-product .variations .label *{
  display: inline !important;
  white-space: nowrap !important;
}

/* Remove qualquer margin que empurre para baixo */
.single-product .variations .label span,
.single-product .variations th span{
  margin: 0 !important;
}



/* =========================
   WPVS (VillaTheme) — remover box cinza do título e alinhar com swatches
   ========================= */

/* Remove o fundo/padding do título (box cinza) */
.single-product .variations th.label,
.single-product .variations .label{
  background: transparent !important;
  padding: 0 !important;
  margin: 0 0 10px 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Remove qualquer padding/indent da tabela de variações */
.single-product form.variations_form .variations{
  margin: 0 !important;
  border: 0 !important;
}
.single-product form.variations_form .variations tr{
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
}
.single-product form.variations_form .variations th,
.single-product form.variations_form .variations td{
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}

/* Alinhar o começo do título com o começo das swatches */
.single-product .variations th.label,
.single-product .variations .label{
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 6px !important;
}

/* Garante que o wrapper das swatches não tenha recuo */
.single-product .vi-wpvs-variation-wrap{
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* Se o tema coloca padding na coluna do valor (onde ficam as swatches) */
.single-product form.variations_form .variations td.value{
  padding-left: 0 !important;
}


/* =========================
   CONTROLE — Tipografia dos atributos (VillaTheme WPVS)
   ========================= */
:root{
  /* Fonte */
  --pdp-attr-font-family: "Montserrat", sans-serif;

  /* Título do atributo (ex: "Tamanho", "Cor") */
  --pdp-attr-label-size: 14px;
  --pdp-attr-label-weight: 600;
  --pdp-attr-label-color: #1e1e1e;
  --pdp-attr-label-letterspacing: .02em;
  --pdp-attr-label-transform: uppercase; /* uppercase | none */

  /* Valor selecionado (ex: ": M", ": OFF WHITE") */
  --pdp-attr-value-size: 14px;
  --pdp-attr-value-weight: 400;
  --pdp-attr-value-color: #1e1e1e;
}

/* Aplica fonte e estilo no bloco de variações */
.single-product form.variations_form .variations,
.single-product form.variations_form .variations *{
  font-family: var(--pdp-attr-font-family) !important;
}

/* Linha do label "Tamanho : M" / "Cor : OFF WHITE" */
.single-product form.variations_form .variations th.label,
.single-product form.variations_form .variations .label{
  font-size: var(--pdp-attr-label-size) !important;
  font-weight: var(--pdp-attr-label-weight) !important;
  color: var(--pdp-attr-label-color) !important;
  letter-spacing: var(--pdp-attr-label-letterspacing) !important;
  text-transform: var(--pdp-attr-label-transform) !important;
}

/* O plugin costuma separar label e valor em spans.
   A gente trata o "valor" como o último pedaço (geralmente span final). */
.single-product form.variations_form .variations th.label > *,
.single-product form.variations_form .variations .label > *{
  font-size: var(--pdp-attr-label-size) !important;
  font-weight: var(--pdp-attr-label-weight) !important;
  color: var(--pdp-attr-label-color) !important;
}

/* Valor selecionado: tenta pegar o "último" elemento (geralmente o valor) */
.single-product form.variations_form .variations th.label > *:last-child,
.single-product form.variations_form .variations .label > *:last-child{
  font-size: var(--pdp-attr-value-size) !important;
  font-weight: var(--pdp-attr-value-weight) !important;
  color: var(--pdp-attr-value-color) !important;
}





/* Esconder link "Limpar" */
.single-product a.reset_variations{
  display: none !important;
}



/*--------------------IMAGEM MOBILE--------------------*/



@media (max-width: 768px){
  body.single-product{
    overflow-x: hidden;
  }

  body.single-product .woocommerce-product-gallery{
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;

    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
  }

  body.single-product .woocommerce-product-gallery .flex-viewport{
    order: 1 !important;
    width: 100% !important;
    max-height: none !important;
    overflow: hidden !important;
  }

  body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper{
    margin: 0 !important;
    padding: 0 !important;
  }

  body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image{
    margin: 0 !important;
    padding: 0 !important;
    justify-content: center !important;
  }

  body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image img{
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  body.single-product div.product .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs,
  body.single-product div.product .woocommerce-product-gallery ol.flex-control-thumbs{
    order: 2 !important;
    width: 100% !important;
    max-height: none !important;

    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0px !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;

    margin: 0 !important;
    padding: 0 0px !important;
    box-sizing: border-box !important;
  }

  body.single-product div.product .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs li,
  body.single-product div.product .woocommerce-product-gallery ol.flex-control-thumbs li{
    width: 76px !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
  }

  body.single-product div.product .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs img,
  body.single-product div.product .woocommerce-product-gallery ol.flex-control-thumbs img{
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}

@media (max-width: 480px){
  body.single-product div.product .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs li,
  body.single-product div.product .woocommerce-product-gallery ol.flex-control-thumbs li{
    width: 64px !important;
  }
}





/*----------------LABEL------------------------------*/

.awl-inner-text{
  font-family: "Montserrat", sans-serif !important;
  padding: 6px 10px !important;
 
}

/*-----------------THUMBS LOOP GRID COM LINK--------*/

.elementor-loop-container .elementor-widget-image,
.elementor-loop-container .elementor-widget-image a,
.elementor-loop-container .elementor-widget-image figure{
  display: block !important;
  width: 100% !important;
  overflow: hidden !important;
}

.elementor-loop-container .elementor-widget-image img,
.elementor-loop-container .elementor-widget-image a img,
.elementor-loop-container .elementor-widget-image figure img{
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}


/*--------------CENTRALIZA PLACEHOLDER BUSCA MOBILE---*/

@media (max-width: 768px){
  header input[type="search"]::placeholder,
  header input[type="text"]::placeholder{
    text-align: center;
  }

  header input[type="search"],
  header input[type="text"]{
    text-align: center;
  }

  header input[type="search"]:focus,
  header input[type="text"]:focus{
    text-align: left;
  }
}



/*----------------ZOOM THUMBS LOJA--------------------*/



/* ===== ARCHIVE SHOP SCOPE ===== */
body.post-type-archive-product .products li.product a.woocommerce-LoopProduct-link > div,
body.tax-product_cat .products li.product a.woocommerce-LoopProduct-link > div{
  overflow: hidden;
  border-radius: 0px; /* ajuste */
}

/* zoom suave */
body.post-type-archive-product .products li.product a.woocommerce-LoopProduct-link img,
body.tax-product_cat .products li.product a.woocommerce-LoopProduct-link img{
  transition: transform .55s ease, filter .55s ease;
  transform: scale(1);
  will-change: transform;
}

/* hover */
body.post-type-archive-product .products li.product:hover a.woocommerce-LoopProduct-link img,
body.tax-product_cat .products li.product:hover a.woocommerce-LoopProduct-link img{
  transform: scale(1.09);            /* ajuste do “zoom interno” */
  filter: saturate(1.09) contrast(1.08);
}


/*-----------------------------------------------------*/



/*----------------SORTING WOOCOMMERCE--------------*/



/* coloca result-count e ordering na mesma linha */
body.post-type-archive-product .elementor-element-e7ce024 .woocommerce.columns-4,
body.tax-product_cat .elementor-element-e7ce024 .woocommerce.columns-4{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* contador */
body.post-type-archive-product .woocommerce-result-count,
body.tax-product_cat .woocommerce-result-count{
  margin: 0 !important;
  font-size: 14px;
  opacity: .75;
}

/* ordering vai pra direita */
body.post-type-archive-product .woocommerce-ordering,
body.tax-product_cat .woocommerce-ordering{
  margin-left: auto !important;
  margin-bottom: 0 !important;
}

/* garante que o grid de produtos ocupa a linha inteira */
body.post-type-archive-product .elementor-element-e7ce024 ul.products,
body.tax-product_cat .elementor-element-e7ce024 ul.products{
  flex-basis: 100%;
}

/* select premium */
body.post-type-archive-product .woocommerce-ordering select.orderby,
body.tax-product_cat .woocommerce-ordering select.orderby{
  font: inherit;
  font-size: 14px;
	color: rgba(127, 118, 110, 1);
  padding: 10px 40px 10px 12px;
  border: 1px solid rgba(127, 118, 110, 1);
  border-radius: 1px;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}







/* ===== ARCHIVE — Color Swatches (safe) ===== */

body.post-type-archive-product .archive-color-swatches,
body.tax-product_cat .archive-color-swatches{
  margin-top: 6px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

body.post-type-archive-product .archive-color-swatch,
body.tax-product_cat .archive-color-swatch{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--swatch-color);
  border: 1px solid rgba(0,0,0,.18);
  display: inline-block;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}

body.post-type-archive-product .archive-color-swatch:hover,
body.tax-product_cat .archive-color-swatch:hover{
  transform: scale(1.15);
  box-shadow: 0 0 0 1px rgba(0,0,0,.25);
}






/*ALTERAÇÔES NOVAS*/





/*---------------------------*/

.menu-destaque > a.elementor-item {
  color: #ff0000 !important;
}


  /* ================================
     MENU MOBILE - ÁREA CONTA

	/* Divisor acima de Minha Conta */

@media (max-width: 767px) {


  .elementor-nav-menu--dropdown .elementor-nav-menu .menu-com-divisor {
    position: relative !important;
    margin-top: 15px !important;
    padding-top: 15px !important;
    border-top: none !important;
  }

  .elementor-nav-menu--dropdown .elementor-nav-menu .menu-com-divisor::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 20px !important;
    width: 220px !important;
    height: 1px !important;
    background: rgba(0, 0, 0, 0.75) !important;
    display: block !important;
  }

  /* Links Minha Conta e Meus Favoritos */
  .elementor-nav-menu--dropdown .elementor-nav-menu .menu-conta > a.elementor-item,
  .elementor-nav-menu--dropdown .elementor-nav-menu .menu-favoritos > a.elementor-item {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;

    padding-top: 13px !important;
    padding-right: 25px !important;
    padding-bottom: 13px !important;

    /*
      20px = alinhamento dos itens normais do menu
      24px = largura do ícone
      16px = espaço entre ícone e texto
      total = 60px
    */
    padding-left: 50px !important;

    text-align: left !important;

    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    line-height: 1.3 !important;

    background-repeat: no-repeat !important;
    background-size: 20px 20px !important;

    /*
      Aqui o ícone começa alinhado com os outros itens do menu
    */
    background-position: 20px center !important;
  }

  /* Ícone Minha Conta */
  .elementor-nav-menu--dropdown .elementor-nav-menu .menu-conta > a.elementor-item {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='8' r='4' stroke='%23111111' stroke-width='2'/%3E%3Cpath d='M4 20C4.8 15.8 7.8 14 12 14C16.2 14 19.2 15.8 20 20' stroke='%23111111' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  }

  /* Ícone Favoritos */
  .elementor-nav-menu--dropdown .elementor-nav-menu .menu-favoritos > a.elementor-item {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.8 4.6C18.9 2.8 15.9 2.9 14.1 4.8L12 7L9.9 4.8C8.1 2.9 5.1 2.8 3.2 4.6C1.2 6.6 1.2 9.8 3.2 11.8L12 20.5L20.8 11.8C22.8 9.8 22.8 6.6 20.8 4.6Z' stroke='%23111111' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  }

  /* Remove pseudo-ícones antigos */
  .elementor-nav-menu--dropdown .elementor-nav-menu .menu-conta > a.elementor-item::before,
  .elementor-nav-menu--dropdown .elementor-nav-menu .menu-conta > a.elementor-item::after,
  .elementor-nav-menu--dropdown .elementor-nav-menu .menu-favoritos > a.elementor-item::before,
  .elementor-nav-menu--dropdown .elementor-nav-menu .menu-favoritos > a.elementor-item::after {
    content: none !important;
    display: none !important;
  }
}

/*-----------------------------*/

@media (max-width: 767px) {

  .header-mobile-normal {
    transition: opacity 0.2s ease, visibility 0.2s ease !important;
  }

  .header-mobile-sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;

    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 72px !important;

    z-index: 999999 !important;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;

    background-color: #E5E5E5 !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-100%) !important;

    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease !important;
    overflow: visible !important;
  }

  .header-mobile-sticky > .e-con {
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
  }

  .header-mobile-sticky > .e-con:nth-child(3) {
    flex: 1 1 auto !important;
    display: flex !important;
    justify-content: center !important;
  }

  body.mobile-sticky-header-active .header-mobile-normal {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  body.mobile-sticky-header-active .header-mobile-sticky {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }
}

/*-----------------------------*/

@media (max-width: 767px) {

  .header-mobile-sticky:not(.elementor-sticky--effects) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  .header-mobile-sticky.elementor-sticky--effects,
  .elementor-sticky--effects.header-mobile-sticky {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    pointer-events: auto !important;
    background-color: #E5E5E5 !important;
    z-index: 99999 !important;
  }
}

/*---------------------------*/

  /* Widget da busca desktop */
  .desktop-search-fibo {
    position: relative !important;
    z-index: 99999 !important;
  }

   /* Mantém o comportamento original do FiboSearch */
  .desktop-search-fibo .dgwt-wcas-search-form {
    position: absolute !important;

    top: 90px !important;
    /* Ancorado pela DIREITA do proprio icone (.dgwt-wcas-search-wrapp, que o
       PROPRIO PLUGIN ja deixa position:relative — e o containing block real
       deste form). O icone esta sempre visivel no header, entao ancorar nele
       garante que o campo nunca saia da viewport, sem precisar de nenhum
       valor fixo de left. */
    right: 0 !important;
    left: auto !important;

    width: 440px !important;
    /* O PROPRIO FiboSearch define "min-width: 500px" neste mesmo elemento
       (assets/css/style.css). min-width sempre vence width no calculo do
       browser, entao sem zerar isso aqui o campo renderizava a 500px (mais
       largo que o pretendido) mesmo com "width:440px !important" — essa era
       a causa do campo aparecer "esticado"/desalinhado da caixa de
       resultados. */
    min-width: 0 !important;
    /* Clamp de seguranca: nunca mais largo que a viewport (com respiro de
       16px de cada lado). Em janelas de desktop mais estreitas, a caixa
       encolhe em vez de vazar para fora da tela. */
    max-width: calc(100vw - 32px) !important;

    z-index: 999999 !important;
    transform: none !important;
    margin: 0 !important;
  }


  /* Remove a setinha branca do FiboSearch */
  .desktop-search-fibo .dgwt-wcas-search-icon-arrow {
    display: none !important;
  }

  /* Caixa de sugestoes (.dgwt-wcas-suggestions-wrapp) e o painel de detalhes
     (.dgwt-wcas-details-wrapp) do FiboSearch NAO sao filhos do widget: o
     proprio JS do plugin os cria com `position:absolute` (inline, em
     assets/js/search.js -> createNode()) e os anexa direto no <body>
     (appendTo padrao) — o containing block deles e a viewport, nao o icone.
     Por isso NAO usamos "right" aqui: um "right" proprio desalinharia essas
     caixas do campo de busca (que fica ancorado ao icone, nao a viewport —
     testado e confirmado no DevTools). Em vez disso deixamos o PROPRIO JS do
     plugin cuidar do alinhamento: ele ja calcula
     "left = campo.getBoundingClientRect().left" a cada abertura/digitacao
     (fixPositionSuggestions/fixPositionDetailsPanel), ou seja, a caixa de
     resultados SEMPRE nasce com o mesmo left do campo. So precisamos garantir
     que ela tenha a MESMA largura do campo (mesma constante 440px / mesmo
     clamp calc(100vw - 32px)) para que a borda direita tambem coincida —
     dai "campo e resultados formam um bloco unico", sem numeros magicos de
     alinhamento independentes. Escopado a "html:not(.dgwt-wcas-overlay-mobile-on)"
     (mesmo padrao usado pelo proprio FiboSearch) para nao afetar o overlay de
     busca mobile, que ja usa width:100%/left:0 dentro do proprio plugin. */
  html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-suggestions-wrapp,
  html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-details-wrapp {
    width: 440px !important;
    min-width: 0 !important;
    max-width: calc(100vw - 32px) !important;
  }

  /* Remove fundo branco externo */
  .desktop-search-fibo .dgwt-wcas-search-wrapp,
  .desktop-search-fibo .dgwt-wcas-search-form,
  .desktop-search-fibo .dgwt-wcas-sf-wrapp {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
  }

  /* Campo de busca */
  .desktop-search-fibo .dgwt-wcas-search-input {
    height: 46px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: none !important;
    border-radius: 999px !important;
    box-shadow: none !important;

    padding-left: 36px !important;
    padding-right: 42px !important;

    font-size: 14px !important;
  }

  /* Caixa interna do input */
  .desktop-search-fibo .dgwt-wcas-sf-wrapp {
    padding: 0 !important;
    border-radius: 999px !important;
  }

  /* Botão/lupa dentro do campo */
  .desktop-search-fibo .dgwt-wcas-search-submit {
    display: none !important;
  }

/* CALCULO DE FRETE*/

/* =====================================================
   PDP — Calculadora de frete Correios
===================================================== */

.single-product .infixs-correios-automatico-calculator {
  margin-top: 22px !important;
  font-family: "Montserrat", sans-serif !important;
  color: #1e1e1e !important;
  max-width: 320px !important;
}

.single-product .infixs-correios-automatico-calculator-title {
  font-family: "Montserrat", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: .02em !important;
  color: #1e1e1e !important;
  margin-bottom: 8px !important;
}

.single-product .infixs-correios-automatico-input-text {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 260px !important;
  border: 1px solid #1e1e1e !important;
  background: transparent !important;
  height: 42px !important;
}

.single-product .infixs-correios-automatico-input-text-prepend {
  width: 42px !important;
  min-width: 42px !important;
  color: #1e1e1e !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.single-product .infixs-correios-automatico-input-text-prepend svg {
  width: 20px !important;
  height: 20px !important;
}

.single-product .infixs-correios-automatico-input {
  height: 40px !important;
  width: 100% !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;

  font-family: "Montserrat", sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #1e1e1e !important;
  padding: 0 12px 0 0 !important;
}

.single-product .infixs-correios-automatico-input::placeholder {
  color: #1e1e1e !important;
  opacity: .75 !important;
}

.single-product .infixs-correios-automatico-calculate-find-link {
  display: inline-block !important;
  margin-top: 6px !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  color: #1e1e1e !important;
  text-decoration: none !important;
}

/* Resultado do frete */
.single-product #infixs-correios-automatico-calculate-results {
  margin-top: 14px !important;
  font-family: "Montserrat", sans-serif !important;
  color: #1e1e1e !important;
  font-size: 13px !important;
}

.single-product #infixs-correios-automatico-calculate-results * {
  font-family: "Montserrat", sans-serif !important;
}

.single-product #infixs-correios-automatico-calculate-results table {
  width: 100% !important;
  max-width: 320px !important;
  border-collapse: collapse !important;
  border: none !important;
}

.single-product #infixs-correios-automatico-calculate-results th,
.single-product #infixs-correios-automatico-calculate-results td {
  border: none !important;
  padding: 6px 0 !important;
  font-size: 13px !important;
  color: #1e1e1e !important;
  background: transparent !important;
}

.single-product #infixs-correios-automatico-calculate-results th {
  font-weight: 500 !important;
  color: #1e1e1e !important;
}

.single-product #infixs-correios-automatico-calculate-results strong,
.single-product #infixs-correios-automatico-calculate-results b {
  font-weight: 600 !important;
  color: #1e1e1e !important;
}

/* Remove azul do preço/link do resultado */
.single-product #infixs-correios-automatico-calculate-results a,
.single-product #infixs-correios-automatico-calculate-results span {
  color: #1e1e1e !important;
}

/* Frete — remove azul dos valores */
.single-product #infixs-correios-automatico-calculate-results,
.single-product #infixs-correios-automatico-calculate-results * {
  color: #1E1E1E !important;
}

.single-product #infixs-correios-automatico-calculate-results a,
.single-product #infixs-correios-automatico-calculate-results span,
.single-product #infixs-correios-automatico-calculate-results strong,
.single-product #infixs-correios-automatico-calculate-results b {
  color: #1E1E1E !important;
}

/* Mobile */
@media (max-width: 767px) {
  .single-product .infixs-correios-automatico-calculator {
    max-width: 100% !important;
  }

  .single-product .infixs-correios-automatico-input-text {
    max-width: 100% !important;
  }
}
/* =====================================================
   PDP — ajustes WooCommerce/Variation Swatches
   Mantido escopado em .single-product para não afetar
   archive, carrinho, checkout ou outros plugins.
===================================================== */

.single-product {
  --exclusive-pdp-text: #1E1E1E;
  --exclusive-pdp-action-width: min(100%, 260px);
  --pdp-attr-label-color: #1E1E1E;
  --pdp-attr-value-color: #1E1E1E;
}

/* Textos dos atributos/variações */
.single-product form.variations_form .variations,
.single-product form.variations_form .variations th,
.single-product form.variations_form .variations td,
.single-product form.variations_form .variations .label,
.single-product form.variations_form .variations .label *,
.single-product form.variations_form .variations td.value,
.single-product form.variations_form .variations td.value *,
.single-product .vi-wpvs-label-selected,
.single-product .vi-wpvs-label-selected-title,
.single-product .vi-wpvs-variation-button-select,
.single-product .vi-wpvs-variation-button-select > span,
.single-product .vi-wpvs-option-wrap .vi-wpvs-option-button,
.single-product .vi-wpvs-option-wrap .vi-wpvs-option-select,
.single-product .vi_variation_attr_name,
.single-product .woo-selected-variation-item-name,
.single-product .woo-variation-items-wrapper .variable-item .variable-item-span {
  color: var(--exclusive-pdp-text) !important;
}

.single-product .vi-wpvs-variation-wrap-show-attribute-value .vi-wpvs-option-wrap::after {
  color: var(--exclusive-pdp-text) !important;
}

/* Remove o bloco duplicado de preço da variação;
   o preço principal abaixo do título continua visível. */
.single-product .summary .woocommerce-variation-price,
.single-product .summary .single_variation .woocommerce-variation-price {
  display: none !important;
}

/* Campo de CEP com a largura de acao (o botao e tratado no bloco abaixo). */
.single-product .infixs-correios-automatico-input-text {
  width: var(--exclusive-pdp-action-width) !important;
}

.single-product .woocommerce-variation-add-to-cart,
.single-product form.cart:not(.variations_form) {
  align-items: flex-start;
}

/* O widget de Add-to-Cart do Elementor usa layout "stacked" + alinhamento
   centralizado, que encolhe a cadeia form > single_variation_wrap >
   woocommerce-variation-add-to-cart > e-atc-qty-button-holder a largura do
   CONTEUDO. Por isso width:100%/min(100%,260px) no botao nao surtia efeito
   (resolvia contra um pai colapsado ~166px). Forcamos os wrappers a ocupar a
   largura total para o botao acompanhar a largura de acao (= campo de CEP). */
.single-product .elementor-widget-woocommerce-product-add-to-cart .elementor-add-to-cart,
.single-product .elementor-widget-woocommerce-product-add-to-cart form.cart,
.single-product .elementor-widget-woocommerce-product-add-to-cart .single_variation_wrap,
.single-product .elementor-widget-woocommerce-product-add-to-cart .woocommerce-variation-add-to-cart,
.single-product .elementor-widget-woocommerce-product-add-to-cart .e-atc-qty-button-holder {
  width: 100% !important;
  max-width: 100% !important;
  justify-content: flex-start !important;
}

/* O botao ocupa toda a linha do holder (flex), respeitando a largura de acao
   via max-width no desktop; no mobile a media query abaixo libera 100%. */
.single-product .elementor-widget-woocommerce-product-add-to-cart .e-atc-qty-button-holder .single_add_to_cart_button {
  flex: 1 1 100% !important;
}

.single-product form.cart .single_add_to_cart_button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: var(--exclusive-pdp-action-width) !important;
  min-height: 42px !important;
  padding: 10px 18px !important;
  border: 1px solid var(--exclusive-pdp-text) !important;
  background: #fff !important;
  color: var(--exclusive-pdp-text) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  float: none !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

.single-product form.cart .single_add_to_cart_button:hover,
.single-product form.cart .single_add_to_cart_button:focus {
  background: #fff !important;
  color: var(--exclusive-pdp-text) !important;
  border-color: var(--exclusive-pdp-text) !important;
}

@media (max-width: 768px) {
  /* Correção mínima da galeria mobile:
     desfaz o hack de 100vw e mantém o FlexSlider operando. */
  .single-product div.product div.images,
  .single-product div.product .woocommerce-product-gallery {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .single-product div.product .woocommerce-product-gallery {
    gap: 10px !important;
  }

  .single-product div.product .woocommerce-product-gallery .flex-viewport {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__image {
    display: block !important;
  }

  .single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a,
  .single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
    height: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  .single-product .exclusive-product-gallery-dots {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.00);
    backdrop-filter: blur(2px);
  }

  .single-product .exclusive-product-gallery-dot {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: rgba(30, 30, 30, 0.28);
    cursor: pointer;
  }

  .single-product .exclusive-product-gallery-dot.is-active {
    background: rgba(30, 30, 30, 0.92);
  }
}

@media (min-width: 769px) {
  .single-product .exclusive-product-gallery-dots {
    display: none !important;
  }
}

/* =====================================================
   PDP — refinamentos finais de variação/CTA
   Sobrescreve apenas estados visuais da single product.
===================================================== */

/* Oculta qualquer preço duplicado dentro da área de variações/add to cart,
   preservando apenas o preço principal abaixo do título. */
.single-product .summary form.variations_form .woocommerce-variation-price,
.single-product .summary form.variations_form .woocommerce-variation-price .price,
.single-product .summary form.variations_form .woocommerce-variation-price ins,
.single-product .summary form.variations_form .woocommerce-variation-price del,
.single-product .summary form.variations_form .single_variation .price,
.single-product .summary form.variations_form .single_variation .price *,
.single-product .summary form.variations_form .woocommerce-variation .price,
.single-product .summary form.variations_form .woocommerce-variation .price *,
.single-product .summary form.variations_form .woocommerce-variation .woocommerce-variation-price,
.single-product .summary form.variations_form .woocommerce-variation .woocommerce-variation-price * {
  display: none !important;
}

/* Swatches de tamanho */
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap {
  border: 1px solid #1E1E1E !important;
  background: transparent !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap .vi-wpvs-option-button {
  color: #1E1E1E !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap:hover {
  background: #1E1E1E !important;
  border-color: #1E1E1E !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap:hover .vi-wpvs-option-button {
  color: #E5E5E5 !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap.vi-wpvs-option-wrap-selected {
  background: #1E1E1E !important;
  border-color: #1E1E1E !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap.vi-wpvs-option-wrap-selected .vi-wpvs-option-button,
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap.vi-wpvs-option-wrap-selected .vi-wpvs-option,
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap.vi-wpvs-option-wrap-selected::after {
  color: #E5E5E5 !important;
}

/* Swatches de cor: mantém preenchimento e corrige só o contorno */
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap,
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap .vi-wpvs-option.vi-wpvs-option-color {
  border-color: #1E1E1E !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap .vi-wpvs-option.vi-wpvs-option-color {
  border: 1px solid #1E1E1E !important;
}

/* CTA: hover/focus/active escuros */
.single-product form.cart .single_add_to_cart_button:hover,
.single-product form.cart .single_add_to_cart_button:focus,
.single-product form.cart .single_add_to_cart_button:active {
  background: #1E1E1E !important;
  color: #E5E5E5 !important;
  border-color: #1E1E1E !important;
}

@media (max-width: 768px) {
  .single-product .infixs-correios-automatico-calculator {
    width: 100% !important;
    max-width: none !important;
  }

  .single-product .infixs-correios-automatico-input-text,
  .single-product .infixs-correios-automatico-input,
  .single-product form.cart .single_add_to_cart_button {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* =====================================================
   PDP — acabamento final de preco, swatches e tooltip
===================================================== */

/* Preco principal com HTML completo de del/ins no estilo da loja */
.single-product .summary .exclusive-main-price-target,
.single-product .summary .exclusive-main-price-target .amount,
.single-product .summary .exclusive-main-price-target ins,
.single-product .summary .exclusive-main-price-target ins .amount,
.single-product .summary .exclusive-main-price-target bdi {
  color: #1E1E1E !important;
}

.single-product .summary .exclusive-main-price-target del,
.single-product .summary .exclusive-main-price-target del .amount,
.single-product .summary .exclusive-main-price-target del bdi {
  color: #9A916F !important;
}

.single-product .summary .exclusive-main-price-target ins {
  background: transparent !important;
  text-decoration: none !important;
}

/* Esconde definitivamente o preco dinamico da area da variacao */
.single-product .summary form.variations_form .single_variation .woocommerce-variation-price,
.single-product .summary form.variations_form .single_variation .price,
.single-product .summary form.variations_form .woocommerce-variation .woocommerce-variation-price,
.single-product .summary form.variations_form .woocommerce-variation > .price,
.single-product .summary form.variations_form .woocommerce-variation > span.price {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

/* Tamanhos: borda unica no elemento interno */
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap::before,
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap::after {
  display: none !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap .vi-wpvs-option-button {
  border: 1px solid #1E1E1E !important;
  background: #E5E5E5 !important;
  color: #1E1E1E !important;
  box-shadow: none !important;
  outline: none !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap:hover .vi-wpvs-option-button,
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap.vi-wpvs-option-wrap-selected .vi-wpvs-option-button {
  background: #1E1E1E !important;
  color: #E5E5E5 !important;
  border-color: #1E1E1E !important;
}

/* Cores: remove anel/borda dupla e preserva o preenchimento */
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap::before,
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap::after {
  display: none !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap .vi-wpvs-option.vi-wpvs-option-color {
  border: 1px solid #1E1E1E !important;
  box-shadow: none !important;
  outline: none !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-selected .vi-wpvs-option.vi-wpvs-option-color,
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap:hover .vi-wpvs-option.vi-wpvs-option-color {
  border-color: #1E1E1E !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Tooltip da cor */
.single-product .vi-wpvs-variation-wrap .vi-wpvs-option-wrap .vi-wpvs-option-tooltip {
  background: #1E1E1E !important;
  border: 1px solid #1E1E1E !important;
  color: #E5E5E5 !important;
  box-shadow: none !important;
}

.single-product .vi-wpvs-variation-wrap .vi-wpvs-option-wrap .vi-wpvs-option-tooltip span {
  color: #E5E5E5 !important;
}

.single-product .vi-wpvs-variation-wrap .vi-wpvs-option-wrap .vi-wpvs-option-tooltip::before {
  display: none !important;
}

.single-product .vi-wpvs-variation-wrap .vi-wpvs-option-wrap .vi-wpvs-option-tooltip-top::after {
  border-style: solid !important;
  border-width: 6px 6px 0 6px !important;
  border-color: #1E1E1E transparent transparent transparent !important;
}

.single-product .vi-wpvs-variation-wrap .vi-wpvs-option-wrap .vi-wpvs-option-tooltip-bottom::after {
  border-style: solid !important;
  border-width: 0 6px 6px 6px !important;
  border-color: transparent transparent #1E1E1E transparent !important;
}

.single-product .vi-wpvs-variation-wrap .vi-wpvs-option-wrap .vi-wpvs-option-tooltip-left::after {
  border-style: solid !important;
  border-width: 6px 0 6px 6px !important;
  border-color: transparent transparent transparent #1E1E1E !important;
}

.single-product .vi-wpvs-variation-wrap .vi-wpvs-option-wrap .vi-wpvs-option-tooltip-right::after {
  border-style: solid !important;
  border-width: 6px 6px 6px 0 !important;
  border-color: transparent #1E1E1E transparent transparent !important;
}

/* =====================================================
   PDP — ajuste fino apos revisao visual
===================================================== */

/* Preco principal: remove tom oliva e aplica contraste do site */
.single-product .summary .exclusive-main-price-target,
.single-product .summary .exclusive-main-price-target .price,
.single-product .summary .exclusive-main-price-target .amount,
.single-product .summary .exclusive-main-price-target ins,
.single-product .summary .exclusive-main-price-target ins .amount,
.single-product .summary .exclusive-main-price-target ins bdi,
.single-product .summary .exclusive-main-price-target .woocommerce-Price-currencySymbol {
  color: #1E1E1E !important;
}

.single-product .summary .exclusive-main-price-target del,
.single-product .summary .exclusive-main-price-target del .amount,
.single-product .summary .exclusive-main-price-target del bdi,
.single-product .summary .exclusive-main-price-target del .woocommerce-Price-currencySymbol {
  color: #8E8E8E !important;
}

/* Tamanhos: largura e altura consistentes */
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap .vi-wpvs-option-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 42px !important;
  height: 42px !important;
  padding: 0 12px !important;
  line-height: 1 !important;
}

/* =====================================================
   PDP — correcoes finais apos novo print
===================================================== */

/* Esconde qualquer preco renderizado dentro do wrap dinamico da variacao */
.single-product .summary form.variations_form .single_variation_wrap .price,
.single-product .summary form.variations_form .single_variation_wrap .price *,
.single-product .summary form.variations_form .single_variation_wrap .woocommerce-variation-price,
.single-product .summary form.variations_form .single_variation_wrap .woocommerce-variation-price *,
.single-product .summary form.variations_form .single_variation_wrap .woocommerce-variation,
.single-product .summary form.variations_form .single_variation_wrap .woocommerce-variation > *:not(.woocommerce-variation-add-to-cart) {
  color: transparent !important;
}

.single-product .summary form.variations_form .single_variation_wrap .price,
.single-product .summary form.variations_form .single_variation_wrap .woocommerce-variation-price,
.single-product .summary form.variations_form .single_variation_wrap .woocommerce-variation > .price,
.single-product .summary form.variations_form .single_variation_wrap .woocommerce-variation > span.price {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

/* Preco principal sempre nas cores corretas quando a variacao atualiza */
.single-product .summary .exclusive-main-price-target,
.single-product .summary .exclusive-main-price-target *,
.single-product .summary .price.exclusive-main-price-target,
.single-product .summary .price.exclusive-main-price-target * {
  color: #1E1E1E !important;
}

.single-product .summary .exclusive-main-price-target del,
.single-product .summary .exclusive-main-price-target del *,
.single-product .summary .price.exclusive-main-price-target del,
.single-product .summary .price.exclusive-main-price-target del * {
  color: #8E8E8E !important;
}

/* Tamanho rigidamente quadrado */
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap {
  width: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  height: 42px !important;
  flex: 0 0 42px !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap .vi-wpvs-option-button {
  width: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  height: 42px !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* =====================================================
   PDP — ajuste fino do tooltip das cores
===================================================== */
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap .vi-wpvs-option-tooltip,
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap:hover .vi-wpvs-option-tooltip {
  background: #1E1E1E !important;
  border-color: #1E1E1E !important;
  color: #E5E5E5 !important;
  padding: 8px 10px !important;
  min-width: 0 !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap .vi-wpvs-option-tooltip span {
  color: #E5E5E5 !important;
  font-size: 13px !important;
  line-height: 0.7 !important;
  font-weight: 400 !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap .vi-wpvs-option-tooltip-top::after {
  border-color: #1E1E1E transparent transparent transparent !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap .vi-wpvs-option-tooltip-bottom::after {
  border-color: transparent transparent #1E1E1E transparent !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap .vi-wpvs-option-tooltip-left::after {
  border-color: transparent transparent transparent #1E1E1E !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap .vi-wpvs-option-tooltip-right::after {
  border-color: transparent #1E1E1E transparent transparent !important;
}

/* =====================================================
   PDP — ajuste final tooltip e CTA
===================================================== */
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap .vi-wpvs-option-tooltip,
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap .vi-wpvs-option-tooltip span {
  background: #1E1E1E !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap .vi-wpvs-option-tooltip span {
  color: #E5E5E5 !important;
  font-size: 13px !important;
  line-height: 1.15 !important;
  background-image: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  padding: 0 !important;
}

.single-product form.cart .single_add_to_cart_button {
  background: #1E1E1E !important;
  color: #E5E5E5 !important;
  border-color: #1E1E1E !important;
}

.single-product form.cart .single_add_to_cart_button:hover,
.single-product form.cart .single_add_to_cart_button:focus,
.single-product form.cart .single_add_to_cart_button:active {
  background: #E5E5E5 !important;
  color: #1E1E1E !important;
  border-color: #1E1E1E !important;
}

/* PDP — ajuste fino de entrelinha do tooltip */
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap .vi-wpvs-option-tooltip span {
  line-height: 1 !important;
}

/* PDP — ajuste forte de entrelinha do tooltip */
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap .vi-wpvs-option-tooltip {
  line-height: 1.1 !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap .vi-wpvs-option-tooltip span {
  display: block !important;
  line-height: 1.1 !important;
}

/* PDP — oculta disponibilidade da variacao */
.single-product .summary form.variations_form .woocommerce-variation-availability,
.single-product .summary form.variations_form .woocommerce-variation-availability *,
.single-product .summary form.variations_form .availability,
.single-product .summary form.variations_form .availability *,
.single-product .summary form.variations_form .stock,
.single-product .summary form.variations_form .stock.in-stock {
  display: none !important;
}

/* PDP — hide forte do p.stock.in-stock */
.single-product .summary form.variations_form .single_variation_wrap p.stock.in-stock,
.single-product .summary form.variations_form .single_variation_wrap p.stock,
.single-product .summary form.variations_form .single_variation_wrap .stock.in-stock,
.single-product .summary form.variations_form .single_variation_wrap .stock {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* PDP — hide garantido da disponibilidade da variacao */
.single-product .woocommerce-variation-availability,
.single-product .woocommerce-variation-availability p.stock.in-stock,
.single-product .single_variation .woocommerce-variation-availability,
.single-product .single_variation_wrap .woocommerce-variation-availability,
.single-product form.variations_form .woocommerce-variation-availability,
.single-product form.variations_form .woocommerce-variation-availability * {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
}

/* PDP — destaque breve quando o sticky ATC precisa de selecao */
.single-product .exclusive-sticky-atc-focus {
  outline: 2px solid rgba(30, 30, 30, 0.18) !important;
  outline-offset: 10px !important;
  transition: outline-color 0.25s ease !important;
}

/* PDP — feedback visual do swatch de cor selecionado */
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap,
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap::before,
.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap::after {
  box-shadow: none !important;
  outline: 0 !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap .vi-wpvs-option.vi-wpvs-option-color {
  position: relative !important;
  overflow: hidden !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-selected .vi-wpvs-option.vi-wpvs-option-color::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  z-index: 2;
  pointer-events: none;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-selected .vi-wpvs-option.vi-wpvs-option-color.exclusive-swatch-light::after {
  color: #1E1E1E !important;
}

.single-product .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-selected .vi-wpvs-option.vi-wpvs-option-color.exclusive-swatch-dark::after {
  color: #E5E5E5 !important;
}

@media (max-width: 768px) {
  .single-product .exclusive-product-gallery-dots {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
}

/* PDP — Elementor: mantém apenas o preço principal acima do formulário */
.single-product .elementor-widget-woocommerce-product-price .exclusive-main-price-target,
.single-product .elementor-widget-woocommerce-product-price .exclusive-main-price-target *,
.single-product .elementor-widget-woocommerce-product-price .price.exclusive-main-price-target,
.single-product .elementor-widget-woocommerce-product-price .price.exclusive-main-price-target * {
  color: #1E1E1E !important;
}

.single-product .elementor-widget-woocommerce-product-price .exclusive-main-price-target del,
.single-product .elementor-widget-woocommerce-product-price .exclusive-main-price-target del *,
.single-product .elementor-widget-woocommerce-product-price .price.exclusive-main-price-target del,
.single-product .elementor-widget-woocommerce-product-price .price.exclusive-main-price-target del * {
  color: #8E8E8E !important;
}

.single-product .elementor-widget-woocommerce-product-add-to-cart form.variations_form .single_variation_wrap .price,
.single-product .elementor-widget-woocommerce-product-add-to-cart form.variations_form .single_variation_wrap .price *,
.single-product .elementor-widget-woocommerce-product-add-to-cart form.variations_form .single_variation_wrap .woocommerce-variation-price,
.single-product .elementor-widget-woocommerce-product-add-to-cart form.variations_form .single_variation_wrap .woocommerce-variation-price *,
.single-product .elementor-widget-woocommerce-product-add-to-cart form.variations_form .single_variation_wrap .woocommerce-variation,
.single-product .elementor-widget-woocommerce-product-add-to-cart form.variations_form .single_variation_wrap .woocommerce-variation > *:not(.woocommerce-variation-add-to-cart) {
  color: transparent !important;
}

.single-product .elementor-widget-woocommerce-product-add-to-cart form.variations_form .single_variation_wrap .price,
.single-product .elementor-widget-woocommerce-product-add-to-cart form.variations_form .single_variation_wrap .woocommerce-variation-price,
.single-product .elementor-widget-woocommerce-product-add-to-cart form.variations_form .single_variation_wrap .woocommerce-variation > .price,
.single-product .elementor-widget-woocommerce-product-add-to-cart form.variations_form .single_variation_wrap .woocommerce-variation > span.price {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

/* PDP mobile - preserva o preco principal no bloco mobile do Elementor */
@media (max-width: 768px) {
  .single-product .elementor-hidden-desktop.elementor-hidden-tablet .elementor-widget-woocommerce-product-price {
    display: block !important;
    width: 100% !important;
  }

  .single-product .elementor-hidden-desktop.elementor-hidden-tablet .elementor-widget-woocommerce-product-price .price {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .single-product .elementor-hidden-desktop.elementor-hidden-tablet .elementor-widget-woocommerce-product-price .epr-price {
    display: flex !important;
  }
}

/* =====================================================
   PDP — Preco PIX e parcelamento
===================================================== */
.single-product .elementor-widget-woocommerce-product-price .exclusive-price-block,
.single-product .exclusive-main-price-target .exclusive-price-block {
  margin: 0 0 28px;
  font-family: "Montserrat", sans-serif;
  color: #1E1E1E;
}

.single-product .elementor-widget-woocommerce-product-price .exclusive-pix-line,
.single-product .exclusive-main-price-target .exclusive-pix-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.15;
  flex-wrap: wrap;
}

.single-product .elementor-widget-woocommerce-product-price .exclusive-pix-price,
.single-product .exclusive-main-price-target .exclusive-pix-price,
.single-product .elementor-widget-woocommerce-product-price .exclusive-sale-price,
.single-product .exclusive-main-price-target .exclusive-sale-price {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #1E1E1E !important;
}

.single-product .elementor-widget-woocommerce-product-price .exclusive-pix-label,
.single-product .exclusive-main-price-target .exclusive-pix-label,
.single-product .elementor-widget-woocommerce-product-price .exclusive-installment-prefix,
.single-product .exclusive-main-price-target .exclusive-installment-prefix {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #5E5E5E !important;
}

.single-product .elementor-widget-woocommerce-product-price .exclusive-installment-line,
.single-product .exclusive-main-price-target .exclusive-installment-line {
  margin-top: 6px;
  line-height: 1;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #5E5E5E !important;
}

.single-product .elementor-widget-woocommerce-product-price .exclusive-installment-suffix,
.single-product .exclusive-main-price-target .exclusive-installment-suffix {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #5E5E5E !important;
}


.single-product .elementor-widget-woocommerce-product-price .exclusive-installment-price,
.single-product .exclusive-main-price-target .exclusive-installment-price {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #1E1E1E !important;
}

.single-product .elementor-widget-woocommerce-product-price .exclusive-regular-price,
.single-product .exclusive-main-price-target .exclusive-regular-price {
  margin-bottom: 6px;
  font-size: 15px !important;
  color: #8E8E8E !important;
}

@media (max-width: 767px) {
  .single-product .elementor-widget-woocommerce-product-price .exclusive-price-block,
  .single-product .exclusive-main-price-target .exclusive-price-block {
    margin-bottom: 22px;
  }

  .single-product .elementor-widget-woocommerce-product-price .exclusive-pix-line,
  .single-product .exclusive-main-price-target .exclusive-pix-line {
    gap: 6px;
  }

  .single-product .elementor-widget-woocommerce-product-price .exclusive-pix-price,
  .single-product .exclusive-main-price-target .exclusive-pix-price,
  .single-product .elementor-widget-woocommerce-product-price .exclusive-sale-price,
  .single-product .exclusive-main-price-target .exclusive-sale-price {
    font-size: 23px !important;
  }

  .single-product .elementor-widget-woocommerce-product-price .exclusive-pix-label,
  .single-product .exclusive-main-price-target .exclusive-pix-label,
  .single-product .elementor-widget-woocommerce-product-price .exclusive-installment-prefix,
  .single-product .exclusive-main-price-target .exclusive-installment-prefix,
  .single-product .elementor-widget-woocommerce-product-price .exclusive-installment-suffix,
  .single-product .exclusive-main-price-target .exclusive-installment-suffix,
  .single-product .elementor-widget-woocommerce-product-price .exclusive-installment-price,
  .single-product .exclusive-main-price-target .exclusive-installment-price,
  .single-product .elementor-widget-woocommerce-product-price .exclusive-regular-price,
  .single-product .exclusive-main-price-target .exclusive-regular-price {
    font-size: 15px !important;
  }
}

@media (max-width: 768px) {
  .single-product .epr-sticky-price-slot .epr-pix-label,
  .single-product .epr-sticky-price-slot .epr-installment-line,
  .single-product .epr-sticky-price-slot .epr-regular-price {
    display: none !important;
  }

  .single-product .epr-sticky-price-slot,
  .single-product .epr-sticky-price-slot .epr-price {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    line-height: 1 !important;
  }

  .single-product .epr-sticky-price-slot .epr-pix-price,
  .single-product .epr-sticky-price-slot .epr-pix-price .amount,
  .single-product .epr-sticky-price-slot .epr-pix-price .woocommerce-Price-currencySymbol,
  .single-product .epr-sticky-price-slot .epr-sale-price,
  .single-product .epr-sticky-price-slot .epr-sale-price .amount,
  .single-product .epr-sticky-price-slot .epr-sale-price .woocommerce-Price-currencySymbol,
  .single-product .epr-sticky-price-slot .epr-notify-me {
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
  }
}

/* =====================================================
   PDP/Cards — Preco simplificado
===================================================== */
.exclusive-simple-price {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #1E1E1E;
}

.single-product .exclusive-simple-price {
  font-size: 16px;
}

@media (max-width: 767px) {
  .exclusive-simple-price {
    font-size: 14px;
  }
}

/* Indicacao "no Pix" abaixo do preco nos cards dos carrosseis da HOME.
   Escopado a .home .e-loop-item (a mesma classe .exclusive-simple-price e usada
   na PDP, onde o rotulo Pix ja aparece — por isso nao pode ser global). O preco
   vira inline-block e o rotulo (::after em bloco) fica centralizado em relacao
   a largura do preco, independente do alinhamento do card. */
.home .e-loop-item .exclusive-simple-price {
  display: inline-block;
}

.home .e-loop-item .exclusive-simple-price::after {
  content: "no Pix";
  display: block;
  margin-top: 2px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  color: #9a9a9a;
  text-align: center;
}

/* =====================================================
   WooCommerce Cart
===================================================== */
.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart_totals,
.woocommerce-cart .shop_table.cart,
.woocommerce-cart .shop_table.cart input,
.woocommerce-cart .shop_table.cart button,
.woocommerce-cart .cart_totals,
.woocommerce-cart .cart_totals button,
.woocommerce-cart .cart_totals .button {
  font-family: "Montserrat", sans-serif;
}

.woocommerce-cart .shop_table.cart td.actions {
  padding-top: 24px;
}

.woocommerce-cart .shop_table.cart td.actions .coupon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 680px;
  float: none;
}

.woocommerce-cart .shop_table.cart td.actions .coupon label {
  display: none;
}

.woocommerce-cart .shop_table.cart td.actions .coupon input#coupon_code,
.woocommerce-cart .shop_table.cart td.actions .coupon input#coupon_code.input-text {
  display: block !important;
  float: none;
  width: 100% !important;
  height: 48px;
  min-width: 0;
  min-height: 48px;
  max-height: 48px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid #1E1E1E;
  border-radius: 0;
  background: #FFFFFF;
  background-image: none;
  box-shadow: none;
  outline: 0;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 46px;
  vertical-align: top;
  color: #1E1E1E;
  align-self: stretch;
}

.woocommerce-cart .shop_table.cart td.actions .coupon input#coupon_code:focus {
  border-color: #1E1E1E;
  box-shadow: none;
}

.woocommerce-cart .shop_table.cart td.actions .coupon .button,
.woocommerce-cart .shop_table.cart td.actions > .button,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid #1E1E1E;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  line-height: 1.2;
  vertical-align: top;
}

.woocommerce-cart .shop_table.cart td.actions .coupon .button {
  width: 180px;
  margin: 0;
  align-self: stretch;
}

@media (min-width: 768px) {
  .woocommerce-cart .shop_table.cart th.product-quantity,
  .woocommerce-cart .shop_table.cart td.product-quantity,
  .woocommerce-cart .shop_table.cart th.product-subtotal,
  .woocommerce-cart .shop_table.cart td.product-subtotal {
    display: none;
  }}

@media (max-width: 767px) {
  .woocommerce-cart .shop_table.cart td.actions {
    padding-top: 18px;
  }

  .woocommerce-cart .shop_table.cart td.actions .coupon {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: none;
  }

  .woocommerce-cart .shop_table.cart td.actions .coupon input#coupon_code,
  .woocommerce-cart .shop_table.cart td.actions .coupon .button,
  .woocommerce-cart .shop_table.cart td.actions > .button,
  .woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    width: 100%;
  }

  .woocommerce-cart .shop_table.cart td.actions .coupon .button {
    flex: 1 1 auto;
  }

  .woocommerce-cart table.shop_table_responsive thead,
  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-quantity,
  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-subtotal {
    display: none !important;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) auto;
    grid-template-areas:
      "thumb name remove"
      "thumb price remove";
    gap: 10px 14px;
    position: relative;
    padding: 18px 0;
    border-bottom: 1px solid rgba(30, 30, 30, 0.12);
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item td {
    display: block !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item td::before {
    display: none !important;
    content: none !important;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-thumbnail {
    display: block !important;
    grid-area: thumb;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-thumbnail a,
  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-thumbnail img {
    display: block;
    width: 100%;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-thumbnail img {
    height: auto;
    object-fit: cover;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-name {
    grid-area: name;
    align-self: end;
    min-width: 0;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-name a {
    display: block;
    color: #1E1E1E;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-price {
    grid-area: price;
    align-self: start;
    color: #1E1E1E;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-remove {
    grid-area: remove;
    align-self: start;
    justify-self: end;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-remove a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #1E1E1E !important;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
  }

  .woocommerce-cart .cart_totals {
    width: 100%;
  }
}

/* =====================================================
   WooCommerce Checkout
===================================================== */

/* =====================================================
   Checkout — variaveis visuais
   Limite tecnico: os campos principais do Asaas sao HTML normal
   e estao acessiveis por CSS. Se algum gateway futuro usar iframe,
   apenas o container externo podera ser estilizado aqui.
===================================================== */
.woocommerce-checkout {
  --exclusive-checkout-dark: #1E1E1E;
  --exclusive-checkout-light: #E5E5E5;
  --exclusive-checkout-border: #D8D8D8;
  --exclusive-checkout-muted: #5E5E5E;
  --exclusive-checkout-bg: #FFFFFF;
  --exclusive-checkout-soft-bg: #F7F7F7;

  --exclusive-checkout-input-height: 46px;
  --exclusive-checkout-button-height: 48px;
  --exclusive-checkout-card-radius: 8px;
  --exclusive-checkout-card-padding: 20px;
  --exclusive-checkout-card-padding-mobile: 14px;
  --exclusive-checkout-field-gap: 10px;
  --exclusive-checkout-section-gap: 12px;

  --fluidcheckout--color--success: var(--exclusive-checkout-dark);
  --fluidcheckout--checkout-progress--background-color: var(--exclusive-checkout-bg);
  --fluidcheckout--checkout-progress--bar-color: var(--exclusive-checkout-border);
  --fluidcheckout--checkout-progress--bar-color--complete: var(--exclusive-checkout-dark);
  --fluidcheckout--checkout-progress--bar-color--current: var(--exclusive-checkout-dark);
  --fluidcheckout--checkout-progress--step-count--text-color: var(--exclusive-checkout-dark);
  --fluidcheckout--section--border-radius: var(--exclusive-checkout-card-radius);
  --fluidcheckout--section--border-color: var(--exclusive-checkout-border);
  --fluidcheckout--section--background-color: var(--exclusive-checkout-bg);
  --fluidcheckout--option-box--background-color: var(--exclusive-checkout-bg);
  --fluidcheckout--option-box--background-color--checked: var(--exclusive-checkout-bg);
  --fluidcheckout--option-box--background-color--hover: var(--exclusive-checkout-soft-bg);
  --fluidcheckout--option-box--label-border-color: var(--exclusive-checkout-border);
  --fluidcheckout--option-box--label-border-color--checked: var(--exclusive-checkout-border);
  --fluidcheckout--option-box--radio-color: var(--exclusive-checkout-border);
  --fluidcheckout--option-box--radio-color--checked: var(--exclusive-checkout-dark);
  --fluidcheckout--option-box--radio-color--hover: var(--exclusive-checkout-dark);
  --fluidcheckout--option-box--radio-icon-color--checked: var(--exclusive-checkout-light);
}

/* =====================================================
   Checkout — tipografia geral
===================================================== */
.woocommerce-checkout .fc-wrapper,
.woocommerce-checkout .fc-wrapper input,
.woocommerce-checkout .fc-wrapper select,
.woocommerce-checkout .fc-wrapper textarea,
.woocommerce-checkout .fc-wrapper button,
.woocommerce-checkout .fc-wrapper label,
.woocommerce-checkout .fc-wrapper .amount,
.woocommerce-checkout .fc-wrapper .woocommerce-Price-amount,
.woocommerce-checkout .fc-wrapper .woocommerce-Price-currencySymbol,
.woocommerce-checkout .fc-wrapper .fc-step__substep-text,
.woocommerce-checkout .fc-wrapper .fc-step__substep-text-line,
.woocommerce-checkout .fc-wrapper .fc-step__substep-edit,
.woocommerce-checkout .fc-wrapper .fc-step__substep-save,
.woocommerce-checkout .fc-wrapper .fc-progress-bar,
.woocommerce-checkout .fc-wrapper .fc-progress-bar *,
.woocommerce-checkout .fc-wrapper .shop_table,
.woocommerce-checkout .fc-wrapper .shop_table th,
.woocommerce-checkout .fc-wrapper .shop_table td,
.woocommerce-checkout .fc-wrapper .payment_box,
.woocommerce-checkout .fc-wrapper .wc_payment_methods,
.woocommerce-checkout .fc-wrapper .woocommerce-privacy-policy-text,
.woocommerce-checkout .fc-wrapper .woocommerce-terms-and-conditions-wrapper {
  font-family: "Montserrat", sans-serif;
}

.woocommerce-checkout .fc-wrapper .fc-step__substep,
.woocommerce-checkout .fc-wrapper .fc-step__substep-fields,
.woocommerce-checkout .fc-wrapper .fc-step__substep-text,
.woocommerce-checkout .fc-wrapper .payment_box,
.woocommerce-checkout .fc-wrapper .fc-payment-methods__wrapper,
.woocommerce-checkout .fc-wrapper .woocommerce-form__label,
.woocommerce-checkout .fc-wrapper .shop_table,
.woocommerce-checkout .fc-wrapper .shop_table td,
.woocommerce-checkout .fc-wrapper .shop_table th {
  color: var(--exclusive-checkout-dark);
}

.woocommerce-checkout .fc-wrapper .fc-step__substep .fc-step__substep-title,
.woocommerce-checkout .fc-wrapper .fc-checkout-order-review-title,
.woocommerce-checkout .fc-wrapper h3,
.woocommerce-checkout .fc-wrapper h4 {
  color: var(--exclusive-checkout-dark);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.woocommerce-checkout .fc-wrapper .form-row label,
.woocommerce-checkout .fc-wrapper .woocommerce-form__label,
.woocommerce-checkout .fc-wrapper .payment_box label,
.woocommerce-checkout .fc-wrapper .asaas-label label,
.woocommerce-checkout .fc-wrapper #payment label {
  color: var(--exclusive-checkout-dark);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

/* =====================================================
   Checkout — links
===================================================== */
.woocommerce-checkout .fc-wrapper a,
.woocommerce-checkout .fc-wrapper a:visited,
.woocommerce-checkout .fc-wrapper .fc-step__substep-edit,
.woocommerce-checkout .fc-wrapper .fc-step__substep-save,
.woocommerce-checkout .fc-wrapper .woocommerce-terms-and-conditions-link,
.woocommerce-checkout .fc-wrapper .woocommerce-privacy-policy-link,
.woocommerce-checkout .fc-wrapper .woocommerce-remove-coupon,
.woocommerce-checkout .fc-wrapper .showcoupon,
.woocommerce-checkout .fc-wrapper .fc-coupon-code__apply,
.woocommerce-checkout .fc-wrapper .fc-coupon-code__cancel,
.woocommerce-checkout .fc-wrapper .shipping_address a,
.woocommerce-checkout .fc-wrapper .shipping-method__option-label a {
  color: var(--exclusive-checkout-dark) !important;
  font-weight: 600;
  text-decoration: none;
}

.woocommerce-checkout .fc-wrapper a:hover,
.woocommerce-checkout .fc-wrapper a:focus,
.woocommerce-checkout .fc-wrapper a:active,
.woocommerce-checkout .fc-wrapper .fc-step__substep-edit:hover,
.woocommerce-checkout .fc-wrapper .fc-step__substep-save:hover,
.woocommerce-checkout .fc-wrapper .woocommerce-terms-and-conditions-link:hover,
.woocommerce-checkout .fc-wrapper .woocommerce-privacy-policy-link:hover {
  color: var(--exclusive-checkout-dark) !important;
  text-decoration: underline;
}

/* =====================================================
   Checkout — barra de progresso
===================================================== */
.woocommerce-checkout .fc-progress-bar .fc-progress-bar__inner {
  background: var(--exclusive-checkout-bg);
}

.woocommerce-checkout .fc-progress-bar .fc-progress-bar__count {
  color: var(--exclusive-checkout-dark);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.woocommerce-checkout .fc-progress-bar--bars .fc-progress-bar__steps {
  background: var(--exclusive-checkout-border);
}

.woocommerce-checkout .fc-progress-bar--bars .fc-progress-bar__steps .fc-progress-bar__step.is-complete,
.woocommerce-checkout .fc-progress-bar--bars .fc-progress-bar__steps .fc-progress-bar__step.is-current {
  background: var(--exclusive-checkout-dark);
}

.has-checkout-layout--multi-step.woocommerce-checkout form .fc-wrapper .fc-checkout-step[data-step-complete] .fc-step__substep .fc-step__substep-title:before {
  background-color: var(--exclusive-checkout-dark);
  color: var(--exclusive-checkout-light);
}

/* =====================================================
   Checkout — botoes
   Inclui salvar alteracoes e finalizar pedido.
===================================================== */
.woocommerce-checkout .fc-wrapper .fc-step__substep-save,
.woocommerce-checkout .fc-wrapper button.fc-step__substep-save,
.woocommerce-checkout .fc-wrapper [data-step-save],
.woocommerce-checkout .fc-wrapper .fc-place-order .fc-place-order-button,
.woocommerce-checkout .fc-wrapper #place_order,
.woocommerce-checkout .fc-wrapper button[name="woocommerce_checkout_place_order"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: var(--exclusive-checkout-button-height);
  border: 1px solid var(--exclusive-checkout-dark);
  border-radius: 0;
  background: var(--exclusive-checkout-dark) !important;
  color: var(--exclusive-checkout-light) !important;
  box-shadow: none;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.woocommerce-checkout .fc-wrapper .fc-step__substep-save:hover,
.woocommerce-checkout .fc-wrapper .fc-step__substep-save:focus,
.woocommerce-checkout .fc-wrapper .fc-step__substep-save:active,
.woocommerce-checkout .fc-wrapper button.fc-step__substep-save:hover,
.woocommerce-checkout .fc-wrapper button.fc-step__substep-save:focus,
.woocommerce-checkout .fc-wrapper button.fc-step__substep-save:active,
.woocommerce-checkout .fc-wrapper [data-step-save]:hover,
.woocommerce-checkout .fc-wrapper [data-step-save]:focus,
.woocommerce-checkout .fc-wrapper [data-step-save]:active,
.woocommerce-checkout .fc-wrapper .fc-place-order .fc-place-order-button:hover,
.woocommerce-checkout .fc-wrapper .fc-place-order .fc-place-order-button:focus,
.woocommerce-checkout .fc-wrapper .fc-place-order .fc-place-order-button:active,
.woocommerce-checkout .fc-wrapper #place_order:hover,
.woocommerce-checkout .fc-wrapper #place_order:focus,
.woocommerce-checkout .fc-wrapper #place_order:active,
.woocommerce-checkout .fc-wrapper button[name="woocommerce_checkout_place_order"]:hover,
.woocommerce-checkout .fc-wrapper button[name="woocommerce_checkout_place_order"]:focus,
.woocommerce-checkout .fc-wrapper button[name="woocommerce_checkout_place_order"]:active {
  background: var(--exclusive-checkout-dark) !important;
  color: var(--exclusive-checkout-light) !important;
  opacity: 0.96;
  box-shadow: none;
}

.woocommerce-checkout .fc-wrapper .fc-place-order .fc-place-order-button:disabled,
.woocommerce-checkout .fc-wrapper #place_order:disabled,
.woocommerce-checkout .fc-wrapper button[name="woocommerce_checkout_place_order"]:disabled {
  opacity: 0.65;
}

/* =====================================================
   Checkout — cards e secoes
===================================================== */
.woocommerce-checkout .fc-wrapper .fc-checkout-step,
.woocommerce-checkout .fc-wrapper .fc-step__substep,
.woocommerce-checkout .fc-wrapper .fc-sidebar .fc-sidebar__inner,
.woocommerce-checkout .fc-wrapper #order_review,
.woocommerce-checkout .fc-wrapper .fc-payment-methods__wrapper,
.woocommerce-checkout .fc-wrapper #payment,
.woocommerce-checkout .fc-wrapper .fc-discount-section,
.woocommerce-checkout .fc-wrapper .woocommerce-additional-fields,
.woocommerce-checkout .fc-wrapper .woocommerce-billing-fields,
.woocommerce-checkout .fc-wrapper .woocommerce-shipping-fields,
.woocommerce-checkout .fc-wrapper .payment_box {
  background: var(--exclusive-checkout-bg) !important;
  border-color: var(--exclusive-checkout-border);
  box-shadow: none;
}

.woocommerce-checkout .fc-wrapper .fc-step__substep,
.woocommerce-checkout .fc-wrapper .fc-payment-methods__wrapper,
.woocommerce-checkout .fc-wrapper .payment_box,
.woocommerce-checkout .fc-wrapper .fc-sidebar .fc-sidebar__inner {
  box-shadow: none;
}

.woocommerce-checkout .fc-wrapper .fc-step__substep-fields,
.woocommerce-checkout .fc-wrapper .fc-step__substep-fields-inner,
.woocommerce-checkout .fc-wrapper .fc-step__substep.is-editing,
.woocommerce-checkout .fc-wrapper .fc-step__substep.is-editing .fc-step__substep-fields,
.woocommerce-checkout .fc-wrapper .fc-step__substep.is-editing .fc-step__substep-fields-inner,
.woocommerce-checkout .fc-wrapper .fc-highlighted-field-wrapper--billing,
.woocommerce-checkout .fc-wrapper .fc-highlighted-field-wrapper--shipping,
.woocommerce-checkout .fc-wrapper .fc-step__substep[data-substep-id="payment"],
.woocommerce-checkout .fc-wrapper .fc-step__substep[data-substep-id="shipping_address"],
.woocommerce-checkout .fc-wrapper .fc-step__substep[data-substep-id="billing_address"] {
  background: var(--exclusive-checkout-bg) !important;
}

/* =====================================================
   Checkout — campos de formulario
===================================================== */
.woocommerce-checkout .fc-wrapper form .form-row,
.woocommerce-checkout .fc-wrapper .asaas-cc-form-field,
.woocommerce-checkout .fc-wrapper .wc_payment_methods li,
.woocommerce-checkout .fc-wrapper .payment_box p,
.woocommerce-checkout .fc-wrapper .payment_box .form-row {
  margin-bottom: var(--exclusive-checkout-field-gap);
}

.woocommerce-checkout .fc-wrapper input.input-text,
.woocommerce-checkout .fc-wrapper input[type="text"],
.woocommerce-checkout .fc-wrapper input[type="email"],
.woocommerce-checkout .fc-wrapper input[type="tel"],
.woocommerce-checkout .fc-wrapper input[type="number"],
.woocommerce-checkout .fc-wrapper input[type="password"],
.woocommerce-checkout .fc-wrapper input[type="search"],
.woocommerce-checkout .fc-wrapper select,
.woocommerce-checkout .fc-wrapper textarea,
.woocommerce-checkout .fc-wrapper .select2-container .select2-selection,
.woocommerce-checkout .fc-wrapper .ts-wrapper .ts-control {
  min-height: var(--exclusive-checkout-input-height);
  border: 1px solid var(--exclusive-checkout-border);
  border-radius: 0;
  background: var(--exclusive-checkout-bg) !important;
  color: var(--exclusive-checkout-dark);
  box-shadow: none;
  font-size: 13px;
  line-height: 1.25;
  padding: 10px 14px;
}

.woocommerce-checkout .fc-wrapper select,
.woocommerce-checkout .fc-wrapper .select2-container .select2-selection,
.woocommerce-checkout .fc-wrapper .ts-wrapper .ts-control {
  padding-top: 0;
  padding-bottom: 0;
}

.woocommerce-checkout .fc-wrapper textarea {
  min-height: 96px;
  resize: vertical;
}

.woocommerce-checkout .fc-wrapper input.input-text:focus,
.woocommerce-checkout .fc-wrapper input[type="text"]:focus,
.woocommerce-checkout .fc-wrapper input[type="email"]:focus,
.woocommerce-checkout .fc-wrapper input[type="tel"]:focus,
.woocommerce-checkout .fc-wrapper input[type="number"]:focus,
.woocommerce-checkout .fc-wrapper input[type="password"]:focus,
.woocommerce-checkout .fc-wrapper input[type="search"]:focus,
.woocommerce-checkout .fc-wrapper select:focus,
.woocommerce-checkout .fc-wrapper textarea:focus,
.woocommerce-checkout .fc-wrapper .select2-container--focus .select2-selection,
.woocommerce-checkout .fc-wrapper .ts-wrapper.focus .ts-control {
  border-color: var(--exclusive-checkout-dark);
  box-shadow: none;
  outline: 0;
}

/* =====================================================
   Checkout — metodos de entrega
===================================================== */
.woocommerce-checkout .fc-wrapper ul#shipping_method .shipping-method__option .shipping-method__option-label {
  background: var(--exclusive-checkout-bg) !important;
}

.woocommerce-checkout .fc-wrapper ul#shipping_method .shipping-method__option input[type="radio"]:checked + .shipping-method__option-label {
  background: var(--exclusive-checkout-bg) !important;
  color: var(--exclusive-checkout-dark) !important;
  border-color: var(--exclusive-checkout-border);
}

.woocommerce-checkout .fc-wrapper ul#shipping_method .shipping-method__option .shipping-method__option-label:before {
  border-color: var(--exclusive-checkout-border);
  background: transparent;
}

.woocommerce-checkout .fc-wrapper ul#shipping_method .shipping-method__option input[type="radio"]:checked + .shipping-method__option-label:before {
  border-color: var(--exclusive-checkout-dark) !important;
  background: var(--exclusive-checkout-dark) !important;
}

.woocommerce-checkout .fc-wrapper ul#shipping_method .shipping-method__option input[type="radio"] + .shipping-method__option-label:after {
  color: transparent;
}

.woocommerce-checkout .fc-wrapper ul#shipping_method .shipping-method__option input[type="radio"]:checked + .shipping-method__option-label:after {
  color: var(--exclusive-checkout-light) !important;
}

/* =====================================================
   Checkout — metodos de pagamento
===================================================== */
.woocommerce-checkout .fc-wrapper .fc-payment-methods__wrapper .payment_methods > li {
  padding: 0;
  border: 1px solid var(--exclusive-checkout-border);
  border-radius: var(--exclusive-checkout-card-radius);
  background: var(--exclusive-checkout-bg);
  overflow: hidden;
}

.woocommerce-checkout .fc-wrapper .fc-payment-methods__wrapper .payment_methods > li + li {
  margin-top: var(--exclusive-checkout-section-gap);
}

.woocommerce-checkout .fc-wrapper .fc-payment-methods__wrapper .payment_methods > li > label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-weight: 600;
  color: var(--exclusive-checkout-dark);
}

.woocommerce-checkout .fc-wrapper .fc-payment-methods__wrapper .payment_box {
  margin: 0;
  padding: 0 16px 14px;
  background: var(--exclusive-checkout-bg) !important;
  border-top: 1px solid #EAEAEA;
}

.woocommerce-checkout .fc-wrapper .fc-payment-methods__wrapper .payment_box::before,
.woocommerce-checkout .fc-wrapper .fc-payment-methods__wrapper .payment_box::after {
  display: none !important;
}

.woocommerce-checkout .fc-wrapper #payment .payment_methods > .wc_payment_method > input[name="payment_method"] + label:before {
  border-color: var(--exclusive-checkout-border);
  background: transparent;
}

.woocommerce-checkout .fc-wrapper #payment .payment_methods > .wc_payment_method > input[name="payment_method"]:checked + label,
.woocommerce-checkout .fc-wrapper #payment ul.wc_payment_methods > li.wc_payment_method > input[name="payment_method"]:checked + label {
  background: var(--exclusive-checkout-bg) !important;
  color: var(--exclusive-checkout-dark) !important;
  border-color: var(--exclusive-checkout-border);
}

.woocommerce-checkout .fc-wrapper #payment .payment_methods > .wc_payment_method > input[name="payment_method"]:checked + label:before {
  border-color: var(--exclusive-checkout-dark) !important;
  background-color: var(--exclusive-checkout-dark) !important;
}

.woocommerce-checkout .fc-wrapper #payment ul.payment_methods > .wc_payment_method > input[name="payment_method"]:checked + label:after {
  color: var(--exclusive-checkout-light) !important;
}

/* =====================================================
   Checkout — pagamento Asaas / cartao de credito / espacamentos
   Ajustes apenas nos wrappers acessiveis via CSS.
===================================================== */
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .payment_box,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .asaas-cc-form-wrapper,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .one-click-buy-option .asaas-cc-form-wrapper,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-pix,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-pix .payment_box {
  background: var(--exclusive-checkout-bg) !important;
}

.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .asaas-cc-form-wrapper {
  margin: -10px 0 0 !important;
}

.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .payment_box > p:first-of-type {
  margin-bottom: 8px !important;
}

/* Os wrappers do Asaas/Fluid Checkout usam margin-bottom com !important.
   Aqui sobrescrevemos os campos reais do cartao para compactar o bloco. */
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #asaas-cc-name_field,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #asaas-cc-number_field,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #asaas-cc-expiration-month_field,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #asaas-cc-expiration-year_field,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #asaas-cc-security-code_field,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #asaas-cc-installments_field,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .fc-expansible-form-section.fc-asaas-label-field,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .fc-asaas-card-expiration-field,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .asaas-cc-form-field,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .payment_box p {
  margin-bottom: 0 !important;
}

.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .asaas-cc-form-field label,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .form-row label,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .payment_box label {
  margin-bottom: 4px !important;
}

.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .form-row label + .woocommerce-input-wrapper,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .form-row label + span,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .asaas-cc-form-field label + .woocommerce-input-wrapper,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .asaas-cc-form-field label + span {
  display: block;
  margin-top: 0 !important;
}

.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #asaas-cc-expiration,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .asaas-card-expiration,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .asaas-card-number,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .asaas-card-security-code,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card select,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card input.input-text {
  width: 100%;
}

.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .form-row-first,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .form-row-last {
  width: calc(50% - 8px);
}

.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .form-row-first {
  float: left;
  clear: both;
}

.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .form-row-last {
  float: right;
}

.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #fc-expansible-form-section__toggle--asaas_cc_expiration_label,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #fc-expansible-form-section__content--asaas_cc_expiration_label,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #assas-cc-expiration-label_field {
  display: none !important;
}

.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .asaas-cc-form-field-no-margin {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
}

.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #asaas-cc-name_field input,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #asaas-cc-number_field input,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #asaas-cc-expiration-month_field input,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #asaas-cc-expiration-year_field input,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #asaas-cc-security-code_field input,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #asaas-cc-installments_field select {
  margin-top: 0 !important;
}

.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #asaas-cc-name_field + #asaas-cc-number_field,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #asaas-cc-number_field + .fc-expansible-form-section,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .fc-expansible-form-section + #asaas-cc-expiration-month_field,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #asaas-cc-expiration-month_field + #asaas-cc-expiration-year_field,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #asaas-cc-expiration-year_field + #asaas-cc-security-code_field,
.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card #asaas-cc-security-code_field + #asaas-cc-installments_field {
  margin-top: 8px !important;
}

.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .one-click-buy-option .radio {
  background: var(--exclusive-checkout-soft-bg);
  color: var(--exclusive-checkout-dark);
  padding: 14px 16px;
  margin-bottom: 8px;
}

.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .one-click-buy-option .input-radio:checked + .radio {
  background: var(--exclusive-checkout-dark);
  color: var(--exclusive-checkout-light);
}

.woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .one-click-buy-option .brand {
  width: 36px;
}

/* =====================================================
   Checkout — resumo do pedido
===================================================== */
.woocommerce-checkout .fc-wrapper .shop_table th,
.woocommerce-checkout .fc-wrapper .shop_table td,
.woocommerce-checkout .fc-wrapper .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .fc-wrapper .woocommerce-checkout-review-order-table td {
  color: var(--exclusive-checkout-dark);
  border-color: #EAEAEA;
}

.woocommerce-checkout .fc-wrapper .shop_table th,
.woocommerce-checkout .fc-wrapper .woocommerce-checkout-review-order-table th {
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
}

.woocommerce-checkout .fc-wrapper .cart_item .product-name,
.woocommerce-checkout .fc-wrapper .cart_item .product-total,
.woocommerce-checkout .fc-wrapper .order-total td,
.woocommerce-checkout .fc-wrapper .order-total th {
  font-weight: 600;
}

.woocommerce-checkout .fc-wrapper .woocommerce-terms-and-conditions-wrapper,
.woocommerce-checkout .fc-wrapper .woocommerce-privacy-policy-text {
  color: var(--exclusive-checkout-dark);
  font-size: 12px;
  line-height: 1.6;
}

.woocommerce-checkout .fc-wrapper .woocommerce-form__label-for-checkbox,
.woocommerce-checkout .fc-wrapper .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.woocommerce-checkout .fc-wrapper .input-checkbox,
.woocommerce-checkout .fc-wrapper input[type="radio"] {
  accent-color: var(--exclusive-checkout-dark);
}

/* =====================================================
   Checkout — mobile
===================================================== */
@media (max-width: 999px) {
  .woocommerce-checkout .fc-wrapper .fc-sidebar,
  .woocommerce-checkout .fc-wrapper .fc-content,
  .woocommerce-checkout .fc-wrapper .fc-inside {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .woocommerce-checkout .fc-wrapper .fc-step__substep,
  .woocommerce-checkout .fc-wrapper .fc-payment-methods__wrapper,
  .woocommerce-checkout .fc-wrapper .fc-sidebar .fc-sidebar__inner,
  .woocommerce-checkout .fc-wrapper .payment_box {
    padding-left: var(--exclusive-checkout-card-padding-mobile);
    padding-right: var(--exclusive-checkout-card-padding-mobile);
  }

  .woocommerce-checkout .fc-wrapper .fc-step__substep,
  .woocommerce-checkout .fc-wrapper .payment_box,
  .woocommerce-checkout .fc-wrapper .fc-payment-methods__wrapper .payment_methods > li > label {
    padding-top: var(--exclusive-checkout-card-padding-mobile);
    padding-bottom: var(--exclusive-checkout-card-padding-mobile);
  }

  .woocommerce-checkout .fc-wrapper form .form-row,
  .woocommerce-checkout .fc-wrapper .asaas-cc-form-field,
  .woocommerce-checkout .fc-wrapper .wc_payment_methods li,
  .woocommerce-checkout .fc-wrapper .payment_box p,
  .woocommerce-checkout .fc-wrapper .payment_box .form-row {
    margin-bottom: var(--exclusive-checkout-field-gap);
  }

  .woocommerce-checkout .fc-wrapper input.input-text,
  .woocommerce-checkout .fc-wrapper input[type="text"],
  .woocommerce-checkout .fc-wrapper input[type="email"],
  .woocommerce-checkout .fc-wrapper input[type="tel"],
  .woocommerce-checkout .fc-wrapper input[type="number"],
  .woocommerce-checkout .fc-wrapper input[type="password"],
  .woocommerce-checkout .fc-wrapper input[type="search"],
  .woocommerce-checkout .fc-wrapper select,
  .woocommerce-checkout .fc-wrapper textarea,
  .woocommerce-checkout .fc-wrapper .select2-container .select2-selection,
  .woocommerce-checkout .fc-wrapper .ts-wrapper .ts-control,
  .woocommerce-checkout .fc-wrapper .fc-place-order .fc-place-order-button,
  .woocommerce-checkout .fc-wrapper #place_order,
  .woocommerce-checkout .fc-wrapper button[name="woocommerce_checkout_place_order"],
  .woocommerce-checkout .fc-wrapper .fc-step__substep-save {
    width: 100%;
  }

  .woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .form-row-first,
  .woocommerce-checkout .fc-wrapper .payment_method_asaas-credit-card .form-row-last {
    width: 100%;
    float: none;
  }

  .woocommerce-checkout .fc-wrapper .fc-progress-bar .fc-progress-bar__count {
    font-size: 13px;
  }
}


/* =====================================================
   Wishlist — WebToffee / Exclusive
===================================================== */
.eca-card-shell {
  position: relative;
}

.eca-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 6;
  margin: 0;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.eca-card__wishlist .icon_above_image,
.eca-card__wishlist .icon_after_add_to_cart,
.eca-card__wishlist .wt-wishlist-btn-wrap,
.eca-card__wishlist .single_product_div,
.eca-card__wishlist .single_product_button_div {
  position: static;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.eca-card__wishlist ~ .eca-card .eca-badges {
  right: 42px;
}

.eca-card__wishlist .browse_wishlist,
.eca-card__wishlist span {
  display: none !important;
}

.eca-card__wishlist a,
.eca-card__wishlist i.wt-wishlist-button,
.eca-card__wishlist .exclusive-wishlist-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  margin: 0 !important;
  padding: 0 !important;
  background: rgba(229, 229, 229, 0.75) !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.12) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-decoration: none;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.eca-card__wishlist .wt-wishlist-button,
.eca-card__wishlist .wt-wishlist-button:hover,
.eca-card__wishlist .exclusive-wishlist-button,
.eca-card__wishlist .exclusive-wishlist-button:hover {
  margin: 0 !important;
}

.eca-card__wishlist .exclusive-wishlist-button img {
  width: 19px;
  height: 19px;
}

.eca-card__wishlist .exclusive-wishlist-button.is-active {
  background: rgba(255, 244, 244, 0.92) !important;
  box-shadow: 0 10px 22px rgba(180, 35, 24, 0.18) !important;
  transform: translateY(-1px);
}

.eca-card__wishlist .exclusive-wishlist-button.is-inactive img {
  filter: saturate(0.9);
}

.eca-card__wishlist .exclusive-wishlist-button:hover,
.eca-card__wishlist .exclusive-wishlist-button:focus-visible {
  background: rgba(229, 229, 229, 0.88) !important;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.16) !important;
}

.eca-card__wishlist .exclusive-wishlist-button.is-active:hover,
.eca-card__wishlist .exclusive-wishlist-button.is-active:focus-visible {
  background: rgba(255, 238, 238, 0.96) !important;
  box-shadow: 0 12px 24px rgba(180, 35, 24, 0.22) !important;
}

.eca-card__wishlist .wt-wishlist-button img,
.eca-card__wishlist .exclusive-wishlist-button img {
  width: 19px;
  height: 19px;
  display: block;
}

.eca-card__wishlist a:hover,
.eca-card__wishlist a:focus-visible {
  opacity: 0.82;
}

.single-product .exclusive-wishlist-placeholder {
  display: none !important;
}

.single-product .exclusive-wishlist-title-host {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: auto !important;
  max-width: 100%;
}

.single-product .exclusive-wishlist-title-host .elementor-heading-title,
.single-product .exclusive-wishlist-title-host .product_title {
  display: block;
  flex: 0 1 auto;
  min-width: 0;
}

.single-product .exclusive-wishlist-slot--title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.single-product .exclusive-wishlist-mount {
  margin-top: 0;
  width: auto;
}

.single-product .exclusive-wishlist-mount--single {
  display: none;
}

.single-product .exclusive-wishlist-mount--single.is-in-title,
.single-product .exclusive-wishlist-mount--single.is-in-share {
  display: inline-flex;
  align-items: center;
}

.single-product .exclusive-wishlist-mount.is-duplicate,
.single-product .exclusive-wishlist-mount--shortcode,
.single-product .exclusive-wishlist-duplicate-raw {
  display: none !important;
}

.single-product .exclusive-wishlist-mount .single_product_div,
.single-product .exclusive-wishlist-mount .single_product_button_div {
  margin: 0;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.single-product .exclusive-wishlist-mount .browse_wishlist,
.single-product .exclusive-wishlist-mount span {
  display: none !important;
}

.single-product .exclusive-wishlist-mount a,
.single-product .exclusive-wishlist-mount i.wt-wishlist-button,
.single-product .exclusive-wishlist-mount .exclusive-wishlist-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  line-height: 1;
  text-decoration: none;
}

.single-product .exclusive-wishlist-mount .wt-wishlist-button,
.single-product .exclusive-wishlist-mount .wt-wishlist-button:hover,
.single-product .exclusive-wishlist-mount .exclusive-wishlist-button,
.single-product .exclusive-wishlist-mount .exclusive-wishlist-button:hover {
  margin: 0 !important;
}

.single-product .exclusive-wishlist-mount .wishlist_text_icon_image,
.single-product .exclusive-wishlist-mount i.wt-wishlist-button img,
.single-product .exclusive-wishlist-mount .exclusive-wishlist-button img {
  width: 20px;
  height: 20px;
  display: block;
}

.single-product .exclusive-wishlist-mount a:hover,
.single-product .exclusive-wishlist-mount a:focus-visible {
  opacity: 0.82;
}

.exclusive-wishlist-button {
  appearance: none;
  cursor: pointer;
  line-height: 1;
}

.exclusive-wishlist-button.is-loading {
  opacity: 0.7;
}

.exclusive-wishlist-button.is-disabled {
  cursor: pointer;
}

.exclusive-wishlist-button:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.single-product .exclusive-wishlist-control,
.eca-card__wishlist.exclusive-wishlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.single-product .exclusive-wishlist-share-host {
  display: inline-flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px !important;
  width: auto !important;
}

.single-product .exclusive-wishlist-share-host > *,
.single-product .exclusive-wishlist-share-host .copy-product-link,
.single-product .exclusive-wishlist-share-host .elementor-icon-wrapper,
.single-product .exclusive-wishlist-share-host .elementor-icon,
.single-product .exclusive-wishlist-share-host a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: none !important;
  flex: 0 0 auto !important;
}

.single-product .exclusive-wishlist-slot--mobile {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  flex: 0 0 auto !important;
}

.single-product .exclusive-wishlist-slot--mobile > * {
  flex: 0 0 auto;
}

/* PDP mobile — compartilhar e wishlist lado a lado ao lado do titulo.
   Padronizamos a CAIXA CLICAVEL dos dois (30x30), com o icone centralizado,
   garantindo que fiquem do mesmo tamanho e perfeitamente nivelados (o host ja
   e flex row com align-items:center). Sem translateY/offset arbitrario. */
.single-product .exclusive-wishlist-share-host > * {
  align-self: center !important;
  margin: 0 !important;
}

.single-product .exclusive-wishlist-share-host .elementor-icon,
.single-product .exclusive-wishlist-share-host .exclusive-wishlist-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 30px !important;
  height: 30px !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 0 !important;
}

.single-product .exclusive-wishlist-share-host .elementor-icon svg,
.single-product .exclusive-wishlist-share-host .exclusive-wishlist-button img {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
}

@media (max-width: 767px) {
  /* PDP mobile — wrapper superior com duas colunas reais:
     SKU acima do breadcrumb na esquerda, wishlist + share na direita e titulo
     em largura total abaixo. Tambem neutralizamos z-index alto herdado dessa
     area para o header continuar acima ao rolar. */
  .single-product .exclusive-wishlist-mobile-row,
  .single-product .exclusive-wishlist-mobile-row > .e-con-inner,
  .single-product .exclusive-wishlist-mobile-layout,
  .single-product .exclusive-wishlist-mobile-topbar,
  .single-product .exclusive-wishlist-mobile-title-slot,
  .single-product .exclusive-wishlist-title-host {
    position: relative !important;
    z-index: 1 !important;
  }

  .single-product .exclusive-wishlist-mobile-row > .e-con-inner {
    display: block !important;
  }

  .single-product .exclusive-wishlist-mobile-row > .e-con-inner > .e-con {
    display: none !important;
  }

  .single-product .exclusive-wishlist-mobile-layout {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 10px;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
  }

  .single-product .exclusive-wishlist-mobile-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
  }

  .single-product .exclusive-wishlist-mobile-meta {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .single-product .exclusive-wishlist-mobile-meta > .elementor-widget,
  .single-product .exclusive-wishlist-mobile-meta > .elementor-element {
    display: block !important;
    width: 100% !important;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    transform: none !important;
    z-index: auto !important;
  }

  .single-product .exclusive-wishlist-mobile-meta .elementor-widget-container,
  .single-product .exclusive-wishlist-mobile-meta .elementor-shortcode {
    display: block !important;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }

  .single-product .exclusive-wishlist-mobile-meta .exclusive-variation-sku {
    display: block;
    max-width: 100%;
    min-width: 0;
    font-size: 12px;
    line-height: 1.25;
    margin: 0 !important;
  }

  .single-product .exclusive-wishlist-mobile-meta .woocommerce-breadcrumb {
    display: block;
    max-width: 100%;
    min-width: 0;
    margin: 0 !important;
    font-size: 11px;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .single-product .exclusive-wishlist-mobile-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 0 0 auto;
    flex-shrink: 0;
    white-space: nowrap;
    padding-top: 1px;
  }

  .single-product .exclusive-wishlist-mobile-actions > .exclusive-wishlist-slot--mobile {
    order: 1;
  }

  .single-product .exclusive-wishlist-mobile-actions > .copy-product-link {
    order: 2;
  }

  .single-product .exclusive-wishlist-mobile-actions > * {
    flex: 0 0 auto;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
    z-index: auto !important;
  }

  .single-product .exclusive-wishlist-mobile-title-slot {
    width: 100%;
    margin-top: 0;
  }

  .single-product .exclusive-wishlist-title-host,
  .single-product .exclusive-wishlist-mobile-title-slot .exclusive-wishlist-title-host,
  .single-product .exclusive-wishlist-mobile-title-slot .exclusive-wishlist-title-host .elementor-heading-title,
  .single-product .exclusive-wishlist-mobile-title-slot .product_title {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-right: 0 !important;
  }

  .single-product .exclusive-wishlist-mobile-title-slot .elementor-widget,
  .single-product .exclusive-wishlist-mobile-title-slot .elementor-element {
    margin: 0 !important;
    position: static !important;
    transform: none !important;
    z-index: auto !important;
  }

  .single-product .exclusive-wishlist-slot--title {
    position: static;
    transform: none;
  }

  .eca-card__wishlist {
    top: 8px;
    right: 8px;
  }

  .eca-card__wishlist a,
  .eca-card__wishlist i.wt-wishlist-button,
  .eca-card__wishlist .exclusive-wishlist-button {
    width: 28px;
    height: 28px;
  }

  .eca-card__wishlist .wt-wishlist-button img,
  .eca-card__wishlist .exclusive-wishlist-button img {
    width: 18px;
    height: 18px;
  }

  .eca-card__wishlist ~ .eca-card .eca-badges {
    right: 38px;
  }

  .single-product .exclusive-wishlist-slot--title {
    display: none;
  }

  .single-product .exclusive-wishlist-slot--mobile .exclusive-wishlist-mount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Caixa unificada com o botao de compartilhar (ver .exclusive-wishlist-share-host). */
  .single-product .exclusive-wishlist-slot--mobile .exclusive-wishlist-mount a,
  .single-product .exclusive-wishlist-slot--mobile .exclusive-wishlist-mount i.wt-wishlist-button,
  .single-product .exclusive-wishlist-slot--mobile .exclusive-wishlist-mount .exclusive-wishlist-button {
    width: 30px;
    height: 30px;
  }

  .single-product .exclusive-wishlist-slot--mobile .exclusive-wishlist-mount .wishlist_text_icon_image,
  .single-product .exclusive-wishlist-slot--mobile .exclusive-wishlist-mount i.wt-wishlist-button img,
  .single-product .exclusive-wishlist-slot--mobile .exclusive-wishlist-mount .exclusive-wishlist-button img {
    width: 18px;
    height: 18px;
  }

  .single-product .exclusive-wishlist-replaced-heart {
    display: none !important;
  }
}

.page-id-3186 .wbte_wishlist_heading,
.elementor-page-3186 .wbte_wishlist_heading {
  display: none !important;
}

.page-id-3186 .exclusive-wishlist-page,
.elementor-page-3186 .exclusive-wishlist-page {
  width: min(100%, 932px);
  margin: 0 auto;
  --eca-columns: 4;
  --eca-grid-column-gap: 16px;
  --eca-grid-row-gap: 20px;
  --eca-grid-column-gap-mobile: 10px;
  --eca-grid-row-gap-mobile: 24px;
}

.page-id-3186 .exclusive-wishlist-form,
.elementor-page-3186 .exclusive-wishlist-form {
  margin: 0;
}

.page-id-3186 .exclusive-wishlist-grid.eca-grid,
.elementor-page-3186 .exclusive-wishlist-grid.eca-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: var(--eca-grid-column-gap);
  row-gap: var(--eca-grid-row-gap);
}

.page-id-3186 .exclusive-wishlist-card,
.elementor-page-3186 .exclusive-wishlist-card {
  position: relative;
  min-width: 0;
}

.page-id-3186 .exclusive-wishlist-card__link,
.elementor-page-3186 .exclusive-wishlist-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.page-id-3186 .exclusive-wishlist-card__image,
.elementor-page-3186 .exclusive-wishlist-card__image {
  position: relative;
  margin-bottom: 10px;
}

.page-id-3186 .exclusive-wishlist-card__content,
.elementor-page-3186 .exclusive-wishlist-card__content {
  display: block;
}

.page-id-3186 .exclusive-wishlist-card__title,
.elementor-page-3186 .exclusive-wishlist-card__title {
  margin-bottom: 2px;
  /* Título em uma única linha; se exceder, corta com reticências (...) */
  display: block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.page-id-3186 .exclusive-wishlist-card__meta,
.elementor-page-3186 .exclusive-wishlist-card__meta {
  margin: 0 0 6px;
  white-space: normal;
}

.page-id-3186 .exclusive-wishlist-card__action,
.elementor-page-3186 .exclusive-wishlist-card__action {
  margin-top: 12px;
}

.page-id-3186 .exclusive-wishlist-card__remove,
.elementor-page-3186 .exclusive-wishlist-card__remove {
  /* Posição do "X" de remover — BASE / DESKTOP.
     Ajuste fino do encaixe no canto superior direito da imagem.
     O mobile tem controle próprio no @media logo abaixo. */
  position: absolute;
  top: 11px;
  right: -13px;
  margin: 0;
  transform: none;
  z-index: 4;
}

/* Controle independente do "X" de remover no MOBILE.
   Altere apenas top/right aqui — não afeta o desktop.
   Breakpoint = 767px (telas de celular). Se quiser incluir tablet,
   troque 767px por 991px (largura em que os cards passam a 2 colunas). */
@media (max-width: 767px) {
  .page-id-3186 .exclusive-wishlist-card__remove,
  .elementor-page-3186 .exclusive-wishlist-card__remove {
    top: 16px;
    right: 2px;
  }
}

.page-id-3186 .exclusive-wishlist-card__remove .remove-link,
.elementor-page-3186 .exclusive-wishlist-card__remove .remove-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  text-decoration: none;
}

.page-id-3186 .exclusive-wishlist-card__remove .remove_wishlist_single,
.elementor-page-3186 .exclusive-wishlist-card__remove .remove_wishlist_single {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: none;
  transition: background-color 160ms ease;
}

.page-id-3186 .exclusive-wishlist-card__remove .remove_wishlist_single img,
.elementor-page-3186 .exclusive-wishlist-card__remove .remove_wishlist_single img {
  display: none !important;
}

.page-id-3186 .exclusive-wishlist-card__remove .remove_wishlist_single::before,
.page-id-3186 .exclusive-wishlist-card__remove .remove_wishlist_single::after,
.elementor-page-3186 .exclusive-wishlist-card__remove .remove_wishlist_single::before,
.elementor-page-3186 .exclusive-wishlist-card__remove .remove_wishlist_single::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: #1e1e1e;
  filter: none;
  transition: background-color 160ms ease;
  transform-origin: center;
}

.page-id-3186 .exclusive-wishlist-card__remove .remove_wishlist_single::before,
.elementor-page-3186 .exclusive-wishlist-card__remove .remove_wishlist_single::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.page-id-3186 .exclusive-wishlist-card__remove .remove_wishlist_single::after,
.elementor-page-3186 .exclusive-wishlist-card__remove .remove_wishlist_single::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.page-id-3186 .exclusive-wishlist-card__remove .remove-link:hover .remove_wishlist_single,
.page-id-3186 .exclusive-wishlist-card__remove .remove-link:focus-visible .remove_wishlist_single,
.elementor-page-3186 .exclusive-wishlist-card__remove .remove-link:hover .remove_wishlist_single,
.elementor-page-3186 .exclusive-wishlist-card__remove .remove-link:focus-visible .remove_wishlist_single {
  background: #1e1e1e;
}

.page-id-3186 .exclusive-wishlist-card__remove .remove-link:hover .remove_wishlist_single::before,
.page-id-3186 .exclusive-wishlist-card__remove .remove-link:hover .remove_wishlist_single::after,
.page-id-3186 .exclusive-wishlist-card__remove .remove-link:focus-visible .remove_wishlist_single::before,
.page-id-3186 .exclusive-wishlist-card__remove .remove-link:focus-visible .remove_wishlist_single::after,
.elementor-page-3186 .exclusive-wishlist-card__remove .remove-link:hover .remove_wishlist_single::before,
.elementor-page-3186 .exclusive-wishlist-card__remove .remove-link:hover .remove_wishlist_single::after,
.elementor-page-3186 .exclusive-wishlist-card__remove .remove-link:focus-visible .remove_wishlist_single::before,
.elementor-page-3186 .exclusive-wishlist-card__remove .remove-link:focus-visible .remove_wishlist_single::after {
  background: #e5e5e5;
  filter: none;
}

.page-id-3186 .bulk-add-wrapper,
.elementor-page-3186 .bulk-add-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.page-id-3186 .bulk-add-btn,
.page-id-3186 .single-add-to-cart,
.elementor-page-3186 .bulk-add-btn,
.elementor-page-3186 .single-add-to-cart {
  min-height: 36px;
  padding: 0 18px;
  border: 1px solid #1e1e1e;
  border-radius: 0;
  background: #1e1e1e;
  color: #e5e5e5;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.page-id-3186 .bulk-add-btn:hover,
.page-id-3186 .bulk-add-btn:focus-visible,
.page-id-3186 .single-add-to-cart:hover,
.page-id-3186 .single-add-to-cart:focus-visible,
.elementor-page-3186 .bulk-add-btn:hover,
.elementor-page-3186 .bulk-add-btn:focus-visible,
.elementor-page-3186 .single-add-to-cart:hover,
.elementor-page-3186 .single-add-to-cart:focus-visible {
  background: #ffffff;
  color: #1e1e1e;
  border-color: #1e1e1e;
}

.page-id-3186 .single-add-to-cart,
.elementor-page-3186 .single-add-to-cart {
  width: 100%;
  justify-content: center;
}

.page-id-3186 .exclusive-wishlist-empty,
.elementor-page-3186 .exclusive-wishlist-empty {
  margin: 0;
  color: #1e1e1e;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 991px) {
  .page-id-3186 .exclusive-wishlist-page,
  .elementor-page-3186 .exclusive-wishlist-page {
    width: 100%;
    --eca-columns: 2;
  }

  .page-id-3186 .exclusive-wishlist-grid.eca-grid,
  .elementor-page-3186 .exclusive-wishlist-grid.eca-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--eca-grid-column-gap-mobile);
    row-gap: var(--eca-grid-row-gap-mobile);
  }

  .page-id-3186 .bulk-add-wrapper,
  .elementor-page-3186 .bulk-add-wrapper {
    margin-bottom: 16px;
  }

  .page-id-3186 .bulk-add-btn,
  .elementor-page-3186 .bulk-add-btn {
    width: 100%;
  }

  /* Cards em 2 colunas ficam estreitos: reduz e centraliza o texto do
     "Adicionar ao carrinho" para não vazar para a direita.
     Só o botão por card (.single-add-to-cart); o botão "adicionar todos"
     é full-width e não precisa. */
  .page-id-3186 .single-add-to-cart,
  .elementor-page-3186 .single-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    font-size: 10px;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }
}

/* =========================
   Variation SKU (PDP)
   SKU dinamico da variacao selecionada. Discreto, sem interferir em
   preco, swatches, wishlist, avise-me ou carrinho.
   ========================= */
.exclusive-variation-sku {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #5e5e5e;
}

/* Sem SKU valido: oculta o conjunto inteiro para nunca exibir SKU errado. */
.exclusive-variation-sku--empty {
  display: none;
}

.exclusive-variation-sku-label {
  font-weight: 500;
}

/* Label vazio (shortcode sem atributo label) nao deve ocupar espaco. */
.exclusive-variation-sku-label:empty {
  display: none;
}

.exclusive-variation-sku-value {
  font-weight: 600;
  color: #1e1e1e;
}

/* =========================
   Titulo do produto em 1 linha com reticencias (shortcode)
   Mesma logica visual da wishlist, aplicada manualmente via
   [exclusive_product_title_ellipsis]. Escopado na classe propria
   para nao afetar titulos do WooCommerce/Elementor globalmente.
   ========================= */
.exclusive-product-title-ellipsis {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: "Montserrat", sans-serif;
  color: #1e1e1e;
}

a.exclusive-product-title-ellipsis {
  text-decoration: none;
  color: inherit;
}

/* Utilitario reaproveitavel: uma linha, sem quebra, reticencias no fim. */
.exclusive-ellipsis-1 {
  display: block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* =========================
   Pop-up de login do CHECKOUT (Fluid Checkout) — identidade Exclusive
   -------------------------
   Escopo restrito ao modal .fc-login-form (renderizado por
   templates/fc/checkout-steps/checkout/form-contact-login-modal.php).
   NAO afeta a pagina Minha Conta (.exma-auth), o checkout principal,
   carrinho, PDP, wishlist nem header/footer.
   ========================= */
.fc-login-form {
  font-family: "Montserrat", sans-serif;
}

.fc-login-form label {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 6px;
}

/* Campos: bordas retas e escuras, fonte Montserrat. */
.fc-login-form .input-text {
  border: 1px solid #1E1E1E !important;
  border-radius: 2px !important;
  box-shadow: none !important;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  min-height: 44px;
}

.fc-login-form .input-text:focus {
  border-color: #1E1E1E !important;
  outline: none;
}

/* Botao "Faca login": identidade escura, reto, Montserrat 600. */
.fc-login-form .woocommerce-form-login__submit {
  width: 100%;
  background: #1E1E1E !important;
  color: #E5E5E5 !important;
  border: 1px solid #1E1E1E !important;
  border-radius: 2px !important;
  box-shadow: none !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 12px 20px !important;
  text-transform: none !important;
  transition: background-color 0.18s ease;
}

.fc-login-form .woocommerce-form-login__submit:hover,
.fc-login-form .woocommerce-form-login__submit:focus {
  background: #333333 !important;
  color: #E5E5E5 !important;
  border-color: #1E1E1E !important;
}

/* Link "Perdeu sua senha?": cor escura da loja, sem rosa/magenta. */
.fc-login-form .lost_password a {
  color: #1E1E1E !important;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
}

.fc-login-form .lost_password a:hover,
.fc-login-form .lost_password a:focus {
  color: #1E1E1E !important;
  text-decoration: underline;
  opacity: 0.8;
}

/* =========================
   Home — header sticky #2249: fundo solido ao rolar
   -------------------------
   home-header.js adiciona .exclusive-home-header-solid ao header Elementor 2249
   quando a pagina rola alem do limite. Trocamos o fundo das secoes sticky do
   menu (07ee222 = desktop/tablet, cecdbc9 = mobile) de #E5E5E5 transparente
   para #E5E5E5 solido, com transicao suave. Escopo restrito ao header #2249 —
   nao afeta o outro header do site nem paginas internas (a classe .elementor-2249
   so existe na home).
   ========================= */
.elementor-2249 .elementor-element.elementor-element-07ee222,
.elementor-2249 .elementor-element.elementor-element-cecdbc9 {
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.elementor-2249.exclusive-home-header-solid .elementor-element.elementor-element-07ee222,
.elementor-2249.exclusive-home-header-solid .elementor-element.elementor-element-cecdbc9 {
  background-color: #E5E5E5 !important;
}

/* Home mobile — fundo solido somente enquanto o menu hamburger esta aberto.
   O JS acompanha aria-expanded/aria-hidden do menu Elementor 9ebea03. O estado
   de scroll acima continua independente: ao fechar, prevalece o fundo correto
   para a posicao atual da pagina. */
@media (max-width: 767px) {
  body.home.exclusive-home-mobile-menu-open [data-elementor-id="2249"] .elementor-element.elementor-element-cecdbc9,
  body.front-page.exclusive-home-mobile-menu-open [data-elementor-id="2249"] .elementor-element.elementor-element-cecdbc9,
  body.home.exclusive-home-mobile-menu-open [data-elementor-id="2249"] .elementor-element-9ebea03 .elementor-nav-menu--dropdown,
  body.front-page.exclusive-home-mobile-menu-open [data-elementor-id="2249"] .elementor-element-9ebea03 .elementor-nav-menu--dropdown {
    background-color: #E5E5E5 !important;
  }
}

/* =========================================================================
   Pagina "Pedido recebido" (order-received) — identidade Exclusive
   Escopo: body.woocommerce-order-received (so a tela de confirmacao do pedido).
   NAO afeta o checkout antes do pagamento (que nao tem essa classe), carrinho,
   Minha Conta, PDP, header/footer. Apenas visual — nenhum valor/logica alterado.
   ========================================================================= */

/* Titulo "Finalizar Compra" (heading Elementor cb3458a) — Montserrat so aqui. */
.woocommerce-order-received .elementor-element-cb3458a .elementor-heading-title {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  color: #1E1E1E !important;
}

/* Container centralizado + tipografia base da pagina. */
.woocommerce-order-received .woocommerce-order {
  --exor-text: #1E1E1E;
  --exor-muted: #5E5E5E;
  --exor-border: #E5E5E5;
  box-sizing: border-box;
  width: 100%;
  max-width: 880px;
  margin: 0 auto 56px;
  padding: 0 16px;
  font-family: "Montserrat", sans-serif;
  color: var(--exor-text);
}

.woocommerce-order-received .woocommerce-order *,
.woocommerce-order-received .woocommerce-order *::before,
.woocommerce-order-received .woocommerce-order *::after {
  box-sizing: border-box;
}

/* "Obrigado. Seu pedido foi recebido." */
.woocommerce-order-received .woocommerce-notice--success.woocommerce-thankyou-order-received {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
  background: none;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: var(--exor-muted);
}

.woocommerce-order-received .woocommerce-notice--success.woocommerce-thankyou-order-received::before {
  display: none;
}

/* Resumo inicial do pedido (numero/data/email/total/metodo) — grid alinhado. */
.woocommerce-order-received ul.woocommerce-order-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px 22px;
  margin: 0 0 40px;
  padding: 22px 0;
  border: 0;
  border-top: 1px solid var(--exor-border);
  border-bottom: 1px solid var(--exor-border);
  list-style: none;
}

.woocommerce-order-received ul.woocommerce-order-overview li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  padding: 0;
  border: 0 !important;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--exor-muted);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.woocommerce-order-received ul.woocommerce-order-overview li strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--exor-text);
}

/* Espacamento das secoes. */
.woocommerce-order-received .woocommerce-order-details,
.woocommerce-order-received .woocommerce-customer-details {
  margin: 0 0 40px;
}

/* Titulos de secao (Detalhes do pagamento / Detalhes do pedido / Endereco). */
.woocommerce-order-received .woocommerce-order-details__title,
.woocommerce-order-received .woocommerce-customer-details .woocommerce-column__title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--exor-text);
  margin: 0 0 16px;
}

/* "Detalhes do pagamento": lista simples (Estado do pedido: ...). */
.woocommerce-order-received .woocommerce-order-details > ul.order_details {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-order-received .woocommerce-order-details > ul.order_details li {
  margin: 0;
  padding: 0;
  border: 0;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--exor-muted);
}

.woocommerce-order-received .woocommerce-order-details > ul.order_details li strong {
  display: inline-block;
  margin-left: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--exor-text);
}

/* PIX Asaas na tela "Pedido recebido" — o plugin nativo usa nowrap + scroll
   no payload copia-e-cola. Aqui forcamos a quebra dentro do card sem afetar
   checkout, Minha Conta ou outros metodos de pagamento. */
.woocommerce-order-received .woocommerce-order-details .asaas-pix-copy-to-clipboard,
.woocommerce-order-received .woocommerce-order-details .asaas-pix-copy-to-clipboard > div {
  width: 100%;
  max-width: 100%;
}

.woocommerce-order-received .woocommerce-order-details .asaas-pix-copy-to-clipboard > div {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.woocommerce-order-received .woocommerce-order-details .woocommerce-order-details__asaas-pix-payload {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  height: auto;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--exor-border);
  border-radius: 6px;
  background: #F7F7F7;
  color: var(--exor-text);
  font-size: 13px;
  line-height: 1.55;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  overflow: visible;
  overflow-x: visible;
}

.woocommerce-order-received .woocommerce-order-details .woocommerce-order-details__asaas-pix-code {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.woocommerce-order-received .woocommerce-order-details .woocommerce-order-details__asaas-pix-button {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  max-width: 100%;
  margin: 0;
  white-space: normal;
  text-align: center;
}

/* Tabela de detalhes do pedido. */
.woocommerce-order-received table.woocommerce-table--order-details {
  width: 100%;
  margin: 0;
  border: 1px solid var(--exor-border);
  border-collapse: collapse;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

.woocommerce-order-received table.woocommerce-table--order-details th,
.woocommerce-order-received table.woocommerce-table--order-details td {
  padding: 12px 16px;
  border: 1px solid var(--exor-border);
  text-align: left;
  vertical-align: top;
  color: var(--exor-text);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.woocommerce-order-received table.woocommerce-table--order-details thead th {
  background: #F7F7F7;
  font-weight: 700;
}

.woocommerce-order-received table.woocommerce-table--order-details tfoot th {
  font-weight: 600;
}

.woocommerce-order-received table.woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-order-received table.woocommerce-table--order-details tfoot tr:last-child td {
  font-weight: 700;
}

/* Produto e links: cor da identidade, sem rosa/magenta padrao. */
.woocommerce-order-received table.woocommerce-table--order-details .product-name a,
.woocommerce-order-received table.woocommerce-table--order-details a {
  color: var(--exor-text);
  text-decoration: none;
}

.woocommerce-order-received table.woocommerce-table--order-details a:hover {
  text-decoration: underline;
}

.woocommerce-order-received .woocommerce-Price-amount {
  white-space: nowrap;
}

/* Endereco de cobranca — card discreto (padrao Minha Conta). */
.woocommerce-order-received .woocommerce-customer-details .col2-set {
  width: 100%;
  margin: 0;
}

.woocommerce-order-received .woocommerce-customer-details .col2-set .col-1,
.woocommerce-order-received .woocommerce-customer-details .col2-set .col-2 {
  float: none;
  width: 100%;
}

.woocommerce-order-received .woocommerce-customer-details address {
  width: 100%;
  margin: 0;
  padding: 20px 22px;
  border: 1px solid var(--exor-border);
  border-radius: 6px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: var(--exor-text);
}

/* Mobile: mesma margem lateral, sem estouro horizontal. */
@media (max-width: 767px) {
  .woocommerce-order-received .woocommerce-order {
    max-width: 100%;
    padding: 0 16px;
  }

  .woocommerce-order-received ul.woocommerce-order-overview {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .woocommerce-order-received table.woocommerce-table--order-details {
    font-size: 13px;
  }

  .woocommerce-order-received table.woocommerce-table--order-details th,
  .woocommerce-order-received table.woocommerce-table--order-details td {
    padding: 10px 12px;
  }
}

/* =========================
   Carrinho — calculo de frete (CEP) sempre visivel
   -------------------------
   Abre o formulario .shipping-calculator-form (que vem com style="display:none"
   inline) e esconde o link de toggle "Calcular frete/Mudar endereco", para o
   cliente ver o campo de CEP direto na secao "Envio". Os campos pais/estado/
   cidade ja sao removidos via PHP (cart-shipping-calculator.php) — fica so o CEP.
   Escopo: somente .woocommerce-cart. Nao afeta checkout, mini-cart nem PDP.
   ========================= */
.woocommerce-cart .woocommerce-shipping-calculator .shipping-calculator-button {
  display: none !important;
}

.woocommerce-cart .woocommerce-shipping-calculator .shipping-calculator-form {
  display: block !important;
  margin: 8px 0 0;
}

.woocommerce-cart .woocommerce-shipping-calculator .form-row {
  margin: 0 0 10px;
}

.woocommerce-cart .woocommerce-shipping-calculator label {
  display: block;
  margin: 0 0 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #5E5E5E;
}

.woocommerce-cart .woocommerce-shipping-calculator .input-text {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid #1E1E1E;
  border-radius: 2px;
  box-shadow: none;
  background: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #1E1E1E;
}

.woocommerce-cart .woocommerce-shipping-calculator .input-text:focus {
  outline: none;
  border-color: #1E1E1E;
}

.woocommerce-cart .woocommerce-shipping-calculator button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid #1E1E1E !important;
  border-radius: 2px !important;
  background: #1E1E1E !important;
  color: #E5E5E5 !important;
  box-shadow: none !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  cursor: pointer;
  transition: background-color 0.18s ease;
}

.woocommerce-cart .woocommerce-shipping-calculator button:hover,
.woocommerce-cart .woocommerce-shipping-calculator button:focus {
  background: #333333 !important;
  color: #E5E5E5 !important;
}

/* =========================
   Carrinho — resumo: envio antes do CEP + linha informativa do Pix
   -------------------------
   (1) Enquanto o carrinho ainda nao tem CEP (body.exclusive-cart-needs-cep,
   setado via PHP em cart-summary.php), escondemos os metodos de envio e o texto
   de destino, deixando so o campo de CEP. Apos informar o CEP a classe sai e os
   metodos voltam normalmente. (2) Linha "No Pix voce paga" estilizada.
   Escopo: somente .woocommerce-cart.
   ========================= */
.woocommerce-cart.exclusive-cart-needs-cep .woocommerce-shipping-totals .woocommerce-shipping-methods,
.woocommerce-cart.exclusive-cart-needs-cep .woocommerce-shipping-totals .woocommerce-shipping-destination {
  display: none !important;
}

/* -------------------------------------------------------------------------
   Resumo do carrinho reordenado (override cart-totals.php).
   Tabela propria .exclusive-cart-totals (SEM shop_table_responsive) -> layout
   label|valor em flex consistente no desktop e no mobile (o CSS responsivo do
   WC nao força mais display:block nas linhas). CEP acima dos metodos; condicoes
   de Pix/parcelamento pequenas abaixo do valor do Total. Escopo .woocommerce-cart.
   ------------------------------------------------------------------------- */
.woocommerce-cart .cart_totals .exclusive-cart-totals,
.woocommerce-cart .cart_totals .exclusive-cart-totals > tbody {
  display: block !important;
  width: 100%;
  border: 0;
  font-family: "Montserrat", sans-serif;
}

.woocommerce-cart .cart_totals .exclusive-cart-totals tr {
  display: flex !important;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  width: 100%;
  margin: 0;
  border: 0;
}

.woocommerce-cart .cart_totals .exclusive-cart-totals th,
.woocommerce-cart .cart_totals .exclusive-cart-totals td {
  display: block !important;
  padding: 6px 0;
  border: 0;
  background: none;
  font-family: "Montserrat", sans-serif;
  color: #1E1E1E;
}

.woocommerce-cart .cart_totals .exclusive-cart-totals th {
  font-weight: 600;
  text-align: left;
}

.woocommerce-cart .cart_totals .exclusive-cart-totals td {
  text-align: right;
}

.woocommerce-cart .cart_totals .exclusive-cart-totals td::before {
  display: none !important; /* sem o data-title do modo responsivo. */
}

/* Titulo "Estimativa de entrega" (full-width). */
.woocommerce-cart .cart_totals .exclusive-cart-totals tr.exclusive-cart-section-title {
  display: block !important;
}

.woocommerce-cart .cart_totals .exclusive-cart-totals tr.exclusive-cart-section-title th {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  padding: 0 0 10px;
}

/* Area de envio (CEP + metodos) full-width, sob o titulo; "Envio" oculto. */
.woocommerce-cart .cart_totals .exclusive-cart-totals tr.woocommerce-shipping-totals,
.woocommerce-cart .cart_totals .exclusive-cart-totals tr.shipping {
  display: block !important;
}

.woocommerce-cart .cart_totals .exclusive-cart-totals tr.woocommerce-shipping-totals > th,
.woocommerce-cart .cart_totals .exclusive-cart-totals tr.shipping > th {
  display: none !important;
}

.woocommerce-cart .cart_totals .exclusive-cart-totals tr.woocommerce-shipping-totals > td,
.woocommerce-cart .cart_totals .exclusive-cart-totals tr.shipping > td {
  display: flex !important;
  flex-direction: column;
  width: 100%;
  padding: 0 0 4px;
  text-align: left;
}

/* CEP (calculador) ACIMA dos metodos/destino. */
.woocommerce-cart .cart_totals .exclusive-cart-totals .woocommerce-shipping-calculator {
  order: -1;
  margin: 0 0 10px;
}

.woocommerce-cart .cart_totals .exclusive-cart-totals .woocommerce-shipping-methods {
  margin: 0;
}

/* Separador entre envio e resumo (subtotal em diante). */
.woocommerce-cart .cart_totals .exclusive-cart-totals tr.exclusive-cart-summary-start {
  border-top: 1px solid #E5E5E5;
  margin-top: 8px;
  padding-top: 12px;
}

/* Total + condicoes (Pix/parcelamento) abaixo do valor, a direita. */
.woocommerce-cart .cart_totals .exclusive-cart-totals tr.order-total th {
  font-weight: 700;
  font-size: 1.05em;
}

.woocommerce-cart .cart_totals .exclusive-cart-totals tr.order-total td {
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.woocommerce-cart .exclusive-cart-total__value {
  font-weight: 700;
  font-size: 1.05em;
  color: #1E1E1E;
}

.woocommerce-cart .exclusive-cart-total-conditions {
  display: block;
  margin-top: 4px;
  text-align: right;
  line-height: 1.35;
}

.woocommerce-cart .exclusive-cart-total-conditions__pix {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #1E1E1E;
}

.woocommerce-cart .exclusive-cart-total-conditions__installment {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #5E5E5E;
}

/* Botao "Continuar para o pagamento" — identidade da loja (largura mantida). */
.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400 !important;
  background: #1E1E1E !important;
  color: #E5E5E5 !important;
  border: 1px solid #1E1E1E !important;
  border-radius: 2px !important;
  box-shadow: none !important;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:focus {
  background: #333333 !important;
  color: #E5E5E5 !important;
}

/* Oculta o h2 "Total no carrinho" (o bloco comeca por "Estimativa de entrega"). */
.woocommerce-cart .cart_totals > h2 {
  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;
}

/* =========================
   PDP — Swatch de COR indisponivel: X vermelho discreto sobre a bolinha.
   -------------------------
   O plugin VillaTheme ja renderiza, em TODO swatch, o elemento
   .vi-wpvs-option-out-of-stock-attribute-icon com ::before/::after cruzados a
   45deg (o "X"), mas so o exibe no modo "blur_icon". O design Color esta em
   "blur" (apenas esmaece). Aqui forcamos esse X visivel APENAS nos swatches de
   COR indisponiveis e recolorimos para um vermelho discreto (#B42318).
   - Mantem o esmaecimento atual do plugin (opacity na bolinha) — nao tocamos.
   - NAO usa o ::after da bolinha (.vi-wpvs-option-color::after), que e o
     check/setinha do swatch selecionado — sem conflito.
   - So cor (.vi-wpvs-variation-wrap-color); nao afeta tamanho (button). Sem JS.
   ========================= */
.single-product .vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock,
.single-product .vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock-attribute,
.single-product .vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock-attribute-checked,
.single-product .vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-disable {
  position: relative;
}

.single-product .vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock .vi-wpvs-option-out-of-stock-attribute-icon,
.single-product .vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock-attribute .vi-wpvs-option-out-of-stock-attribute-icon,
.single-product .vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock-attribute-checked .vi-wpvs-option-out-of-stock-attribute-icon,
.single-product .vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-disable .vi-wpvs-option-out-of-stock-attribute-icon {
  display: block !important;
  pointer-events: none;
  z-index: 3;
}

.single-product .vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock .vi-wpvs-option-out-of-stock-attribute-icon::before,
.single-product .vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock .vi-wpvs-option-out-of-stock-attribute-icon::after,
.single-product .vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock-attribute .vi-wpvs-option-out-of-stock-attribute-icon::before,
.single-product .vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock-attribute .vi-wpvs-option-out-of-stock-attribute-icon::after,
.single-product .vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock-attribute-checked .vi-wpvs-option-out-of-stock-attribute-icon::before,
.single-product .vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock-attribute-checked .vi-wpvs-option-out-of-stock-attribute-icon::after,
.single-product .vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-disable .vi-wpvs-option-out-of-stock-attribute-icon::before,
.single-product .vi-wpvs-variation-wrap-color .vi-wpvs-option-wrap.vi-wpvs-option-wrap-disable .vi-wpvs-option-out-of-stock-attribute-icon::after {
  display: block !important;
  /* X um pouco menor que a bolinha (o plugin usa width:100%), recentralizado. */
  width: 64% !important;
  left: 18% !important;
  background: #f53426 !important;
  height: 1.5px !important;
  pointer-events: none;
}

/* =========================
   PDP — Swatch de TAMANHO indisponivel: mesmo X vermelho fino das cores.
   -------------------------
   O design de tamanho (button) esta em "blur": o VillaTheme esmaece o swatch
   sem estoque mas nao mostra o X (so aparece no modo "blur_icon"). Aqui forcamos
   o mesmo icone .vi-wpvs-option-out-of-stock-attribute-icon (::before/::after ja
   cruzados a 45deg pelo plugin) visivel e vermelho, replicando o tratamento ja
   usado nas cores — so que escopado a .vi-wpvs-variation-wrap-button.
   - Aplica APENAS em variacao existente sem estoque (out-of-stock / -attribute /
     -attribute-checked). Combinacao inexistente para a cor recebe .vi-wpvs-hidden
     (display:none) pelo plugin, entao nunca ganha X — sem inventar disponibilidade.
   - Mantem o esmaecimento do plugin e o swatch clicavel (pointer-events so no X),
     para o fluxo "Avise-me" continuar funcionando.
   - Mesma cor (#f53426) e espessura (1.5px) do X de cor, para consistencia.
   ========================= */
.single-product .vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock,
.single-product .vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock-attribute,
.single-product .vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock-attribute-checked {
  position: relative;
}

.single-product .vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock .vi-wpvs-option-out-of-stock-attribute-icon,
.single-product .vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock-attribute .vi-wpvs-option-out-of-stock-attribute-icon,
.single-product .vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock-attribute-checked .vi-wpvs-option-out-of-stock-attribute-icon {
  display: block !important;
  pointer-events: none;
  z-index: 3;
}

.single-product .vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock .vi-wpvs-option-out-of-stock-attribute-icon::before,
.single-product .vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock .vi-wpvs-option-out-of-stock-attribute-icon::after,
.single-product .vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock-attribute .vi-wpvs-option-out-of-stock-attribute-icon::before,
.single-product .vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock-attribute .vi-wpvs-option-out-of-stock-attribute-icon::after,
.single-product .vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock-attribute-checked .vi-wpvs-option-out-of-stock-attribute-icon::before,
.single-product .vi-wpvs-variation-wrap-button .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock-attribute-checked .vi-wpvs-option-out-of-stock-attribute-icon::after {
  display: block !important;
  /* Botao e retangular: X cruzando de canto a canto, recortado pelo overflow. */
  width: 150% !important;
  left: -25% !important;
  background: #f53426 !important;
  height: 1.5px !important;
  pointer-events: none;
}

/* =========================
   Arquivo/categoria sem produtos: mensagem "Em breve"
   -------------------------
   Vale para o estado vazio do arquivo de cores (.eca-wrap .eca-empty, texto ja
   trocado para "Em breve" via gettext) e para o bloco nativo
   .exclusive-empty-category-message. Centralizado, Montserrat, minimalista.
   ========================= */
.exclusive-empty-category-message,
.eca-wrap .eca-empty:not([hidden]) {
  display: block;
  width: 100%;
  margin: 48px auto;
  padding: 32px 16px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  color: #1E1E1E;
}

.exclusive-empty-category-message__title,
.eca-wrap .eca-empty:not([hidden]) {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: #1E1E1E;
}

.exclusive-empty-category-message__subtitle {
  margin: 10px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #5E5E5E;
}

/* Subtitulo discreto no estado vazio do arquivo de cores (o <p> so tem o titulo). */
.eca-wrap .eca-empty:not([hidden])::after {
  content: "Novidades chegando nesta categoria.";
  display: block;
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #5E5E5E;
}

/* Quando o arquivo de cores esta vazio, esconde a contagem "0 produtos"
   (mantem a barra de filtros funcionando). */
.eca-wrap:has(.eca-empty:not([hidden])) .eca-results-count {
  display: none;
}

