/* ===========================================================
   Loja Mercado Full — CSS personalizado (tema-filho)
   Editado pelo assistente e enviado via FTP.
   =========================================================== */

/* ---------- Avatar (1ª letra) no ícone do header ---------- */
.mf-avatar-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

/* ---------- Avatar com foto (Google) no header ---------- */
.mf-avatar-img {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50% !important; /* Elementor força border-radius:0 nas imagens */
  object-fit: cover;
  vertical-align: middle;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

/* ---------- Âncora do ícone de conta: centraliza o avatar ---------- */
.mf-avatar-anchor {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

/* ===========================================================
   Padronização dos ícones do header (menu, carrinho, conta)
   Todos do mesmo tamanho e alinhados — desktop e mobile.
   =========================================================== */

/* Ícones de ação com tamanho único. */
.elementor-menu-toggle svg,
.elementor-menu-toggle i,
.elementor-menu-cart__toggle_button svg,
.mf-conta-icon svg.e-fas-user,
svg.e-fas-user {
  width: 24px !important;
  height: 24px !important;
  font-size: 24px !important;
  vertical-align: middle;
}

/* Carrinho do header vira só ícone (esconde o preço "R$ 0,00"). */
.elementor-menu-cart__toggle_button {
  padding: 0 !important;
  min-height: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  fill: currentColor;
}
.elementor-menu-cart__toggle_button .elementor-button-text {
  display: none !important;
}

/* Bolha da quantidade: compacta e alinhada ao ícone. */
.elementor-menu-cart--items-indicator-bubble .elementor-button-icon-qty {
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
}

/* Avatar logado: levemente maior que os ícones, porém proporcional. */
.mf-avatar-letter,
.mf-avatar-img {
  width: 30px !important;
  height: 30px !important;
}
.mf-avatar-letter { font-size: 14px; }

@media (max-width: 767px) {
  .elementor-menu-toggle svg,
  .elementor-menu-toggle i,
  .elementor-menu-cart__toggle_button svg,
  .mf-conta-icon svg.e-fas-user,
  svg.e-fas-user {
    width: 22px !important;
    height: 22px !important;
    font-size: 22px !important;
  }
  .mf-avatar-letter,
  .mf-avatar-img {
    width: 28px !important;
    height: 28px !important;
  }
  .mf-avatar-letter { font-size: 13px; }
}

/* ===========================================================
   Popup de conta (login / mini-menu)
   =========================================================== */
.mf-acc-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.mf-acc-overlay.mf-aberto {
  opacity: 1;
  visibility: visible;
}

.mf-acc-box {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: rgba(17, 17, 17, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 34px 28px 28px;
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.mf-acc-overlay.mf-aberto .mf-acc-box {
  transform: translateY(0) scale(1);
}

.mf-acc-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 0;
  cursor: pointer;
  transform-origin: center center;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.mf-acc-close:hover {
  background: #dc2626;
  color: #fff;
  transform: rotate(90deg) scale(1.06);
  box-shadow: 0 0 14px rgba(220, 38, 38, 0.55);
}
.mf-acc-close:active {
  transform: rotate(90deg) scale(0.92);
}

.mf-acc-title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

/* ---------- Botão Google ---------- */
.mf-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: #fff;
  color: #1f2937;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease;
}
.mf-google-btn:hover { box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18); }
.mf-google-btn:active { transform: scale(0.97); }
.mf-google-btn svg { flex: 0 0 auto; }

.mf-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mf-or::before,
.mf-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

/* ---------- Formulário ---------- */
.mf-acc-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mf-acc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.mf-acc-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.mf-acc-field input:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.mf-acc-passwrap {
  position: relative;
  display: block;
}
.mf-acc-passwrap input {
  padding-right: 44px;
}
.mf-acc-eye {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0 !important;
  border: none !important;
  border-radius: 8px;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.55) !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.mf-acc-eye:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}
/* Dois ícones empilhados: troca suave (fade + zoom). Padrão = fechado. */
.mf-acc-eye .mf-eye {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
/* Sem classe = senha oculta => mostra olho FECHADO. */
.mf-acc-eye .mf-eye-off {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
/* .mf-revelado = senha visível => mostra olho ABERTO. */
.mf-acc-eye.mf-revelado .mf-eye-on {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.mf-acc-eye.mf-revelado .mf-eye-off {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
}

.mf-acc-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.mf-acc-remember input { accent-color: #fff; }

.mf-acc-msg {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(220, 38, 38, 0.22);
  border: 1px solid rgba(248, 113, 113, 0.65);
  color: #fecaca;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}
/* Mensagem de sucesso (ex.: link de recuperação enviado). */
.mf-acc-msg.mf-acc-msg-ok {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(74, 222, 128, 0.6);
  color: #bbf7d0;
}

/* Subtítulo de apoio dentro do popup (ex.: tela recuperar senha). */
.mf-acc-sub {
  margin: -4px 0 16px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.mf-acc-submit,
.mf-acc-submit:hover,
.mf-acc-submit:focus,
.mf-acc-submit:active {
  margin-top: 4px;
  width: 100%;
  padding: 13px;
  border: none !important;
  border-radius: 10px;
  background: #fff !important;   /* neutro: anula o rosa do tema Elementor */
  color: #000 !important;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
/* Mantém o efeito/brilho que você gostou, só com brilho azulado da paleta. */
.mf-acc-submit:hover { box-shadow: 0 8px 26px rgba(59, 130, 246, 0.35); }
.mf-acc-submit:active { transform: scale(0.96); }
.mf-acc-submit[disabled] { opacity: 0.6; cursor: wait; }

.mf-acc-forgot {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.mf-acc-forgot:hover { color: #fff; text-decoration: underline; }

.mf-acc-register {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.mf-acc-register a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.mf-acc-register a:hover { text-decoration: underline; }

/* ---------- Mini-menu (logado) ---------- */
.mf-acc-avatar-lg {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 28px;
  font-weight: 700;
  overflow: hidden;
}
.mf-acc-avatar-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.mf-acc-link {
  display: block;
  margin-top: 10px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease, transform 0.12s ease;
}
/* Cor forçada (anula azul/rosa de link visitado e hover do tema). */
.mf-acc-link,
.mf-acc-link:link,
.mf-acc-link:visited { color: #fff !important; }
.mf-acc-link:hover,
.mf-acc-link:focus {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.3);
}
.mf-acc-link:active { transform: scale(0.97); }
.mf-acc-logout,
.mf-acc-logout:link,
.mf-acc-logout:visited {
  margin-top: 16px;
  border-color: rgba(220, 38, 38, 0.5);
  color: #fca5a5 !important;
}
.mf-acc-logout:hover,
.mf-acc-logout:focus {
  color: #fecaca !important;
  background: rgba(220, 38, 38, 0.18) !important;
}

/* ===========================================================
   MENU LATERAL (drawer) — tema-filho
   Cobre TODA a tela (inclusive o header), igual ao popup.
   =========================================================== */

/* Neutraliza o overlay antigo do Custom Code do Elementor. */
#mf-overlay { display: none !important; }

.mf-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 100001; /* acima do header e do popup */
  display: flex;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mf-menu-overlay.mf-aberto {
  opacity: 1;
  visibility: visible;
}

.mf-menu-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  padding: 26px 22px 30px;
  background: rgba(15, 15, 15, 0.98);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 24px 0 70px rgba(0, 0, 0, 0.6);
  color: #fff;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}
.mf-menu-overlay.mf-aberto .mf-menu-panel {
  transform: translateX(0);
}

/* ---------- Botão fechar (animação vermelha) ---------- */
.mf-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 0;
  cursor: pointer;
  transform-origin: center center;
  transition: background 0.2s ease, transform 0.25s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.mf-menu-close:hover {
  background: #dc2626;
  color: #fff;
  transform: rotate(90deg) scale(1.06);
  box-shadow: 0 0 14px rgba(220, 38, 38, 0.55);
}
.mf-menu-close:active { transform: rotate(90deg) scale(0.92); }

/* SVG do X centralizado nos botões de fechar. */
.mf-acc-close svg,
.mf-menu-close svg {
  display: block;
  width: 15px;
  height: 15px;
}

/* ---------- Bloco do usuário (logado) ---------- */
.mf-menu-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mf-menu-avatar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  overflow: hidden;
}
.mf-menu-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.mf-menu-user-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.mf-menu-hi {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.mf-menu-email {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Botão Entrar / Cadastrar (deslogado) ---------- */
.mf-menu-entrar {
  width: 100%;
  margin: 6px 0 22px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: #fff;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease;
}
.mf-menu-entrar:hover { box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18); }
.mf-menu-entrar:active { transform: scale(0.97); }

/* ---------- Navegação ---------- */
.mf-menu-nav,
.mf-menu-conta {
  display: flex;
  flex-direction: column;
}
.mf-menu-label {
  margin: 22px 0 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}
.mf-menu-item {
  position: relative;
  padding: 14px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.mf-menu-item:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  padding-left: 18px;
}
.mf-menu-sair {
  margin-top: 10px;
  color: #fca5a5;
}
.mf-menu-sair:hover {
  background: rgba(220, 38, 38, 0.12);
  color: #fff;
}

/* ---------- Animação do botão hambúrguer (abrir) ---------- */
.elementor-menu-toggle {
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}
.elementor-menu-toggle:hover {
  transform: scale(1.12);
}
.elementor-menu-toggle:active {
  transform: scale(0.9);
}

/* ---------- Submenu "Minha Conta" (colapsável) ---------- */
.mf-menu-conta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mf-menu-sub-toggle,
.mf-menu-sub-toggle:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04) !important; /* neutro: anula o rosa do tema */
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.mf-menu-sub-toggle:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: #fff !important;
}
.mf-menu-sub-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.08) !important;
}
.mf-menu-chevron {
  flex: 0 0 auto;
  transition: transform 0.28s ease;
}
.mf-menu-sub-toggle[aria-expanded="true"] .mf-menu-chevron {
  transform: rotate(180deg);
}
.mf-menu-sub {
  display: flex;
  flex-direction: column;
  margin: 2px 0 0 10px;
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mf-menu-sub.mf-aberto {
  max-height: 240px;
}
.mf-menu-sub .mf-menu-item {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.mf-menu-sub .mf-menu-item:hover {
  color: #fff;
}

/* ---------- Responsivo (celular) ---------- */
@media (max-width: 767px) {
  .mf-menu-panel {
    width: 300px;
    padding: 22px 18px 26px;
  }
}

/* ===========================================================
   CARRINHO (side cart do Elementor) — mesmo padrão escuro
   =========================================================== */

/* Bubble da quantidade no header: branco/preto (padrão da marca). */
.elementor-menu-cart--items-indicator-bubble .elementor-button-icon-qty {
  background-color: #fff !important;
  color: #000 !important;
  font-weight: 700;
}

/* Fundo (backdrop) cobre a tela toda, inclusive o header. */
.elementor-menu-cart__container.elementor-lightbox {
  z-index: 100001 !important;
  background: rgba(0, 0, 0, 0.65) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Painel do carrinho (lado direito), escuro. */
.elementor-menu-cart__main {
  width: 380px !important;
  max-width: 90vw !important;
  padding: 26px 22px 24px !important;
  background: rgba(15, 15, 15, 0.98) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.6) !important;
  color: #fff !important;
}
.elementor-menu-cart__main,
.elementor-menu-cart__main * {
  color: #fff;
}

/* Botão fechar (X) com animação vermelha. */
.elementor-menu-cart__close-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  line-height: 0;
  cursor: pointer;
  transform-origin: center center;
  transition: background 0.2s ease, transform 0.25s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.elementor-menu-cart__close-button:hover {
  background: #dc2626 !important;
  color: #fff !important;
  transform: rotate(90deg) scale(1.06);
  box-shadow: 0 0 14px rgba(220, 38, 38, 0.55);
}
.elementor-menu-cart__close-button i,
.elementor-menu-cart__close-button svg {
  font-size: 15px !important;
  width: 15px !important;
  height: 15px !important;
  line-height: 1;
}

/* Itens do mini-carrinho. */
.elementor-menu-cart__main .woocommerce-mini-cart {
  margin: 0;
  padding: 0;
}
.elementor-menu-cart__main .woocommerce-mini-cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.elementor-menu-cart__main .woocommerce-mini-cart-item img {
  width: 54px !important;
  height: 54px !important;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.elementor-menu-cart__main .woocommerce-mini-cart-item a:not(.remove) {
  color: #fff !important;
  text-decoration: none;
  font-size: 14px;
}
.elementor-menu-cart__main .quantity {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 13px;
}

/* Botão remover item (x) — fica vermelho ao passar o mouse. */
.elementor-menu-cart__main .remove,
.elementor-menu-cart__main .remove_from_cart_button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.elementor-menu-cart__main .remove:hover,
.elementor-menu-cart__main .remove_from_cart_button:hover {
  background: #dc2626 !important;
  color: #fff !important;
  transform: scale(1.1);
}

/* Subtotal. */
.elementor-menu-cart__main .woocommerce-mini-cart__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 16px;
}
.elementor-menu-cart__main .woocommerce-mini-cart__total strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* Mensagem de carrinho vazio. */
.elementor-menu-cart__main .woocommerce-mini-cart__empty-message,
.elementor-menu-cart__main .elementor-menu-cart__products + p,
.elementor-menu-cart__main .e-cart-empty,
.elementor-menu-cart__main p:only-child {
  color: rgba(255, 255, 255, 0.55) !important;
  text-align: center;
  padding: 30px 0;
}

/* Botões: "Ver carrinho" (secundário) e "Finalizar compra" (principal). */
.elementor-menu-cart__main .woocommerce-mini-cart__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.elementor-menu-cart__main .woocommerce-mini-cart__buttons .button {
  display: block;
  width: 100%;
  padding: 13px 16px !important;
  border-radius: 10px !important;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
/* "Ver carrinho" — contorno. */
.elementor-menu-cart__main .woocommerce-mini-cart__buttons .button:not(.checkout) {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #fff !important;
}
.elementor-menu-cart__main .woocommerce-mini-cart__buttons .button:not(.checkout):hover {
  background: rgba(255, 255, 255, 0.08) !important;
}
/* "Finalizar compra" — branco cheio. */
.elementor-menu-cart__main .woocommerce-mini-cart__buttons .button.checkout {
  background: #fff !important;
  color: #000 !important;
  border: none !important;
}
.elementor-menu-cart__main .woocommerce-mini-cart__buttons .button.checkout:hover {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18);
}
.elementor-menu-cart__main .woocommerce-mini-cart__buttons .button:active {
  transform: scale(0.97);
}

/* ===========================================================
   FOOTER — clean e padronizado (mantém o conteúdo do Elementor)
   =========================================================== */
.elementor-location-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.elementor-location-footer .elementor-heading-title {
  color: #fff;
}
/* Copyright e textos secundários mais discretos. */
.elementor-location-footer p.elementor-heading-title {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* Redes sociais padronizadas. */
.elementor-location-footer .elementor-social-icon {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
  transition: transform 0.2s ease, background 0.2s ease;
}
.elementor-location-footer .elementor-social-icon:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  transform: translateY(-2px);
}
.elementor-location-footer .elementor-social-icon svg {
  fill: currentColor;
}

/* Nome do site no rodapé: pequeno, centralizado e discreto
   (estava gigante porque o Elementor define o tamanho no h2). */
.elementor-location-footer .elementor-widget-theme-site-title .elementor-heading-title,
.elementor-location-footer .elementor-widget-theme-site-title .elementor-heading-title a {
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.elementor-location-footer .elementor-widget-theme-site-title .elementor-heading-title a:hover {
  color: #fff !important;
}
/* Remove a barra inferior "Mercado Full" (nome do site com link). */
.elementor-location-footer .elementor-element-6e5a3b2 {
  display: none !important;
}

/* Permite que o nav quebre para uma linha própria (full-width) abaixo do logo/redes. */
.elementor-location-footer .elementor-element-b3d7d6d {
  flex-wrap: wrap !important;
}

/* Links do menu adicionados ao rodapé (injetados pelo mf.js).
   Faixa full-width DENTRO do footer escuro, centralizada, com separador acima. */
.mf-footer-nav {
  order: 99;            /* garante que fique por último, abaixo dos outros */
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 100%;
  justify-content: center;
  align-items: center;
  gap: 10px 28px;
  width: 100%;
  margin: 26px 0 0;
  padding: 22px 16px 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mf-footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.mf-footer-nav a:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .mf-footer-nav {
    gap: 8px 18px;
    padding: 16px 12px;
  }
  .mf-footer-nav a { font-size: 13px; }
}

/* ============================================================
   Página "Senha perdida" (/my-account/lost-password/)
   Restyle no padrão escuro. O 1º container fica para propaganda/vídeo;
   nele só padronizamos os botões. O 2º (formulário) vira card escuro.
   ============================================================ */

/* Título "Sua Conta:" (icon-list) — menor e limpo. */
.woocommerce-lost-password .elementor-widget-icon-list .elementor-icon-list-text {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #fff !important;
}
.woocommerce-lost-password .elementor-widget-icon-list .elementor-icon-list-icon svg {
  width: 22px !important;
  height: 22px !important;
  fill: #fff !important;
}
.woocommerce-lost-password .elementor-widget-icon-list .elementor-icon-list-item {
  align-items: center;
}

/* Remove o breadcrumb (Início / Minha Conta / Senha perdida). */
.woocommerce-lost-password .elementor-widget-woocommerce-breadcrumb {
  display: none !important;
}

/* Link discreto "voltar" injetado via JS abaixo do form. */
.mf-lost-back {
  display: block;
  max-width: 460px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.mf-lost-back a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
}
.mf-lost-back a:hover { color: #fff; text-decoration: underline; }

/* Neutraliza o fundo BRANCO do wrapper do widget Minha Conta do Elementor. */
.woocommerce-lost-password .elementor-widget-woocommerce-my-account,
.woocommerce-lost-password .e-my-account-tab,
.woocommerce-lost-password .e-my-account-tab > .woocommerce,
.woocommerce-lost-password .woocommerce-MyAccount-content {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Card do formulário no padrão escuro. */
.woocommerce-lost-password .woocommerce-ResetPassword.lost_reset_password {
  max-width: 460px;
  margin: 8px auto 0;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px !important;
}
.woocommerce-lost-password .woocommerce-ResetPassword .form-row-first,
.woocommerce-lost-password .woocommerce-ResetPassword .form-row {
  width: 100%;
  float: none;
  margin: 0 0 14px;
}
.woocommerce-lost-password .woocommerce-ResetPassword > p:first-of-type {
  margin: 0 0 18px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}
.woocommerce-lost-password .woocommerce-ResetPassword label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-Input--text,
.woocommerce-lost-password .woocommerce-ResetPassword input.input-text {
  width: 100% !important;
  padding: 13px 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #fff !important;
  font-size: 15px !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.woocommerce-lost-password .woocommerce-ResetPassword input.input-text::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.woocommerce-lost-password .woocommerce-ResetPassword input.input-text:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6) !important;
  background: rgba(255, 255, 255, 0.09) !important;
}
.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-Button {
  width: 100%;
  margin-top: 4px;
  padding: 13px;
  border: none;
  border-radius: 10px;
  background: #fff !important;
  color: #000 !important;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease;
}
.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-Button:hover {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18);
}
.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-Button:active {
  transform: scale(0.97);
}

/* 1º container (propaganda) — só padroniza os botões definidos.
   "Ver Produtos" = branco; "Fale Conosco" = contorno. */
.woocommerce-lost-password .elementor-element-dfc9a06 .elementor-button {
  border-radius: 10px !important;
  font-weight: 700 !important;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}
.woocommerce-lost-password .elementor-element-564d69e .elementor-button {
  background: #fff !important;
  color: #000 !important;
  border: 1px solid #fff !important;
}
.woocommerce-lost-password .elementor-element-564d69e .elementor-button:hover {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18) !important;
}
.woocommerce-lost-password .elementor-element-854deaf .elementor-button {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
}
.woocommerce-lost-password .elementor-element-854deaf .elementor-button:hover {
  background: rgba(255, 255, 255, 0.08) !important;
}
.woocommerce-lost-password .elementor-element-dfc9a06 .elementor-button:active {
  transform: scale(0.97) !important;
}
