/* Trend header critical tweaks for 1:1 look with Nuvemshop */

/* Prevent horizontal scroll on all devices */
html {
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    margin: 0;
    padding: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Adbar (pink strip) */
.section-advertising { 
    background: #fd64c4; 
    background: linear-gradient(180deg, rgba(253,100,196,.9) 0%, rgba(253,100,196,.8) 100%);
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}
.section-advertising .container-fluid { 
    font-family: 'Montserrat', Arial, sans-serif; 
    font-size: 12px; 
    text-align: center; 
    padding: 7px 10px; 
    color: #fff; 
    font-weight: 700; 
    letter-spacing: .5px;
}

/* Top contact bar */
.nav-head-top.header-bar-top { 
    background: #fff; 
    border-bottom: 1px solid #ecf0f1; 
    padding: 0;
    min-height: 42px;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}
.nav-head-top .container {
    height: 100%;
}
.nav-head-top .row { 
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center; 
    justify-content: space-between; 
    margin-left: -15px; 
    margin-right: -15px;
    min-height: 42px;
}
.nav-head-top .col-sm-6 { 
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding-left: 15px; 
    padding-right: 15px;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
}
.nav-head-top .col-sm-6.text-right { 
    justify-content: flex-end !important;
}
.nav-head-top .col-sm-6.text-left { 
    justify-content: flex-start !important;
}
.nav-head-top .list-unstyled,
.nav-head-top .list-inline { 
    list-style: none; 
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    flex-wrap: nowrap;
}
.nav-head-top .list-inline > li { 
    display: inline-flex !important;
    align-items: center;
    padding: 10px 12px; 
    margin: 0 !important;
    white-space: nowrap; 
}
.nav-head-top .border-right { 
    border-right: 1px solid #ecf0f1; 
    padding-right: 12px;
    margin-right: 0;
}
.nav-head-top a { 
    color: #36393d; 
    text-decoration: none; 
    transition: color 0.2s ease; 
    font-size: 13px;
    display: inline-block;
}
.nav-head-top a:hover { 
    color: #fd64c4; 
}
.nav-head-top .phone,
.nav-head-top .mail {
    font-size: 13px;
    color: #36393d;
}

/* Main header */
.nav-head { 
    background: #fff; 
    position: relative;
    box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.15);
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}
.nav-head .js-nav-head-main {
    position: relative;
    padding: 18px 0;
}
.nav-head .js-nav-head-main::after {
    content: none !important;
    display: none !important;
}

/* Full-width divider under header main */
.nav-head::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ecf0f1; /* uniform 1px divider */
    box-shadow: none; /* keep shadow only on .nav-head to avoid stacking */
    pointer-events: none;
}
.nav-head .nav-head-main { display: grid; grid-template-columns: auto 1fr auto; align-items: center; column-gap: 32px; }

/* Breakpoints para compactar em até 2 linhas (máx. 3 quando necessário) */
@media (min-width: 1280px) {
  .nav-head .desktop-nav { gap: 18px; row-gap: 8px; flex-wrap: wrap; }
  .nav-head .desktop-nav .desktop-nav-link { font-size: 13px; padding: 8px 8px; }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .nav-head .desktop-nav { gap: 12px; row-gap: 6px; flex-wrap: wrap; }
  .nav-head .desktop-nav .desktop-nav-link { font-size: 12.5px; padding: 7px 6px; }
}

@media (min-width: 900px) and (max-width: 1023px) {
  .nav-head .desktop-nav { gap: 10px; row-gap: 6px; flex-wrap: wrap; }
  .nav-head .desktop-nav .desktop-nav-link { font-size: 12px; padding: 6px 6px; }
}

/* Logo */
.logo-container { display: flex; align-items: center; }
#logo .logo-img, #logo img { display: block; max-height: 130px; height: auto; width: auto; }
.site-title-text { font-size: 28px; font-weight: 700; color: #fd64c4; text-transform: uppercase; letter-spacing: 2px; }

/* Desktop nav */
.nav-head .desktop-nav { list-style: none; margin: 10px 0; padding: 0 10px; display: flex !important; align-items: center; justify-content: center; gap: 16px; row-gap: 8px; flex-wrap: wrap; }
.desktop-nav-item { position: relative; }
.nav-head .desktop-nav .desktop-nav-link { 
    color: #36393d; 
    text-decoration: none; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: 700; 
    font-size: 13px; 
    padding: 8px 6px; 
    display: inline-block; 
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
}

/* Hover effect - just color change, no underline */
.nav-head .desktop-nav .desktop-nav-link:hover,
.nav-head .desktop-nav .desktop-nav-link:focus,
.nav-head .desktop-nav .desktop-nav-item.selected > .desktop-nav-link { 
    color: #fd64c4; 
}

.desktop-nav-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ecf0f1;
    border-radius: 4px;
    min-width: 200px;
    max-width: 300px;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transform: translateY(10px);
}

.desktop-nav-item:hover > .desktop-nav-list,
.desktop-nav-list:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.desktop-nav-list .desktop-nav-item { display: block; }
.desktop-nav-list .desktop-nav-link { 
    display: block; 
    padding: 8px 14px; 
    font-weight: 400; 
    text-transform: none; 
    letter-spacing: 0;
}

.desktop-nav-list .desktop-nav-link:hover {
    background-color: #f8f9fa;
}

/* Overlay shown while hovering menu */
.desktop-nav-overlay { 
    display: none; 
    position: fixed; 
    inset: 0; 
    z-index: 90; 
    background: rgba(0,0,0,0); 
    pointer-events: none;
}

/* Screen reader text / skip links (WP default) */
.screen-reader-text,
.skip-link { position:absolute; clip:rect(1px,1px,1px,1px); clip-path:inset(50%); height:1px; width:1px; overflow:hidden; white-space:nowrap; }
.screen-reader-text:focus,
.skip-link:focus { clip:auto; clip-path:none; height:auto; width:auto; display:inline-block; background:#000; color:#fff; padding:15px; z-index:9999; }

/* Search + cart */
.nav-head .d-flex.hidden-xs { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.desktop-search { margin: 0; }
.desktop-search .form-group { position: relative; }
.desktop-search-input { width: 230px; height: 40px; padding: 8px 44px 8px 16px; border: 1px solid #eaedf3; border-radius: 22px; font-size: 14px; background: #fff; box-shadow: none; transition: border-color .2s ease, box-shadow .2s ease; }
.desktop-search-input:focus { border-color: #b7cdf3; box-shadow: 0 0 0 3px rgba(38,132,255,.18); outline: 0; }
.desktop-search-submit { position: absolute; right: 6px; top: 6px; height: 28px; width: 28px; border: 0; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 1px 2px rgba(0,0,0,.10); }
.desktop-search-icon { display: flex; align-items: center; justify-content: center; width: 16px; height: 16px; }
.desktop-search .svg-search-icon { width: 16px; height: 16px; fill: #6d6d6d; }
.desktop-search .desktop-search-input::placeholder { color: #b3b3b3; }
.desktop-search .form-group::before { content: none !important; display: none !important; }

/* Cart */
#ls_cart_widget .cart-summary { display: flex; align-items: center; }
.cart-summary-link { display: flex; align-items: center; gap: 10px; color: #36393d; text-decoration: none; height: 40px; }
.cart-summary-icon { position: relative; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; }
.cart-summary-icon svg { width: 26px; height: 26px; }
.cart-summary-badge { position: absolute; top: -10px; right: -10px; background: #fd64c4; color: #fff; font-size: 11px; height: 18px; line-height: 18px; min-width: 18px; padding: 0 5px; text-align: center; border-radius: 18px; box-shadow: 0 1px 2px rgba(0,0,0,.15); }
.cart-summary-total { font-weight: 400; font-size: 13px; color: #6f6f6f; }

/* Flex helper to keep search and cart on the same row */
.d-flex { display: flex; align-items: center; gap: 18px; }

/* Helpers (fallbacks without full Bootstrap) */
.container { 
    max-width: 1170px; 
    margin: 0 auto; 
    padding: 0 15px;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}
.container-fluid { 
    width: 100%; 
    padding-left: 15px; 
    padding-right: 15px;
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}
.row { 
    display: flex; 
    flex-wrap: wrap; 
    margin-left: -15px; 
    margin-right: -15px;
    max-width: 100%;
}
.col-sm-6 { width: 50%; padding-left: 15px; padding-right: 15px; }
.col-sm-6.text-right { text-align: right; }
.col-sm-6.text-left { text-align: left; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.hidden-xs { display: block; }
.visible-xs { display: none; }
.m-none { margin: 0 !important; }
.p-relative { position: relative; }

/* Mobile breakpoint - Show mobile, hide desktop */
@media (max-width: 767px) { 
    .hidden-xs { display: none !important; } 
    .visible-xs { 
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    /* Stack columns on mobile */
    .col-sm-6 { width: 100%; }
}

/* Remove bordas indesejadas mas mantém as do header principal */
.nav-head .container, .nav-head .nav-head-main { border: 0 !important; box-shadow: none !important; }

/* Mini-cart off-canvas */
.trend-mini-cart-backdrop{ position: fixed; inset: 0; background: rgba(0,0,0,.35); opacity: 0; visibility: hidden; transition: opacity .2s ease; z-index: 999; }
.trend-mini-cart-panel{ position: fixed; top: 0; right: -420px; width: 420px; max-width: 92vw; height: 100vh; background: #fff; box-shadow: -2px 0 10px rgba(0,0,0,.15); transition: right .25s ease; z-index: 1000; display: flex; flex-direction: column; }
.trend-mini-cart-header{ display: flex; align-items: center; justify-content: space-between; padding: 16px; border-bottom: 1px solid #eee; }
.trend-mini-cart-title{ display: flex; justify-content: space-between; gap: 24px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 12px; width: 100%; }
.trend-mini-cart-close{ background: none; border: 0; font-size: 28px; line-height: 1; cursor: pointer; color: #666; }
.trend-mini-cart-body{ padding: 16px; overflow: auto; }

body.mini-cart-open .trend-mini-cart-backdrop{ opacity: 1; visibility: visible; }
body.mini-cart-open .trend-mini-cart-panel{ right: 0; }

/* Screen reader text / skip link (WP output) */
.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}
.screen-reader-text:focus,
.skip-link:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    clip-path: none;
    padding: 12px 18px;
    background: #000;
    color: #fff;
    text-decoration: none;
    z-index: 9999;
}

/* =====================================================
   MOBILE RESPONSIVE STYLES
   ===================================================== */

/* Mobile navigation container */
/* IMPORTANT: This should be visible on mobile (< 768px) on ALL pages */
.mobile-nav {
    display: none;
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
    z-index: 9999;
}

/* Force hide desktop elements on small screens */
@media (max-width: 767px) {
    .mobile-nav {
        display: block !important;
    }
}

/* First Row: Hamburger + INÍCIO (ao lado) | Search - FINA COMO NUVEMSHOP */
.mobile-nav-first-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 15px;
    background: #fff;
    border-bottom: none !important;
    border: none !important;
    width: 100%;
    box-sizing: border-box;
    min-height: 38px;
}

.btn-hamburger {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: 0;
    padding: 0;
    margin-right: 6px;
    flex-shrink: 0;
}

.btn-hamburger svg {
    width: 22px;
    height: 22px;
    fill: #36393d;
}

.mobile-nav-inicio {
    flex: 1;
    text-align: left;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 16px;
    color: #fd64c4;
    margin-left: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-search-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: 0;
    padding: 0;
    flex-shrink: 0;
}

.mobile-search-btn svg {
    width: 26px;
    height: 26px;
    fill: #36393d;
}

/* Mobile search row (substitui a primeira linha quando aberta) */
.mobile-nav-search-row {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 6px 15px;
    border-bottom: none !important;
    border: none !important;
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    z-index: 10003 !important; /* ACIMA do backdrop (10001) */
    box-shadow: none !important; /* SEM sombra */
    background-color: white;
    z-index: 1050;
    position: relative;
}

/* Quando visível, usar flex para centralizar */
.mobile-nav-search-row[style*="display: block"],
.mobile-nav-search-row:not([style*="display: none"]) {
    display: flex !important;
    align-items: center;
}

.mobile-search-form {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.mobile-search-input-container {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.mobile-search-input-back {
    background: none;
    border: 0;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0;
}

.mobile-search-input-back svg {
    width: 22px;
    height: 22px;
    fill: #36393d;
}

.mobile-search-input {
    flex: 1;
    height: 40px;
    padding: 10px 6px;
    border: 0;
    font-size: 14px;
    background: #fff;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
    margin: 0;
    font-weight: bold !important; /* Texto em negrito */
    color: #36393d !important;
}

/* Placeholder em negrito e com primeira letra minúscula forçada via CSS */
.mobile-search-input::placeholder {
    font-weight: bold !important;
    color: #36393d !important;
    opacity: 0.7;
}

.mobile-search-input:focus {
    outline: 0;
    border: 0;
    box-shadow: none;
}

.mobile-search-input-submit {
    background: none;
    border: 0;
    width: 28px;
    height: 28px;
    padding: 0;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-search-input-submit svg {
    width: 26px;
    height: 26px;
    fill: #36393d;
}

/* Search backdrop (tela escura) */
.search-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Mais escuro (60%) */
    z-index: 10001 !important; /* ABAIXO da search row (10003) */
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}

.search-backdrop.search-open {
    display: block !important;
    opacity: 1;
}

/* FORÇA a search row ficar ACIMA do backdrop quando busca aberta */
body.search-open .mobile-nav-search-row {
    display: flex !important;
    z-index: 10003 !important;
    background: #fff !important;
    box-shadow: none !important;
    border-bottom: 3px solid #fd64c4 !important;
}

/* Garante que input, botões e SVGs fiquem visíveis */
body.search-open .mobile-search-input-container,
body.search-open .mobile-search-input,
body.search-open .mobile-search-input-back,
body.search-open .mobile-search-input-submit {
    position: relative;
    z-index: 10004 !important;
    background: #fff !important;
}

body.search-open .mobile-search-input {
    font-weight: bold !important;
    color: #36393d !important;
}

body.search-open .mobile-search-input::placeholder {
    font-weight: bold !important;
    color: #36393d !important;
    opacity: 0.7;
}

body.search-open .mobile-search-input-back svg,
body.search-open .mobile-search-input-submit svg {
    fill: #36393d !important;
    opacity: 1 !important;
}

/* Oculta a lupa da header quando a barra de busca está ativa */
body.search-open .mobile-search-btn {
    display: none !important;
}

/* Backdrop mais escuro e sem sombra extra */
.search-backdrop.search-open {
    background: rgba(0,0,0,0.65) !important;
    box-shadow: none !important;
}

/* Prevent body scroll quando search aberta */
body.overflow-none {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Mobile Logo Row */
.mobile-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 15px;
    background: #fff;
    border-bottom: none !important;
    border: none !important;
}

.mobile-logo-row .logo-img,
.mobile-logo-row img {
    max-height: 70px;
    height: auto;
    width: auto;
}

/* Second Row: Tabs (INÍCIO | PRODUTOS | CARRINHO) */
.mobile-nav-second-row {
    background: #fff;
    border-bottom: none !important;
    box-shadow: none;
    width: 100%;
}

.mobile-nav-tabs {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 0;
}

.mobile-nav-tab {
    flex: 1 1 33.333%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    text-decoration: none;
    color: #666;
    background: none;
    border: 0;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    min-width: 0;
    max-width: none;
}

.mobile-nav-tab:hover,
.mobile-nav-tab.active {
    color: #fd64c4;
    background: transparent;
}

.mobile-nav-tab-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    margin-bottom: 3px;
}

.mobile-nav-tab-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 12px !important;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Deixa o texto "PRODUTOS" sempre rosa */
.mobile-nav-tab.js-toggle-categories .mobile-nav-tab-text {
    color: #fd64c4;
    font-weight: 400;
}

/* Mantém o ícone "PRODUTOS" na cor padrão e só muda no estado ativo */
.mobile-nav-tab.js-toggle-categories .mobile-nav-tab-icon {
    color: #666;
    fill: #666;
}

.mobile-nav-tab.js-toggle-categories:hover .mobile-nav-tab-icon,
.mobile-nav-tab.js-toggle-categories.active .mobile-nav-tab-icon {
    color: #fd64c4;
    fill: #fd64c4;
}

/* Quando o tab está ativo (homepage para INÍCIO, carrinho para CARRINHO) */
.mobile-nav-tab.active .mobile-nav-tab-icon,
.mobile-nav-tab.active .mobile-nav-tab-text {
    color: #fd64c4;
    fill: #fd64c4;
}

.mobile-nav-tab-badge {
    position: absolute;
    top: 6px;
    right: 50%;
    transform: translateX(12px);
    background: #fd64c4;
    color: #fff;
    font-size: 10px;
    height: 16px;
    line-height: 16px;
    min-width: 16px;
    padding: 0 4px;
    text-align: center;
    border-radius: 16px;
    font-weight: 700;
}

/* Hamburger Panel (Menu Lateral - Esquerda para Direita) */
.hamburger-panel {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: #333332;
    box-shadow: 2px 0 10px rgba(0,0,0,.15);
    z-index: 10000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* IMPORTANTE: Escondido por padrão com transform */
    transform: translate3d(-100%, 0, 0);
    transition: transform 0.3s ease;
}

.hamburger-panel.active {
    transform: translate3d(0, 0, 0);
}

.hamburger-panel-account-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background-color: #555554;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hamburger-panel-account-header .account-links-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hamburger-panel-account-header .account-links-container a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hamburger-panel-account-header .account-links-container a:hover {
    color: #fd64c4;
}

.hamburger-panel-account-header .account-links-container .separator {
    color: #fff;
    opacity: 0.7;
}

.hamburger-panel-account-header .hamburger-panel-close {
    font-size: 28px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-panel-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hamburger-panel-close {
    background: none;
    border: 0;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hamburger-panel-body {
    padding: 0;
}

/* Seção de Login/Cadastro - Com fundo escuro */
.mobile-account-links {
    padding: 0;
    background: #333332;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-account-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-account-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-account-links li:last-child {
    border-bottom: none;
}

.mobile-account-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.2s ease;
}

.mobile-account-links a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-account-links svg {
    fill: currentColor;
    flex-shrink: 0;
}

/* Menu de Navegação Principal Mobile */
.mobile-main-nav {
    background: #333332;
    padding: 0;
}

.mobile-main-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-main-nav-list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-main-nav-list > li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-main-nav-list > li > a {
    display: block;
    padding: 16px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    transition: background-color 0.2s ease;
}

.mobile-main-nav-list > li > a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Submenu dentro do menu mobile */
.mobile-main-nav-list .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.2);
}

.mobile-main-nav-list .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-main-nav-list .sub-menu li:last-child {
    border-bottom: none;
}

.mobile-main-nav-list .sub-menu a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-main-nav-list .sub-menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* Links Adicionais (Contato, Trocas, etc) */
.mobile-links-menu {
    padding: 0;
    background: #333332;
}

.mobile-links-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-links-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-links-menu li:last-child {
    border-bottom: none;
}

.mobile-links-menu a {
    display: block;
    padding: 16px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.2s ease;
}

.mobile-links-menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Hamburger Overlay */
.hamburger-overlay {
    display: none; /* Escondido por padrão */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hamburger-overlay.active {
    display: block;
    opacity: 1;
}

/* Categories Panel (Abre no Centro) */
.categories-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 90%;
    max-width: 400px;
    max-height: 80vh;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,.3);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.categories-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.categories-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 2px solid #ecf0f1;
    flex-shrink: 0;
}

.categories-panel-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #36393d;
    margin: 0;
}

.categories-panel-close {
    background: none;
    border: 0;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.categories-panel-body {
    padding: 0;
    overflow-y: auto;
    flex: 1;
}

.mobile-categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-categories-list li {
    border-bottom: 1px solid #ecf0f1;
}

.mobile-categories-list a {
    display: block;
    padding: 16px 20px;
    color: #36393d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}

.mobile-categories-list a:hover {
    background-color: #f8f9fa;
    color: #fd64c4;
}

/* Categories Overlay */
.categories-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
}

.categories-overlay.active {
    display: block;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 767px) {
    /* Prevent horizontal overflow on mobile */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw;
        width: 100%;
        position: relative;
    }
    
    * {
        max-width: 100vw;
    }
    
    /* Mobile-specific container fixes */
    .container,
    .container-fluid {
        box-sizing: border-box;
        max-width: 100%;
    }
    
    .section-advertising,
    .nav-head {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Remove gradiente translúcido da adbar no mobile - COR SÓLIDA */
    .section-advertising {
        background: #fd64c4 !important;
        background-image: none !important;
    }
    
    .section-advertising .container-fluid {
        box-sizing: border-box;
        max-width: 100%;
    }
    
    /* Hide desktop navigation - FORCE */
    .nav-head .desktop-nav,
    .nav-head .d-flex.hidden-xs,
    .nav-head .desktop-search,
    #ls_cart_widget {
        display: none !important;
    }

    /* Hide desktop header main container */
    .nav-head .js-nav-head-main,
    .nav-head .nav-head-main,
    .logo-container,
    .nav-head .container > .nav-head-main {
        display: none !important;
    }

    /* Hide top contact bar on mobile */
    .nav-head-top.header-bar-top {
        display: none !important;
    }

    /* Show mobile navigation - FORCE */
    .mobile-nav {
        display: block !important;
    }

    .mobile-nav-first-row,
    .mobile-nav-second-row {
        display: flex !important;
        width: 100% !important;
    }

    .mobile-nav-tabs {
        display: flex !important;
        width: 100% !important;
    }

    /* Adjust adbar for mobile */
    .section-advertising .container-fluid {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    /* Remove all borders on mobile header */
    .section-advertising {
        border-bottom: none !important;
    }
    
    .mobile-nav,
    .mobile-nav-first-row,
    .mobile-logo-row,
    .mobile-nav-search-row {
        border: none !important;
        border-bottom: none !important;
    }
    
    /* The rule causing the top border has been removed. */

    /* Remove header shadow on mobile (tabs have it) */
    .nav-head {
        box-shadow: none !important;
    }

    .nav-head::after {
        display: none !important;
    }
    
    /* Garante que o painel esteja escondido por padrão no mobile */
    .hamburger-panel {
        transform: translate3d(-100%, 0, 0);
        /* CORREÇÃO: Posiciona o menu abaixo do banner */
        top: var(--adbar-height, 30px) !important;
        height: calc(100vh - var(--adbar-height, 30px)) !important;
    }
    
    .hamburger-panel.active {
        transform: translate3d(0, 0, 0);
    }
    
    /* Overlay escondido por padrão */
    .hamburger-overlay {
        display: none;
        opacity: 0;
        /* CORREÇÃO: Overlay também considera o banner */
        top: var(--adbar-height, 30px) !important;
        height: calc(100vh - var(--adbar-height, 30px)) !important;
    }
    
    /* Quando ativo, mostra o overlay */
    .hamburger-overlay.active {
        display: block;
        opacity: 1;
    }
    
    /* Categories panel escondido por padrão */
    .categories-panel {
        display: none !important;
    }
    
    .categories-panel.active {
        display: flex !important;
    }
    
    /* Categories overlay escondido por padrão */
    .categories-overlay {
        display: none !important;
    }
    
    .categories-overlay.active {
        display: block !important;
    }

    /* ========================================================================
       EFEITO HÍBRIDO: Adbar fixa, Menu rola, Ícones grudam, Logo no conteúdo
       ======================================================================== */
    
    /* ADBAR FIXA no topo (faixa rosa) - COR SÓLIDA 100% */
    .section-advertising,
    .js-adbar.section-advertising {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 10001 !important;
        width: 100% !important;
        /* Remove gradiente translúcido e força cor sólida 100% opaca */
        background: #fd64c4 !important;
        background-image: none !important; /* Remove qualquer gradiente */
        opacity: 1 !important;
        filter: none !important; /* Remove filtros que possam afetar opacidade */
    }
    
    /* Força container interno também com cor sólida */
    .section-advertising .container-fluid {
        background: transparent !important; /* Deixa transparente para mostrar o rosa do pai */
        opacity: 1 !important;
    }

    /* Mobile-nav NO FLUXO com margin-top para compensar adbar */
    .mobile-nav {
        position: relative !important;
        margin-top: var(--adbar-height, 30px) !important;
        z-index: 9999 !important;
    }

    /* Primeira linha rola normalmente */
    .mobile-nav-first-row {
        position: relative !important;
    }

    /* Ícones começam no fluxo normal (relative) */
    .mobile-nav-second-row {
        position: relative !important;
        z-index: 4000 !important;
        background: #fff !important;
        transition: none !important;
    }

    /* Quando JS adiciona classe 'is-stuck', viram FIXED permanente */
    .mobile-nav-second-row.is-stuck {
        position: fixed !important;
        top: var(--adbar-height, 30px) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 10000 !important;
        background: #fff !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
    }

    /* Clone placeholder (mantém espaço para evitar flick da logo) */
    .mobile-nav-second-row-placeholder {
        display: block !important;
        height: 60px !important; /* Mesma altura dos ícones */
        width: 100% !important;
        visibility: hidden !important; /* Invisível mas ocupa espaço */
        pointer-events: none !important;
    }

    /* Logo FORA do mobile-nav (no conteúdo da página) */
    .mobile-logo-section {
        display: block !important;
        position: relative !important;
        background: #fff !important;
        width: 100% !important;
    }

    .mobile-logo-container {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 14px 15px !important;
        background: #fff !important;
    }

    .mobile-logo-container img,
    .mobile-logo-container .logo-img {
        max-height: 70px !important;
        height: auto !important;
        width: auto !important;
    }
}

@media (min-width: 768px) {
    /* ==================================================================
       LOGO DESKTOP - FORÇA ALTURA CONSISTENTE EM TODAS AS PÁGINAS
       Bug Fix: Logo ficava menor ao navegar da home para outras páginas
       =================================================================== */
    #logo .logo-img,
    #logo img,
    .logo-container .logo-img,
    .logo-container img,
    .nav-head .logo-img,
    .nav-head img {
        max-height: 130px !important;
        height: auto !important;
        width: auto !important;
        display: block !important;
    }
    
    /* Override de TODAS as classes body do WordPress */
    body.home #logo img,
    body.home #logo .logo-img,
    body.page #logo img,
    body.page #logo .logo-img,
    body.single #logo img,
    body.single #logo .logo-img,
    body.archive #logo img,
    body.archive #logo .logo-img,
    body.woocommerce #logo img,
    body.woocommerce #logo .logo-img,
    body.woocommerce-page #logo img,
    body.woocommerce-page #logo .logo-img {
        max-height: 130px !important;
        height: auto !important;
        width: auto !important;
        display: block !important;
    }
    
    /* Header padding consistente */
    .nav-head .nav-head-main,
    .nav-head .js-nav-head-main {
        padding: 18px 0 !important;
    }
    
    body.home .nav-head .nav-head-main,
    body.page .nav-head .nav-head-main,
    body.single .nav-head .nav-head-main,
    body.archive .nav-head .nav-head-main,
    body.woocommerce .nav-head .nav-head-main,
    body.woocommerce-page .nav-head .nav-head-main {
        padding: 18px 0 !important;
    }
    
    /* ==================================================================
       LAYOUT DO MENU - FORÇA CONSISTÊNCIA EM TODAS AS PÁGINAS
       Bug Fix: Menu muda de formato ao navegar da home para outras páginas
       =================================================================== */
    
    /* Força o grid do header main */
    .nav-head .nav-head-main,
    .nav-head .js-nav-head-main {
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        align-items: center !important;
        column-gap: 32px !important;
    }
    
    body.home .nav-head .nav-head-main,
    body.page .nav-head .nav-head-main,
    body.single .nav-head .nav-head-main,
    body.archive .nav-head .nav-head-main,
    body.woocommerce .nav-head .nav-head-main,
    body.woocommerce-page .nav-head .nav-head-main {
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        align-items: center !important;
        column-gap: 32px !important;
    }
    
    /* Força layout do menu desktop */
    .nav-head .desktop-nav {
        list-style: none !important;
        margin: 10px 0 !important;
        padding: 0 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;
        flex-wrap: wrap !important;
        max-width: 100% !important;
    }
    
    body.home .nav-head .desktop-nav,
    body.page .nav-head .desktop-nav,
    body.single .nav-head .desktop-nav,
    body.archive .nav-head .desktop-nav,
    body.woocommerce .nav-head .desktop-nav,
    body.woocommerce-page .nav-head .desktop-nav {
        list-style: none !important;
        margin: 10px 0 !important;
        padding: 0 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;
        flex-wrap: wrap !important;
        max-width: 100% !important;
    }
    
    /* Força espaçamento dos itens do menu */
    .desktop-nav-item {
        position: relative !important;
    }
    
    /* Força espaçamento dos links do menu */
    .nav-head .desktop-nav .desktop-nav-link {
        padding: 10px 4px !important;
        display: inline-block !important;
        white-space: nowrap !important;
    }
    
    body.home .nav-head .desktop-nav .desktop-nav-link,
    body.page .nav-head .desktop-nav .desktop-nav-link,
    body.single .nav-head .desktop-nav .desktop-nav-link,
    body.archive .nav-head .desktop-nav .desktop-nav-link,
    body.woocommerce .nav-head .desktop-nav .desktop-nav-link,
    body.woocommerce-page .nav-head .desktop-nav .desktop-nav-link {
        padding: 10px 4px !important;
        display: inline-block !important;
        white-space: nowrap !important;
    }
    /* ==================================================================
       FIM DA CORREÇÃO DO LAYOUT DO MENU
       =================================================================== */

    /* Ensure mobile elements are hidden on desktop */
    .mobile-nav,
    .mobile-nav-first-row,
    .mobile-nav-second-row,
    .hamburger-panel,
    .hamburger-overlay,
    .categories-panel,
    .categories-overlay {
        display: none !important;
    }

    /* Ensure desktop elements are visible */
    .nav-head .desktop-nav,
    .nav-head .d-flex.hidden-xs,
    .nav-head .nav-head-main,
    .nav-head-top.header-bar-top {
        display: flex !important;
    }
    
    /* Ensure desktop elements are visible */
    .nav-head-top.header-bar-top {
        display: block !important;
    }
    
    .nav-head-top .row {
        display: flex !important;
        flex-direction: row !important;
    }
    
    .nav-head-top .col-sm-6 {
        display: flex !important;
        width: 50% !important;
    }
    
    .nav-head-top .list-unstyled,
    .nav-head-top .list-inline {
        display: flex !important;
        flex-direction: row !important;
    }
}
/* Updated at Sex 17 Out 2025 01:20:03 -03 */
