*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Manrope',sans-serif;
}

body{
background:#fff;
color:#222;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

/* ==========================================
HEADER
========================================== */

.header{
position:sticky;
top:0;
background:#fff;
z-index:999;
border-bottom:1px solid #eee;
}

.header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
font-size:28px;
font-weight:800;
color:#ff6b00;
text-decoration:none;
}

.menu{
display:flex;
gap:30px;
list-style:none;
}

.menu a{
text-decoration:none;
color:#333;
font-weight:600;
transition:.2s;
}

.menu a:hover{
color:#ff6b00;
}

.header-actions{
display:flex;
gap:20px;
align-items:center;
}

.header-actions a{
text-decoration:none;
color:#333;
}

.cart-btn{
background:#ff6b00;
padding:12px 20px;
border-radius:10px;
color:#fff !important;
}

/* ==========================================
BANNERS
========================================== */

.banner-slider{
width:90%;
max-width:1300px;
margin:25px auto;
position:relative;
overflow:hidden;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.12);
background:#f8f8f8;
}

.slider{
display:flex;
transition:transform .5s ease;
}

.slide{
min-width:100%;
flex-shrink:0;
}

.slide img{
width:100%;
height:420px;
object-fit:contain;
display:block;
background:#f8f8f8;
}

.prev,
.next{
position:absolute;
top:50%;
transform:translateY(-50%);
width:45px;
height:45px;
border:none;
border-radius:50%;
background:rgba(0,0,0,.5);
color:#fff;
font-size:20px;
cursor:pointer;
z-index:10;
}

.prev{
left:15px;
}

.next{
right:15px;
}

.prev:hover,
.next:hover{
background:#ff6b00;
}

/* ==========================================
HERO
========================================== */

.hero{
height:700px;
display:flex;
align-items:center;
background:
linear-gradient(
rgba(0,0,0,.4),
rgba(0,0,0,.4)
),
url('../img/banner.jpg');
background-size:cover;
background-position:center;
color:white;
}

.hero-content{
max-width:700px;
}

.hero h1{
font-size:64px;
margin-bottom:20px;
}

.hero p{
font-size:22px;
margin-bottom:30px;
}

/* ==========================================
BOTÕES
========================================== */

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:16px 30px;
background:#ff6b00;
color:white;
text-decoration:none;
border:none;
border-radius:14px;
font-weight:700;
cursor:pointer;
transition:.25s;
}

.btn:hover{
transform:translateY(-2px);
box-shadow:0 12px 25px rgba(255,107,0,.25);
}

/* ==========================================
SEÇÕES
========================================== */

.section{
padding:80px 0;
}

.section-title{
text-align:center;
font-size:42px;
margin-bottom:50px;
}

/* =====================================
CARD PRODUTO PROFISSIONAL
===================================== */

.product-card{
background:#fff;
border:1px solid #eee;
border-radius:16px;
overflow:hidden;
transition:.25s;
box-shadow:0 3px 12px rgba(0,0,0,.04);
}

.product-card:hover{
transform:translateY(-4px);
box-shadow:0 10px 24px rgba(0,0,0,.08);
}

.product-card img{
width:100%;
height:220px;
object-fit:contain;
padding:10px;
background:#fff;
}

.product-info{
padding:14px;
}

.product-info h3{
font-size:16px;
line-height:1.4;
height:44px;
overflow:hidden;
margin-bottom:8px;
font-weight:700;
}

.product-info p{
font-size:13px;
color:#777;
height:34px;
overflow:hidden;
margin-bottom:10px;
}

.price{
font-size:28px;
font-weight:800;
color:var(--cor-principal);
margin-bottom:12px;
}

.buy-btn{
height:42px;
font-size:14px;
font-weight:700;
border-radius:10px;
}
/* ==========================================
PÁGINA DO PRODUTO
========================================== */

.produto-detalhes{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;
}

.galeria-produto{
display:flex;
gap:20px;
align-items:flex-start;
}

.coluna-miniaturas{
display:flex;
flex-direction:column;
gap:12px;
}

.miniatura{
width:85px;
height:85px;
object-fit:cover;
cursor:pointer;
border:1px solid #e5e5e5;
border-radius:12px;
padding:4px;
background:#fff;
transition:.25s;
}

.miniatura:hover{
border-color:#ff6b00;
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.imagem-principal-area{
flex:1;
}

.foto-principal{
width:100%;
border-radius:20px;
display:block;
border:1px solid #eee;
background:#fff;
padding:8px;
}

.produto-detalhes h1{
font-size:48px;
font-weight:800;
line-height:1.1;
margin-bottom:20px;
}

.produto-detalhes p{
line-height:1.8;
color:#555;
margin-bottom:20px;
}

.preco-produto{
font-size:42px;
font-weight:800;
color:#ff6b00;
margin:25px 0;
}

.produto-detalhes input{
width:100px;
padding:10px;
margin-bottom:20px;
}

/* ==========================================
FOOTER
========================================== */

.footer{
background:#111;
color:white;
padding:60px 0;
margin-top:80px;
}

.footer-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:40px;
margin-bottom:30px;
}

.footer ul{
list-style:none;
}

.footer li{
margin-bottom:10px;
}

/* ==========================================
RESPONSIVO
========================================== */

@media(max-width:768px){

.banner-slider{
width:95%;
}

.slide img{
height:220px;
}

.hero h1{
font-size:42px;
}

.products-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
gap:20px;
}

.produto-detalhes{
grid-template-columns:1fr;
}

.galeria-produto{
flex-direction:column;
}

.coluna-miniaturas{
flex-direction:row;
overflow-x:auto;
}

.produto-detalhes h1{
font-size:34px;
}

}
/* ===================================
HEADER V2
=================================== */

.header{
position:sticky;
top:0;
background:#fff;
z-index:999;
border-bottom:1px solid #eee;
}

.header-top{
padding:15px 0;
}

.header-top-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:25px;
}

.logo{
font-size:28px;
font-weight:800;
color:#ff6b00;
text-decoration:none;
white-space:nowrap;
}

.search-form{
flex:1;
max-width:700px;
display:flex;
border:2px solid #eee;
border-radius:14px;
overflow:hidden;
background:white;
}

.search-form input{
flex:1;
padding:14px 18px;
border:none;
outline:none;
font-size:15px;
}

.search-form button{
width:60px;
border:none;
background:#ff6b00;
color:white;
cursor:pointer;
font-size:18px;
}

.header-menu{
border-top:1px solid #f1f1f1;
}

.menu{
display:flex;
justify-content:center;
gap:35px;
list-style:none;
padding:14px 0;
}

.menu a{
text-decoration:none;
font-weight:600;
color:#333;
transition:.2s;
}

.menu a:hover{
color:#ff6b00;
}

.header-actions{
display:flex;
align-items:center;
gap:15px;
}

.header-actions a{
text-decoration:none;
color:#333;
font-weight:600;
}

.cart-btn{
background:#ff6b00;
color:white !important;
padding:12px 18px;
border-radius:12px;
}

.cart-btn:hover{
opacity:.9;
}

@media(max-width:900px){

.header-top-container{
flex-direction:column;
}

.search-form{
width:100%;
max-width:none;
}

.menu{
overflow-x:auto;
justify-content:flex-start;
padding-left:15px;
}

}
/* ==========================================
HEADER PROFISSIONAL V2
========================================== */

.header{
position:sticky;
top:0;
z-index:999;
background:#fff;
border-bottom:1px solid #ececec;
box-shadow:0 4px 18px rgba(0,0,0,.04);
}

.header-main{
background:#fff;
}

.header-main-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:24px;
padding:14px 0;
}

.logo{
display:flex;
align-items:center;
gap:8px;
font-size:27px;
font-weight:800;
color:#111;
text-decoration:none;
white-space:nowrap;
letter-spacing:-.5px;
}

.logo-icon{
display:inline-flex;
align-items:center;
justify-content:center;
width:38px;
height:38px;
background:#ff6b00;
color:#fff;
border-radius:12px;
font-size:20px;
}

.search-form{
flex:1;
max-width:680px;
height:48px;
display:flex;
align-items:center;
background:#f7f7f7;
border:1px solid #e7e7e7;
border-radius:999px;
overflow:hidden;
transition:.25s;
}

.search-form:focus-within{
background:#fff;
border-color:#ff6b00;
box-shadow:0 0 0 4px rgba(255,107,0,.10);
}

.search-form input{
flex:1;
height:100%;
border:none;
outline:none;
background:transparent;
padding:0 20px;
font-size:15px;
font-weight:500;
color:#222;
}

.search-form input::placeholder{
color:#999;
}

.search-form button{
width:58px;
height:100%;
border:none;
background:#ff6b00;
color:#fff;
cursor:pointer;
font-size:18px;
transition:.25s;
}

.search-form button:hover{
background:#e85f00;
}

.header-actions{
display:flex;
align-items:center;
gap:14px;
}

.header-link{
font-size:15px;
font-weight:700;
color:#222;
text-decoration:none;
}

.header-link:hover{
color:#ff6b00;
}

.cart-btn{
position:relative;
display:inline-flex;
align-items:center;
gap:8px;
background:#111;
color:white !important;
padding:12px 18px;
border-radius:999px;
font-size:15px;
font-weight:800;
text-decoration:none;
transition:.25s;
}

.cart-btn:hover{
background:#ff6b00;
transform:translateY(-1px);
}

.cart-count{
position:absolute;
top:-7px;
right:-7px;
background:#ff6b00;
color:#fff;
min-width:22px;
height:22px;
border-radius:50%;
font-size:12px;
display:flex;
align-items:center;
justify-content:center;
border:2px solid #fff;
}

.header-nav{
border-top:1px solid #f1f1f1;
background:#fff;
}

.menu{
display:flex;
justify-content:center;
align-items:center;
gap:36px;
list-style:none;
padding:13px 0;
}

.menu a{
position:relative;
font-size:15px;
font-weight:800;
color:#333;
text-decoration:none;
transition:.25s;
}

.menu a::after{
content:'';
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:#ff6b00;
transition:.25s;
}

.menu a:hover{
color:#ff6b00;
}

.menu a:hover::after{
width:100%;
}

/* ==========================================
PÁGINAS AUXILIARES
========================================== */

.search-result-text{
text-align:center;
margin-top:-30px;
margin-bottom:40px;
font-size:17px;
color:#555;
}

.empty-box{
width:100%;
grid-column:1/-1;
background:#fff;
border:1px solid #eee;
border-radius:18px;
padding:50px;
text-align:center;
}

.empty-box h3{
font-size:26px;
margin-bottom:10px;
}

.empty-box p{
color:#666;
margin-bottom:25px;
}

.contact-box{
background:#fff;
border:1px solid #eee;
border-radius:24px;
padding:50px;
}

.contact-box h1{
font-size:42px;
font-weight:800;
margin-bottom:15px;
}

.contact-box > p{
font-size:18px;
color:#555;
line-height:1.7;
max-width:750px;
margin-bottom:35px;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:24px;
}

.contact-card{
border:1px solid #eee;
border-radius:18px;
padding:25px;
background:#fafafa;
}

.contact-card h3{
font-size:22px;
margin-bottom:12px;
}

.contact-card p{
line-height:1.7;
color:#555;
margin-bottom:20px;
}

/* ==========================================
HEADER RESPONSIVO
========================================== */

@media(max-width:900px){

.header-main-container{
flex-direction:column;
align-items:stretch;
gap:14px;
}

.logo{
justify-content:center;
}

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

.header-actions{
justify-content:center;
}

.menu{
justify-content:flex-start;
overflow-x:auto;
gap:24px;
padding:13px 5px;
}

.menu::-webkit-scrollbar{
display:none;
}

}
/* ==========================================
PRODUTOS RELACIONADOS
========================================== */

.related-section{
margin-top:80px;
padding-top:60px;
border-top:1px solid #eee;
}

.related-header{
text-align:center;
margin-bottom:40px;
}

.related-header span{
display:block;
width:60px;
height:4px;
background:#ff6b00;
border-radius:10px;
margin:0 auto 18px;
}

.related-header h2{
font-size:38px;
font-weight:800;
margin-bottom:10px;
}

.related-header p{
color:#666;
font-size:17px;
}
/* ==========================================
ZOOM PRODUTO
========================================== */

.zoom-container{
position:relative;
overflow:hidden;
border-radius:20px;
cursor:zoom-in;
background:#fff;
border:1px solid #eee;
}

.zoom-img{
transition:transform .25s ease;
transform-origin:center center;
}

.zoom-container:hover .zoom-img{
will-change:transform;
}
/* ==========================================
CARRINHO
========================================== */

.cart-layout{
display:grid;
grid-template-columns:2fr 1fr;
gap:35px;
align-items:start;
}

.cart-items{
display:flex;
flex-direction:column;
gap:20px;
}

.cart-item{
display:grid;
grid-template-columns:120px 1fr auto;
gap:20px;
align-items:center;
background:#fff;
border:1px solid #eee;
border-radius:18px;
padding:18px;
}

.cart-item img{
width:120px;
height:120px;
object-fit:cover;
border-radius:14px;
border:1px solid #eee;
}

.cart-info h3{
font-size:20px;
margin-bottom:8px;
}

.cart-info p{
font-weight:700;
color:#ff6b00;
margin-bottom:12px;
}

.cart-qty-form input{
width:80px;
padding:10px;
border:1px solid #ddd;
border-radius:10px;
}

.cart-subtotal{
text-align:right;
}

.cart-subtotal strong{
display:block;
font-size:20px;
margin-bottom:15px;
}

.remove-btn{
background:#f44336;
color:#fff;
border:none;
padding:9px 14px;
border-radius:10px;
cursor:pointer;
font-weight:700;
}

.cart-summary{
background:#fff;
border:1px solid #eee;
border-radius:22px;
padding:28px;
position:sticky;
top:130px;
}

.cart-summary h3{
font-size:24px;
margin-bottom:25px;
}

.summary-line{
display:flex;
justify-content:space-between;
align-items:center;
border-top:1px solid #eee;
border-bottom:1px solid #eee;
padding:18px 0;
margin-bottom:25px;
}

.summary-line strong{
font-size:24px;
color:#ff6b00;
}

.checkout-whatsapp{
display:block;
text-align:center;
background:#25D366;
color:white;
padding:16px;
border-radius:14px;
font-weight:800;
text-decoration:none;
margin-bottom:15px;
transition:.25s;
}

.checkout-whatsapp:hover{
transform:translateY(-2px);
box-shadow:0 12px 25px rgba(37,211,102,.25);
}

.continue-shopping{
display:block;
text-align:center;
color:#111;
font-weight:700;
text-decoration:none;
}

@media(max-width:900px){

.cart-layout{
grid-template-columns:1fr;
}

.cart-item{
grid-template-columns:90px 1fr;
}

.cart-item img{
width:90px;
height:90px;
}

.cart-subtotal{
grid-column:1/-1;
text-align:left;
}

}
/* ==========================================
CARRINHO PREMIUM
========================================== */

.cart-layout{
display:grid;
grid-template-columns:2fr 420px;
gap:35px;
align-items:flex-start;
}

.cart-items{
display:flex;
flex-direction:column;
gap:22px;
}

.cart-item{
display:grid;
grid-template-columns:140px 1fr 170px;
gap:22px;
align-items:center;
background:#fff;
border:1px solid #eee;
border-radius:22px;
padding:22px;
box-shadow:0 8px 24px rgba(0,0,0,.04);
}

.cart-item img{
width:140px;
height:140px;
object-fit:contain;
background:#f8f8f8;
border-radius:18px;
border:1px solid #eee;
padding:8px;
}

.cart-info h3{
font-size:21px;
font-weight:800;
margin-bottom:8px;
color:#111;
}

.cart-info p{
font-size:18px;
font-weight:800;
color:#ff6b00;
margin-bottom:14px;
}

.cart-qty-form input{
width:90px;
height:42px;
padding:8px;
border:1px solid #ddd;
border-radius:12px;
font-size:16px;
font-weight:700;
text-align:center;
}

.cart-subtotal{
text-align:right;
}

.cart-subtotal strong{
display:block;
font-size:22px;
font-weight:800;
color:#111;
margin-bottom:15px;
}

.remove-btn{
background:#fff0f0;
color:#d32f2f;
border:1px solid #ffd2d2;
padding:10px 14px;
border-radius:12px;
cursor:pointer;
font-weight:800;
transition:.25s;
}

.remove-btn:hover{
background:#d32f2f;
color:white;
}

.cart-summary{
background:#fff;
border:1px solid #eee;
border-radius:24px;
padding:30px;
box-shadow:0 10px 30px rgba(0,0,0,.06);
position:sticky;
top:150px;
}

.cart-summary h3{
font-size:25px;
font-weight:800;
margin-bottom:25px;
}

.summary-line{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
border-top:1px solid #eee;
border-bottom:1px solid #eee;
margin-bottom:25px;
}

.summary-line span{
font-size:17px;
font-weight:700;
color:#555;
}

.summary-line strong{
font-size:28px;
font-weight:900;
color:#ff6b00;
}

.checkout-whatsapp{
display:flex;
justify-content:center;
align-items:center;
width:100%;
background:#25D366;
color:white;
padding:17px;
border-radius:16px;
font-size:17px;
font-weight:900;
text-decoration:none;
margin-bottom:16px;
transition:.25s;
}

.checkout-whatsapp:hover{
transform:translateY(-2px);
box-shadow:0 12px 25px rgba(37,211,102,.25);
}

.continue-shopping{
display:block;
text-align:center;
color:#111;
font-size:15px;
font-weight:800;
text-decoration:none;
}

.continue-shopping:hover{
color:#ff6b00;
}

@media(max-width:900px){

.cart-layout{
grid-template-columns:1fr;
}

.cart-item{
grid-template-columns:100px 1fr;
}

.cart-item img{
width:100px;
height:100px;
}

.cart-subtotal{
grid-column:1/-1;
text-align:left;
}

.cart-summary{
position:static;
}

}
/* ==========================================
CHECKOUT
========================================== */

.checkout-layout{
display:grid;
grid-template-columns:1.5fr 1fr;
gap:35px;
align-items:flex-start;
}

.checkout-form-box,
.checkout-summary{
background:#fff;
border:1px solid #eee;
border-radius:24px;
padding:30px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.checkout-form-box h3,
.checkout-summary h3{
font-size:25px;
font-weight:800;
margin-bottom:25px;
}

.checkout-form-box label{
display:block;
font-weight:800;
margin-bottom:8px;
color:#222;
}

.checkout-form-box input,
.checkout-form-box textarea{
width:100%;
padding:14px 16px;
border:1px solid #ddd;
border-radius:14px;
margin-bottom:18px;
font-size:15px;
outline:none;
}

.checkout-form-box input:focus,
.checkout-form-box textarea:focus{
border-color:#ff6b00;
box-shadow:0 0 0 4px rgba(255,107,0,.10);
}

.checkout-item{
border-bottom:1px solid #eee;
padding:15px 0;
}

.checkout-item strong{
display:block;
font-size:16px;
margin-bottom:5px;
}

.checkout-item span{
color:#666;
font-size:15px;
}

@media(max-width:900px){

.checkout-layout{
grid-template-columns:1fr;
}

}
/* ==========================================
FAVORITOS
========================================== */

.product-card{
position:relative;
}

.favorite-btn{
position:absolute;
top:14px;
right:14px;
width:44px;
height:44px;
border-radius:50%;
background:#fff;
color:#111;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
text-decoration:none;
box-shadow:0 8px 20px rgba(0,0,0,.12);
z-index:5;
transition:.25s;
}

.favorite-btn:hover,
.favorite-btn.active{
background:#ff6b00;
color:white;
}

.favorite-header-btn{
position:relative;
display:inline-flex;
align-items:center;
gap:6px;
background:var(--cor-card);
color:var(--cor-texto);
border:1px solid var(--cor-principal);
padding:12px 16px;
border-radius:999px;
font-size:15px;
font-weight:800;
text-decoration:none;
transition:.25s;
}

.favorite-header-btn:hover{
background:var(--cor-principal);
border-color:var(--cor-principal);
color:#fff;
}

.product-actions{
display:flex;
align-items:center;
gap:12px;
flex-wrap:wrap;
margin-top:20px;
}

.product-actions form{
display:flex;
align-items:center;
gap:12px;
flex-wrap:wrap;
}

.btn-favorito{
background:#111;
}

.btn-favorito:hover{
background:#ff6b00;
}
/* ==========================================
AVALIAÇÕES
========================================== */

.avaliacoes-section{
margin-top:80px;
padding-top:60px;
border-top:1px solid #eee;
}

.avaliacoes-header{
text-align:center;
margin-bottom:40px;
}

.avaliacoes-header span{
display:block;
width:60px;
height:4px;
background:#ff6b00;
border-radius:10px;
margin:0 auto 18px;
}

.avaliacoes-header h2{
font-size:38px;
font-weight:800;
margin-bottom:10px;
}

.avaliacoes-header p{
color:#666;
font-size:17px;
}

.avaliacoes-layout{
display:grid;
grid-template-columns:1fr 1.2fr;
gap:35px;
align-items:start;
}

.avaliacao-form-box,
.avaliacao-card{
background:#fff;
border:1px solid #eee;
border-radius:24px;
padding:28px;
box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.avaliacao-form-box h3{
font-size:24px;
font-weight:800;
margin-bottom:22px;
}

.avaliacao-form-box label{
display:block;
font-weight:800;
margin-bottom:8px;
}

.avaliacao-form-box input,
.avaliacao-form-box textarea,
.avaliacao-form-box select{
width:100%;
padding:14px 16px;
border:1px solid #ddd;
border-radius:14px;
margin-bottom:18px;
font-size:15px;
outline:none;
}

.avaliacao-form-box input:focus,
.avaliacao-form-box textarea:focus,
.avaliacao-form-box select:focus{
border-color:#ff6b00;
box-shadow:0 0 0 4px rgba(255,107,0,.10);
}

.avaliacoes-lista{
display:flex;
flex-direction:column;
gap:20px;
}

.avaliacao-topo{
display:flex;
justify-content:space-between;
align-items:center;
gap:15px;
margin-bottom:12px;
}

.avaliacao-topo strong{
font-size:18px;
font-weight:800;
}

.estrelas{
color:#ff6b00;
font-size:18px;
white-space:nowrap;
}

.avaliacao-card p{
line-height:1.7;
color:#555;
}

.avaliacao-midias{
display:flex;
gap:12px;
flex-wrap:wrap;
margin-top:18px;
}

.avaliacao-midias img,
.avaliacao-midias video{
width:130px;
height:130px;
object-fit:cover;
border-radius:14px;
border:1px solid #eee;
background:#f8f8f8;
}

@media(max-width:900px){

.avaliacoes-layout{
grid-template-columns:1fr;
}

.avaliacao-topo{
align-items:flex-start;
flex-direction:column;
}

}
/* ==========================================
AJUSTES AVALIAÇÕES V2
========================================== */

.avaliacoes-lista-topo{
margin-bottom:35px;
}

.avaliacao-form-compacta{
max-width:850px;
margin:0 auto;
padding:24px;
}

.avaliacao-form-compacta h3{
font-size:22px;
margin-bottom:20px;
}

.avaliacao-form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:18px;
}

.avaliacao-form-compacta input,
.avaliacao-form-compacta select,
.avaliacao-form-compacta textarea{
padding:12px 14px;
font-size:14px;
margin-bottom:14px;
}

.avaliacao-form-compacta textarea{
resize:vertical;
}

.avaliacao-midias img,
.avaliacao-midias video{
cursor:pointer;
transition:.25s;
}

.avaliacao-midias img:hover,
.avaliacao-midias video:hover{
transform:scale(1.04);
box-shadow:0 10px 22px rgba(0,0,0,.12);
}

/* ==========================================
MODAL DE MÍDIA
========================================== */

.midia-modal{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,.82);
z-index:9999;
align-items:center;
justify-content:center;
padding:30px;
}

.midia-modal-content{
position:relative;
max-width:90vw;
max-height:90vh;
background:#111;
border-radius:18px;
padding:18px;
}

.midia-close{
position:absolute;
top:-16px;
right:-16px;
width:42px;
height:42px;
border:none;
border-radius:50%;
background:#ff6b00;
color:white;
font-size:28px;
line-height:1;
cursor:pointer;
z-index:2;
}

.midia-modal-img,
.midia-modal-video{
max-width:85vw;
max-height:82vh;
display:block;
border-radius:14px;
}

@media(max-width:768px){

.avaliacao-form-grid{
grid-template-columns:1fr;
}

.midia-modal{
padding:15px;
}

.midia-modal-img,
.midia-modal-video{
max-width:92vw;
max-height:78vh;
}

}
.avaliacao-form-section{
margin-top:80px;
padding-top:60px;
border-top:1px solid #eee;
}
/* ==========================================
ABAS INFORMAÇÕES DO PRODUTO
========================================== */

.product-tabs{
margin-top:70px;
border-top:1px solid #e5e5e5;
}

.tabs-nav{
display:flex;
gap:35px;
border-bottom:1px solid #e5e5e5;
}

.tab-btn{
background:none;
border:none;
padding:18px 0;
font-weight:800;
color:#555;
cursor:pointer;
position:relative;
}

.tab-btn.active{
color:#ff6b00;
}

.tab-btn.active::after{
content:'';
position:absolute;
left:0;
bottom:-1px;
width:100%;
height:3px;
background:#ff6b00;
}

.tab-content{
display:none;
padding:35px 0;
line-height:1.9;
color:#222;
font-size:16px;
}

.tab-content.active{
display:block;
}

.tab-content h3{
font-size:22px;
font-weight:900;
margin-bottom:20px;
}

.tab-content p{
white-space:pre-line;
font-weight:600;
}

@media(max-width:768px){

.tabs-nav{
overflow-x:auto;
gap:25px;
}

.tab-btn{
white-space:nowrap;
}

}
/* ==========================================
AJUSTE PREMIUM PREÇO / COMPRA / ABAS
========================================== */

.produto-info-premium h1{
font-size:34px;
line-height:1.2;
margin-bottom:16px;
}

.descricao-curta{
font-size:15px;
line-height:1.5 !important;
color:#555;
margin-bottom:18px !important;
}

.price-box{
border-top:1px solid #e5e5e5;
border-bottom:1px solid #e5e5e5;
padding:22px 0;
margin:22px 0;
}

.price-box .preco-produto{
font-size:42px;
font-weight:900;
color:#ff6b00;
margin:0 0 6px 0;
}

.parcelamento-produto{
font-size:16px;
font-weight:700;
color:#333;
}

.compra-box{
border:1px solid #e5e5e5;
border-radius:18px;
padding:22px;
background:#fff;
box-shadow:0 8px 24px rgba(0,0,0,.04);
}

.form-compra{
display:grid;
grid-template-columns:180px 1fr;
gap:18px;
align-items:end;
margin-bottom:14px;
}

.qty-area label{
display:block;
font-size:14px;
font-weight:900;
margin-bottom:8px;
color:#222;
}

.qty-control{
height:52px;
display:grid;
grid-template-columns:48px 1fr 48px;
border:1px solid #ddd;
border-radius:14px;
overflow:hidden;
background:#f8f8f8;
}

.qty-control button{
border:none;
background:#f1f1f1;
font-size:22px;
font-weight:900;
cursor:pointer;
color:#333;
transition:.2s;
}

.qty-control button:hover{
background:#ff6b00;
color:#fff;
}

.qty-control input{
width:100% !important;
height:52px;
border:none;
background:#fff;
text-align:center;
font-size:17px;
font-weight:900;
margin:0 !important;
padding:0 !important;
}

.btn-cart-premium{
height:52px;
width:100%;
font-size:16px;
font-weight:900;
border-radius:14px;
}

.btn-favorito-premium{
width:100%;
background:#111;
border-radius:14px;
height:50px;
font-weight:900;
}

.btn-favorito-premium:hover{
background:#ff6b00;
}

.product-tabs{
margin-top:70px;
border:1px solid #e5e5e5;
border-radius:0;
background:#fff;
}

.tabs-nav{
display:flex;
gap:35px;
border-bottom:1px solid #e5e5e5;
padding:0 22px;
}

.tab-content{
display:none;
padding:30px 22px;
font-size:15.5px;
color:#222;
}

.tab-content.active{
display:block;
}

.tab-content h3{
font-size:24px;
font-weight:900;
margin-bottom:18px;
}

.tab-content p{
white-space:normal !important;
font-weight:500 !important;
line-height:1.55 !important;
margin:0 !important;
}

.tab-content br{
display:block;
content:'';
margin-bottom:6px;
}

@media(max-width:900px){

.form-compra{
grid-template-columns:1fr;
}

.produto-info-premium h1{
font-size:28px;
}

.price-box .preco-produto{
font-size:34px;
}

}
/* ==========================================
LOGIN / CADASTRO / MINHA CONTA
========================================== */

.auth-box,
.account-box{
max-width:520px;
margin:0 auto;
background:#fff;
border:1px solid #eee;
border-radius:24px;
padding:35px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.auth-box h2,
.account-box h2{
font-size:30px;
font-weight:900;
margin-bottom:25px;
text-align:center;
}

.auth-box label{
display:block;
font-weight:800;
margin-bottom:8px;
}

.auth-box input{
width:100%;
padding:14px 16px;
border:1px solid #ddd;
border-radius:14px;
margin-bottom:18px;
font-size:15px;
outline:none;
}

.auth-box input:focus{
border-color:#ff6b00;
box-shadow:0 0 0 4px rgba(255,107,0,.10);
}

.auth-box p{
text-align:center;
margin-top:20px;
}

.auth-box a{
font-weight:800;
color:#ff6b00;
text-decoration:none;
}

.auth-error{
background:#ffe8e8;
color:#b00020;
padding:14px;
border-radius:14px;
margin-bottom:20px;
font-weight:800;
}

.auth-success{
background:#e8fff0;
color:#167a3a;
padding:14px;
border-radius:14px;
margin-bottom:20px;
font-weight:800;
}

.account-box p{
font-size:17px;
margin-bottom:14px;
}
/* ==========================================
MINHA CONTA / HISTÓRICO DE PEDIDOS
========================================== */

.account-panel{
display:grid;
grid-template-columns:360px 1fr;
gap:30px;
align-items:flex-start;
}

.account-info{
max-width:none;
margin:0;
}

.orders-box{
background:#fff;
border:1px solid #eee;
border-radius:24px;
padding:30px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.orders-box h2{
font-size:30px;
font-weight:900;
margin-bottom:25px;
}

.order-card{
border:1px solid #eee;
border-radius:18px;
padding:22px;
margin-bottom:18px;
background:#fafafa;
}

.order-header{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
border-bottom:1px solid #eee;
padding-bottom:15px;
margin-bottom:15px;
}

.order-header strong{
font-size:20px;
display:block;
}

.order-header span{
font-size:14px;
color:#666;
}

.order-status{
background:#ff6b00;
color:white;
padding:8px 14px;
border-radius:999px;
font-size:14px;
font-weight:900;
white-space:nowrap;
}

.order-item{
display:flex;
justify-content:space-between;
gap:15px;
padding:10px 0;
border-bottom:1px solid #eee;
}

.order-item:last-child{
border-bottom:none;
}

.order-item span{
font-weight:700;
}

.order-item small{
color:#666;
white-space:nowrap;
}

.order-footer{
display:flex;
justify-content:flex-end;
padding-top:15px;
font-size:18px;
color:#111;
}

@media(max-width:900px){

.account-panel{
grid-template-columns:1fr;
}

.order-header,
.order-item{
flex-direction:column;
align-items:flex-start;
}

.order-footer{
justify-content:flex-start;
}

}
.btn-voltar{
display:inline-block;
background:#111;
color:white;
padding:12px 20px;
border-radius:10px;
text-decoration:none;
font-weight:bold;
margin-bottom:20px;
}
/* ==========================================
CORES DINÂMICAS DO PAINEL
========================================== */

.logo,
.menu a:hover,
.price,
.preco-produto,
.section-box h2,
.card strong{
color:var(--cor-principal);
}

.btn,
.cart-btn,
.checkout-whatsapp,
.buy-btn:hover,
.filtros button,
button,
.ver-btn{
background:var(--cor-principal);
}

.buy-btn,
.footer,
.header-nav,
.btn-dark{
background:var(--cor-secundaria);
}

.miniatura:hover,
input:focus,
textarea:focus,
select:focus{
border-color:var(--cor-principal);
}

.btn:hover{
box-shadow:0 12px 25px rgba(0,0,0,.15);
}
/* WHATSAPP FLUTUANTE */

.whatsapp-float{
position:fixed;
right:22px;
bottom:22px;
z-index:9999;
display:flex;
align-items:center;
gap:10px;
background:#25d366;
color:white;
padding:14px 18px;
border-radius:999px;
text-decoration:none;
font-weight:800;
box-shadow:0 12px 30px rgba(0,0,0,.22);
transition:.25s;
}

.whatsapp-float span{
font-size:22px;
}

.whatsapp-float:hover{
transform:translateY(-3px);
box-shadow:0 16px 35px rgba(0,0,0,.28);
}

@media(max-width:600px){

.whatsapp-float{
right:16px;
bottom:16px;
padding:14px;
}

.whatsapp-float strong{
display:none;
}

.whatsapp-float span{
font-size:26px;
}

}
.cupom-form{
margin:22px 0;
padding:18px;
background:#fafafa;
border:1px solid #eee;
border-radius:14px;
}

.cupom-form label{
display:block;
font-weight:700;
margin-bottom:10px;
color:#222;
}

.cupom-box{
display:flex;
gap:10px;
}

.cupom-box input{
width:100%;
height:48px;
padding:0 14px;
border:1px solid #ddd;
border-radius:10px;
font-size:15px;
outline:none;
}

.cupom-box input:focus{
border-color:var(--cor-principal);
box-shadow:0 0 0 4px rgba(255,107,0,.10);
}

.cupom-box button{
height:48px;
padding:0 20px;
border:none;
border-radius:10px;
background:var(--cor-principal);
color:white;
font-weight:800;
cursor:pointer;
white-space:nowrap;
}

@media(max-width:600px){
.cupom-box{
flex-direction:column;
}
}
.produto-variacoes-box{
background:#fafafa;
border:1px solid #eee;
border-radius:16px;
padding:18px;
margin-bottom:18px;
}

.produto-variacao-item{
margin-bottom:15px;
}

.produto-variacao-item:last-child{
margin-bottom:0;
}

.produto-variacao-item label{
display:block;
font-size:14px;
font-weight:800;
margin-bottom:8px;
color:#222;
}

.produto-variacao-item select{
width:100%;
height:48px;
border:1px solid #ddd;
border-radius:12px;
padding:0 14px;
background:#fff;
font-size:15px;
outline:none;
cursor:pointer;
}

.produto-variacao-item select:focus{
border-color:var(--cor-principal);
box-shadow:0 0 0 4px rgba(255,107,0,.10);
}
.cart-variacoes{
display:flex;
flex-wrap:wrap;
gap:8px;
margin:10px 0;
}

.cart-variacoes span{
background:#f5f5f5;
border:1px solid #eee;
padding:6px 10px;
border-radius:999px;
font-size:13px;
color:#333;
}
.checkout-variacoes{
display:flex;
flex-wrap:wrap;
gap:6px;
margin:8px 0;
}

.checkout-variacoes span{
background:#f5f5f5;
border:1px solid #eee;
padding:5px 9px;
border-radius:999px;
font-size:12px;
color:#333;
}
.order-variacoes{
display:flex;
flex-wrap:wrap;
gap:6px;
margin-top:8px;
}

.order-variacoes small{
background:#f5f5f5;
border:1px solid #eee;
padding:5px 9px;
border-radius:999px;
font-size:12px;
color:#333;
}
/* AJUSTE PROFISSIONAL DA ÁREA DE COMPRA DO PRODUTO */

.compra-box{
background:#fff;
border:1px solid #eee;
border-radius:18px;
padding:22px;
box-shadow:0 12px 30px rgba(0,0,0,.06);
margin-top:22px;
}

.form-compra{
display:grid;
grid-template-columns:1fr 1fr;
gap:18px;
align-items:end;
}

.produto-variacoes-box{
background:transparent;
border:none;
padding:0;
margin:0;
}

.produto-variacao-item{
margin:0;
}

.produto-variacao-item label,
.qty-area label{
font-size:14px;
font-weight:800;
color:#222;
margin-bottom:8px;
display:block;
}

.produto-variacao-item select{
height:52px;
border-radius:12px;
border:1px solid #ddd;
background:#fff;
font-size:15px;
font-weight:600;
}

.qty-area{
margin:0;
}

.qty-control{
height:52px;
display:grid;
grid-template-columns:52px 1fr 52px;
border:1px solid #ddd;
border-radius:12px;
overflow:hidden;
background:#fff;
}

.qty-control button{
height:52px;
border:none;
border-radius:0;
background:#f5f5f5;
color:#111;
font-size:20px;
font-weight:800;
padding:0;
}

.qty-control input{
height:52px;
border:none;
text-align:center;
font-weight:800;
font-size:16px;
background:#fff;
}

.btn-cart-premium{
grid-column:1/-1;
width:100%;
height:54px;
border-radius:12px;
font-size:16px;
font-weight:900;
margin-top:2px;
}

.btn-favorito-premium{
display:flex;
align-items:center;
justify-content:center;
width:100%;
height:52px;
border-radius:12px;
margin-top:14px;
font-size:15px;
font-weight:900;
}

@media(max-width:768px){

.form-compra{
grid-template-columns:1fr;
}

.btn-cart-premium{
grid-column:auto;
}

}
.compra-box-compacta{
padding:14px;
border-radius:14px;
box-shadow:0 6px 16px rgba(0,0,0,.05);
}

.form-compra-compacta{
display:block;
}

.variacoes-compactas{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
gap:10px;
margin-bottom:12px;
}

.compra-linha-final{
display:grid;
grid-template-columns:130px 1fr;
gap:10px;
align-items:end;
}

.qty-control-compacto{
height:42px;
grid-template-columns:42px 1fr 42px;
}

.qty-control-compacto button,
.qty-control-compacto input{
height:42px;
}

.compra-box-compacta .produto-variacao-item label,
.qty-area-compacta label{
font-size:12px;
margin-bottom:5px;
}

.compra-box-compacta .produto-variacao-item select{
height:42px;
font-size:13px;
border-radius:9px;
}

.compra-box-compacta .btn-cart-premium{
height:42px;
font-size:14px;
border-radius:9px;
margin:0;
}

.compra-box-compacta .btn-favorito-premium{
height:40px;
font-size:13px;
border-radius:9px;
margin-top:10px;
}

@media(max-width:600px){
.compra-linha-final{
grid-template-columns:1fr;
}
}
.variation-options{
display:flex;
flex-wrap:wrap;
gap:8px;
}

.variation-option input{
display:none;
}

.variation-option span{
display:flex;
align-items:center;
justify-content:center;
min-width:42px;
height:42px;
padding:0 14px;
border:1px solid #ddd;
border-radius:10px;
background:#fff;
font-size:13px;
font-weight:800;
cursor:pointer;
transition:.2s;
}

.variation-option input:checked + span{
background:var(--cor-principal);
border-color:var(--cor-principal);
color:#fff;
}

.variation-option span:hover{
border-color:var(--cor-principal);
}
/* VARIAÇÕES RESPONSIVAS COM ESPAÇAMENTO AUTOMÁTICO */

.variacoes-compactas{
display:flex;
flex-direction:column;
gap:12px;
margin-bottom:14px;
}

.produto-variacao-item{
width:100%;
}

.variation-options{
display:flex;
flex-wrap:wrap;
gap:8px;
align-items:center;
}

.variation-option{
display:inline-flex;
}

.variation-option span{
min-width:auto;
width:auto;
height:38px;
padding:0 16px;
border-radius:9px;
white-space:nowrap;
}

.variation-option input:checked + span{
background:var(--cor-principal);
border-color:var(--cor-principal);
color:#fff;
}

.compra-linha-final{
margin-top:6px;
}

.qty-control-compacto{
max-width:130px;
}
/* ALINHAMENTO COMPACTO DA PÁGINA DO PRODUTO */

.produto-detalhes{
align-items:flex-start;
gap:34px;
}

.produto-info-premium{
padding-top:0;
}

.produto-info-premium h1{
font-size:30px;
line-height:1.22;
margin-bottom:12px;
}

.descricao-curta{
font-size:14px;
line-height:1.55;
margin-bottom:18px;
}

.price-box{
margin:18px 0 14px;
padding-top:18px;
border-top:1px solid #eee;
}

.preco-produto{
font-size:34px;
line-height:1;
margin-bottom:8px;
}

.parcelamento-produto{
font-size:14px;
margin-bottom:0;
}

.compra-box-compacta{
margin-top:14px;
padding:14px;
max-width:100%;
}

.variacoes-compactas{
gap:10px;
margin-bottom:10px;
}

.compra-linha-final{
margin-top:4px;
}

.btn-cart-premium,
.btn-favorito-premium{
height:40px !important;
}

.imagem-principal-area{
min-height:auto;
}

.zoom-container{
height:auto;
}

.foto-principal{
max-height:420px;
object-fit:contain;
}
/* SISTEMA DE TEMAS */

body.tema-premium{
background:#f3f4f8;
}

body.tema-premium .product-card,
body.tema-premium .compra-box,
body.tema-premium .checkout-summary,
body.tema-premium .auth-box{
border-radius:22px;
box-shadow:0 18px 45px rgba(0,0,0,.08);
}

body.tema-premium .header-main{
background:#fff;
box-shadow:0 8px 25px rgba(0,0,0,.05);
}

body.tema-dark{
background:#111;
color:#f5f5f5;
}

body.tema-dark .header-main,
body.tema-dark .footer,
body.tema-dark .product-card,
body.tema-dark .compra-box,
body.tema-dark .checkout-summary,
body.tema-dark .auth-box{
background:#1b1b1b;
color:#fff;
border-color:#333;
}

body.tema-dark .header-nav{
background:#000;
}

body.tema-dark input,
body.tema-dark textarea,
body.tema-dark select{
background:#222;
color:#fff;
border-color:#444;
}

body.tema-clean{
background:#fff;
}

body.tema-clean .header-nav{
background:#fff;
border-top:1px solid #eee;
border-bottom:1px solid #eee;
}

body.tema-clean .header-nav a{
color:#111;
}

body.tema-clean .product-card,
body.tema-clean .compra-box,
body.tema-clean .checkout-summary{
box-shadow:none;
border:1px solid #eee;
}

body.tema-marketplace .header-main{
background:#ffe600;
}

body.tema-marketplace .logo,
body.tema-marketplace .header-link{
color:#222;
}

body.tema-marketplace .header-nav{
background:#333;
}

body.tema-marketplace .cart-btn,
body.tema-marketplace .checkout-whatsapp,
body.tema-marketplace .btn-cart-premium{
background:#3483fa !important;
}

body.tema-marketplace .preco-produto,
body.tema-marketplace .price{
color:#3483fa;
}
body{
background:var(--cor-fundo);
color:var(--cor-texto);
}

.buy-btn,
.btn,
.checkout-whatsapp,
.btn-cart-premium,
.cart-btn,
.favorite-header-btn,
button[type="submit"]{
background:var(--cor-principal);
}

.header-nav{
background:var(--cor-secundaria);
}

.preco-produto,
.price,
.section-title{
color:var(--cor-principal);
}

.product-card,
.compra-box,
.checkout-summary,
.checkout-form-box,
.auth-box,
.account-box,
.orders-box,
.cart-summary{
background:var(--cor-card);
}
.footer-links-legais{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
margin:20px 0;
}

.footer-links-legais a{
color:#fff;
text-decoration:none;
font-size:14px;
opacity:.9;
transition:.2s;
}

.footer-links-legais a:hover{
opacity:1;
text-decoration:underline;
}
.page-box{
max-width:900px;
margin:auto;
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.05);
line-height:1.8;
}

.page-box h1{
margin-bottom:25px;
}

.page-box h3{
margin-top:25px;
margin-bottom:10px;
}
/* CORREÇÃO DE TEXTO DOS BOTÕES */

.btn,
.btn:visited,
.btn:hover,
.btn:active,
.checkout-whatsapp,
.checkout-whatsapp:visited,
.checkout-whatsapp:hover,
.checkout-whatsapp:active,
.remove-btn,
.remove-btn:visited,
.remove-btn:hover,
.remove-btn:active{
color:#fff !important;
text-decoration:none !important;
}

.continue-shopping{
color:var(--cor-principal) !important;
}
.erro-variacoes{
display:none;
background:#ffeaea;
border:1px solid #ffb3b3;
color:#c62828;
padding:12px 15px;
border-radius:10px;
margin-bottom:15px;
font-size:14px;
font-weight:600;
}
.erro-variacoes{
display:none;
background:#ffeaea;
border:1px solid #ffb3b3;
color:#c62828;
padding:10px 12px;
border-radius:10px;
margin:10px 0;
font-size:13px;
font-weight:700;
}
/* =====================================
MOBILE REAL
===================================== */

@media (max-width:768px){

.container{
width:95%;
}

/* HEADER */

.header-main-container{
display:flex;
flex-direction:column;
gap:12px;
padding:12px 0;
}

.logo{
justify-content:center;
}

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

.header-actions{
display:flex;
justify-content:center;
gap:10px;
flex-wrap:wrap;
}

.header-link{
font-size:14px;
}

.favorite-header-btn,
.cart-btn{
width:auto;
padding:10px 14px;
font-size:13px;
}

.menu{
justify-content:flex-start;
overflow-x:auto;
gap:18px;
padding:12px;
white-space:nowrap;
}

.menu li{
flex-shrink:0;
}

/* ÁREA CLIENTE */

.conta-layout-loja{
display:block;
}

.conta-menu-loja{
display:flex;
overflow-x:auto;
gap:10px;
margin-bottom:20px;
padding-bottom:5px;
}

.conta-menu-loja a{
min-width:180px;
padding:14px;
}

.conta-conteudo-loja{
width:100%;
}

.conta-bloco-topo{
flex-direction:column;
align-items:flex-start;
gap:10px;
}

.cadastro-card-loja{
grid-template-columns:1fr;
}

.pedido-loja-info{
flex-direction:column;
align-items:flex-start;
}

.pedido-loja-resumo{
flex-direction:column;
align-items:flex-start;
gap:10px;
}

/* PEDIDOS */

.pedido-loja-card{
padding:15px;
}

.pedido-loja-topo{
flex-direction:column;
align-items:flex-start;
gap:8px;
}

/* ENDEREÇOS */

.endereco-loja-topo{
flex-direction:column;
align-items:flex-start;
}

/* FORMULÁRIOS */

.form-loja-grid{
grid-template-columns:1fr;
}

/* CHECKOUT */

.checkout-layout{
grid-template-columns:1fr;
}

/* CARRINHO */

.cart-layout{
grid-template-columns:1fr;
}

.cart-item{
grid-template-columns:80px 1fr;
}

.cart-subtotal{
grid-column:1/-1;
text-align:left;
margin-top:10px;
}

}
/* ==========================================
HEADER RESPONSIVO PROFISSIONAL
========================================== */

.header-mobile-pro{
position:sticky;
top:0;
z-index:999;
background:#fff;
border-bottom:1px solid #eee;
}

.header-main-container-pro{
display:grid;
grid-template-columns:auto auto 1fr auto;
gap:16px;
align-items:center;
padding:14px 0;
}

.mobile-menu-btn{
display:none;
width:42px;
height:42px;
border:none;
border-radius:12px;
background:#f5f5f5;
font-size:24px;
font-weight:900;
cursor:pointer;
color:#111;
}

.logo-pro{
display:flex;
align-items:center;
gap:8px;
text-decoration:none;
white-space:nowrap;
font-size:26px;
font-weight:900;
color:#111;
}

.logo-pro img{
height:52px;
max-width:220px;
object-fit:contain;
display:block;
}

.search-form-pro{
width:100%;
max-width:680px;
justify-self:center;
}

.header-actions-pro{
display:flex;
align-items:center;
gap:12px;
white-space:nowrap;
}

.desktop-only{
display:inline-flex;
}

.mobile-search-area{
display:none;
}

.mobile-menu-overlay,
.mobile-menu-panel{
display:none;
}

/* MOBILE */

@media(max-width:768px){

body.menu-mobile-aberto{
overflow:hidden;
}

.header-main-container-pro{
display:grid;
grid-template-columns:42px 1fr auto;
gap:10px;
padding:10px 0;
}

.mobile-menu-btn{
display:flex;
align-items:center;
justify-content:center;
}

.logo-pro{
justify-content:center;
font-size:20px;
overflow:hidden;
}

.logo-pro img{
height:38px !important;
max-width:150px !important;
}

.logo-icon{
width:32px;
height:32px;
font-size:17px;
border-radius:10px;
}

.search-form-pro{
display:none;
}

.mobile-search-area{
display:block;
background:#fff;
padding:0 0 10px;
}

.search-form-mobile{
display:flex;
width:100%;
height:42px;
border-radius:999px;
overflow:hidden;
background:#f7f7f7;
border:1px solid #e5e5e5;
}

.search-form-mobile input{
flex:1;
border:none;
background:transparent;
outline:none;
padding:0 14px;
font-size:14px;
}

.search-form-mobile button{
width:46px;
border:none;
background:var(--cor-principal);
color:#fff;
font-size:16px;
}

.header-actions-pro{
justify-content:flex-end;
gap:8px;
}

.account-link,
.desktop-only,
.favorite-header-btn{
display:none !important;
}

.cart-btn-pro{
width:42px;
height:42px;
padding:0 !important;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
}

.cart-btn-pro span:not(.cart-count){
display:none;
}

.cart-count{
top:-6px;
right:-6px;
}

.desktop-nav{
display:none;
}

.mobile-menu-overlay{
display:block;
position:fixed;
inset:0;
background:rgba(0,0,0,.45);
z-index:9998;
opacity:0;
visibility:hidden;
transition:.25s;
}

.mobile-menu-overlay.active{
opacity:1;
visibility:visible;
}

.mobile-menu-panel{
display:block;
position:fixed;
top:0;
left:0;
width:82%;
max-width:330px;
height:100vh;
background:#fff;
z-index:9999;
transform:translateX(-100%);
transition:.25s;
overflow-y:auto;
box-shadow:18px 0 40px rgba(0,0,0,.18);
}

.mobile-menu-panel.active{
transform:translateX(0);
}

.mobile-menu-top{
display:flex;
justify-content:space-between;
align-items:center;
gap:15px;
padding:18px;
border-bottom:1px solid #eee;
}

.mobile-menu-top strong{
font-size:18px;
color:#111;
}

.mobile-menu-top button{
width:36px;
height:36px;
border:none;
border-radius:10px;
background:#f3f3f3;
font-size:26px;
line-height:1;
cursor:pointer;
color:#111;
}

.mobile-menu-user{
padding:18px;
border-bottom:1px solid #eee;
background:#fafafa;
}

.mobile-menu-user p{
font-weight:900;
margin-bottom:10px;
color:#222;
}

.mobile-menu-user a{
display:inline-flex;
margin-right:10px;
color:var(--cor-principal);
font-weight:800;
text-decoration:none;
font-size:14px;
}

.mobile-menu-links{
display:grid;
padding:10px 0;
}

.mobile-menu-links a{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 18px;
text-decoration:none;
font-weight:800;
color:#222;
border-bottom:1px solid #f1f1f1;
}

.mobile-menu-links a span{
background:var(--cor-principal);
color:#fff;
min-width:22px;
height:22px;
border-radius:50%;
font-size:12px;
display:flex;
align-items:center;
justify-content:center;
}

.mobile-menu-links a:hover{
background:#fff3e8;
color:var(--cor-principal);
}

}

/* AJUSTES GERAIS MOBILE PARA NÃO QUEBRAR LAYOUT */

@media(max-width:768px){

html,
body{
max-width:100%;
overflow-x:hidden;
}

.container{
width:94%;
}

.section{
padding:35px 0;
}

.section-title{
font-size:28px;
margin-bottom:25px;
}

.menu{
overflow-x:auto;
white-space:nowrap;
}

.products-grid{
grid-template-columns:1fr;
gap:18px;
}

.product-card img{
height:210px;
object-fit:contain;
background:#f8f8f8;
}

.produto-detalhes{
grid-template-columns:1fr;
gap:24px;
}

.galeria-produto{
flex-direction:column-reverse;
}

.coluna-miniaturas{
flex-direction:row;
overflow-x:auto;
}

.foto-principal{
max-height:320px;
object-fit:contain;
}

.cart-layout,
.checkout-layout,
.account-panel{
grid-template-columns:1fr;
}

.cart-summary,
.checkout-summary{
position:static;
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.whatsapp-float{
right:14px;
bottom:14px;
padding:12px;
}

.whatsapp-float strong{
display:none;
}

}
/* ==========================================
RESPONSIVO GLOBAL FINAL
========================================== */

html,
body{
width:100%;
max-width:100%;
overflow-x:hidden;
}

img,
video,
iframe{
max-width:100%;
height:auto;
}

@media(max-width:1024px){

.container{
width:94%;
max-width:100%;
}

.section{
padding:45px 0;
}

.section-title{
font-size:32px;
margin-bottom:30px;
}

.products-grid{
grid-template-columns:repeat(2,minmax(0,1fr));
gap:18px;
}

.produto-detalhes,
.checkout-layout,
.cart-layout,
.account-panel,
.avaliacoes-layout{
grid-template-columns:1fr;
}

.cart-summary,
.checkout-summary{
position:static;
}

}

@media(max-width:768px){

body{
font-size:15px;
}

.container{
width:94%;
}

.section{
padding:32px 0;
}

.section-title{
font-size:26px;
line-height:1.25;
margin-bottom:24px;
}

/* BANNERS */

.banner-slider{
width:94%;
margin:15px auto;
border-radius:14px;
}

.slide img{
height:170px;
object-fit:contain;
}

.prev,
.next{
width:34px;
height:34px;
font-size:15px;
}

/* PRODUTOS */

@media(max-width:768px){

.products-grid{
grid-template-columns:1fr;
gap:14px;
}

.product-card{
display:grid;
grid-template-columns:110px 1fr;
align-items:center;
}

.product-card img{
height:110px;
padding:8px;
}

.product-info{
padding:12px;
}

.product-info h3{
font-size:14px;
height:auto;
margin-bottom:6px;
}

.product-info p{
display:none;
}

.price{
font-size:24px;
margin-bottom:8px;
}

.buy-btn{
height:38px;
font-size:13px;
}

}

/* PÁGINA DO PRODUTO */

.produto-detalhes{
display:grid;
grid-template-columns:1fr;
gap:22px;
}

.galeria-produto{
flex-direction:column-reverse;
gap:12px;
}

.coluna-miniaturas{
flex-direction:row;
overflow-x:auto;
gap:8px;
padding-bottom:4px;
}

.coluna-miniaturas::-webkit-scrollbar{
display:none;
}

.miniatura{
width:66px;
height:66px;
flex-shrink:0;
}

.foto-principal{
max-height:300px;
object-fit:contain;
padding:6px;
}

.produto-info-premium h1,
.produto-detalhes h1{
font-size:24px;
line-height:1.25;
}

.descricao-curta{
font-size:14px;
line-height:1.5 !important;
}

.price-box{
padding:14px 0;
margin:14px 0;
}

.preco-produto,
.price-box .preco-produto{
font-size:30px;
}

.parcelamento-produto{
font-size:13px;
}

.compra-box,
.compra-box-compacta{
padding:13px;
border-radius:14px;
}

.form-compra,
.form-compra-compacta{
display:block;
}

.variacoes-compactas{
gap:10px;
}

.variation-options{
gap:7px;
}

.variation-option span{
height:36px;
padding:0 12px;
font-size:12px;
}

.compra-linha-final{
grid-template-columns:1fr;
gap:10px;
}

.qty-control,
.qty-control-compacto{
width:100%;
max-width:none;
}

.btn-cart-premium,
.btn-favorito-premium{
width:100%;
height:42px !important;
font-size:14px;
}

/* ABAS PRODUTO */

.product-tabs{
margin-top:35px;
border-radius:14px;
overflow:hidden;
}

.tabs-nav{
overflow-x:auto;
gap:20px;
padding:0 14px;
}

.tabs-nav::-webkit-scrollbar{
display:none;
}

.tab-btn{
white-space:nowrap;
font-size:13px;
}

.tab-content{
padding:22px 16px;
font-size:14px;
}

/* CARRINHO */

.cart-layout{
grid-template-columns:1fr;
gap:18px;
}

.cart-item{
grid-template-columns:82px 1fr;
gap:12px;
padding:14px;
border-radius:16px;
}

.cart-item img{
width:82px;
height:82px;
}

.cart-info h3{
font-size:15px;
}

.cart-info p{
font-size:15px;
}

.cart-subtotal{
grid-column:1/-1;
text-align:left;
display:flex;
justify-content:space-between;
align-items:center;
gap:10px;
}

.cart-subtotal strong{
font-size:17px;
margin:0;
}

.cart-summary{
padding:20px;
border-radius:18px;
}

.summary-line strong{
font-size:22px;
}

/* CHECKOUT */

.checkout-layout{
grid-template-columns:1fr;
gap:18px;
}

.checkout-form-box,
.checkout-summary{
padding:20px;
border-radius:18px;
}

.checkout-form-box h3,
.checkout-summary h3{
font-size:21px;
}

.checkout-form-box input,
.checkout-form-box textarea,
.checkout-form-box select{
font-size:16px;
}

.endereco-checkout-card{
padding:14px;
}

.cupom-box{
flex-direction:column;
}

/* MINHA CONTA */

.conta-section{
padding-top:25px;
}

.conta-ecommerce{
padding:0;
max-width:100%;
}

.conta-intro{
margin-bottom:18px;
}

.conta-avatar{
width:48px;
height:48px;
font-size:22px;
}

.conta-intro strong{
font-size:16px;
}

.conta-layout-loja{
grid-template-columns:1fr;
gap:20px;
}

.conta-menu-loja{
display:flex;
overflow-x:auto;
gap:10px;
padding-bottom:5px;
}

.conta-menu-loja::-webkit-scrollbar{
display:none;
}

.conta-menu-loja a{
min-width:180px;
padding:12px 14px;
border-left:none;
border-bottom:3px solid transparent;
}

.conta-menu-loja a:hover,
.conta-menu-loja a.active{
border-left:none;
border-bottom-color:var(--cor-principal);
}

.conta-menu-loja strong{
font-size:14px;
}

.conta-menu-loja span{
font-size:12px;
}

.conta-bloco-topo{
flex-direction:column;
align-items:flex-start;
gap:8px;
}

.conta-bloco-topo h1{
font-size:28px;
}

.cadastro-card-loja,
.form-loja-grid{
grid-template-columns:1fr;
gap:15px;
}

.cadastro-card-loja,
.form-loja,
.pedido-loja-card,
.endereco-loja-card{
padding:16px;
border-radius:14px;
}

.pedido-loja-info,
.pedido-loja-resumo,
.endereco-loja-topo{
flex-direction:column;
align-items:flex-start;
gap:10px;
}

.pedido-loja-resumo a,
.btn-loja{
width:100%;
text-align:center;
}

/* FORMULÁRIOS */

.auth-box,
.account-box,
.page-box,
.contact-box{
width:100%;
padding:22px;
border-radius:18px;
}

.auth-box h2,
.account-box h2,
.contact-box h1{
font-size:24px;
}

input,
textarea,
select{
font-size:16px;
max-width:100%;
}

/* AVALIAÇÕES */

.avaliacoes-section,
.avaliacao-form-section,
.related-section{
margin-top:45px;
padding-top:35px;
}

.avaliacoes-header h2,
.related-header h2{
font-size:26px;
}

.avaliacoes-header p,
.related-header p{
font-size:14px;
}

.avaliacao-card,
.avaliacao-form-box{
padding:18px;
border-radius:18px;
}

.avaliacao-form-grid{
grid-template-columns:1fr;
}

.avaliacao-topo{
flex-direction:column;
align-items:flex-start;
}

.avaliacao-midias img,
.avaliacao-midias video{
width:90px;
height:90px;
}

/* RODAPÉ */

.footer{
padding:35px 0;
margin-top:45px;
}

.footer-grid{
grid-template-columns:1fr;
gap:28px;
text-align:center;
}

.footer-links-legais{
gap:14px;
}

.whatsapp-float{
right:14px;
bottom:14px;
padding:12px;
}

.whatsapp-float strong{
display:none;
}

}

@media(max-width:480px){

.container{
width:94%;
}

.section{
padding:28px 0;
}

.section-title{
font-size:24px;
}

.slide img{
height:145px;
}

.product-card img{
height:175px;
}

.foto-principal{
max-height:260px;
}

.produto-info-premium h1,
.produto-detalhes h1{
font-size:22px;
}

.preco-produto,
.price-box .preco-produto{
font-size:28px;
}

.cart-item{
grid-template-columns:72px 1fr;
}

.cart-item img{
width:72px;
height:72px;
}

.conta-menu-loja a{
min-width:165px;
}

.cadastro-card-loja,
.form-loja,
.pedido-loja-card,
.endereco-loja-card{
padding:14px;
}

}
/* ==========================================
CORREÇÃO FINAL DOS CARDS DE PRODUTO
DESKTOP + MOBILE
========================================== */

.products-grid{
display:grid !important;
grid-template-columns:repeat(auto-fill,minmax(230px,1fr)) !important;
gap:20px !important;
}

.product-card{
display:block !important;
background:#fff;
border:1px solid #eee;
border-radius:16px;
overflow:hidden;
box-shadow:0 4px 14px rgba(0,0,0,.04);
}

.product-card img{
width:100% !important;
height:180px !important;
object-fit:contain !important;
padding:10px;
background:#fff;
display:block;
}

.product-info{
padding:14px !important;
}

.product-info h3{
font-size:15px !important;
line-height:1.35 !important;
height:42px;
overflow:hidden;
margin-bottom:8px;
}

.product-info p{
font-size:13px !important;
line-height:1.4;
height:36px;
overflow:hidden;
color:#777;
margin-bottom:10px;
}

.price{
font-size:24px !important;
margin:10px 0 !important;
}

.buy-btn{
display:flex !important;
align-items:center;
justify-content:center;
height:40px;
font-size:13px !important;
border-radius:10px;
padding:0 12px !important;
}

/* TABLET */

@media(max-width:900px){

.products-grid{
grid-template-columns:repeat(2,minmax(0,1fr)) !important;
gap:16px !important;
}

.product-card img{
height:165px !important;
}

}

/* MOBILE */

@media(max-width:600px){

.products-grid{
grid-template-columns:1fr !important;
gap:12px !important;
}

.product-card{
display:grid !important;
grid-template-columns:115px 1fr;
align-items:center;
min-height:135px;
border-radius:14px;
}

.product-card img{
width:115px !important;
height:115px !important;
padding:8px;
}

.product-info{
padding:12px !important;
}

.product-info h3{
font-size:13px !important;
height:auto !important;
max-height:38px;
margin-bottom:6px;
}

.product-info p{
display:none !important;
}

.price{
font-size:20px !important;
margin:6px 0 8px !important;
}

.buy-btn{
height:34px;
font-size:12px !important;
border-radius:8px;
}

.favorite-btn{
width:34px;
height:34px;
font-size:16px;
top:10px;
right:10px;
}

}

/* MOBILE PEQUENO */

@media(max-width:420px){

.product-card{
grid-template-columns:105px 1fr;
}

.product-card img{
width:105px !important;
height:105px !important;
}

.product-info h3{
font-size:12.5px !important;
}

.price{
font-size:19px !important;
}

}
/* ==========================================
CORREÇÃO MOBILE CARDS E BOTÃO VER PRODUTO
========================================== */

.buy-btn,
.buy-btn:visited,
.buy-btn:hover,
.buy-btn:active{
color:#fff !important;
text-decoration:none !important;
}

@media(max-width:600px){

.product-card{
grid-template-columns:100px 1fr !important;
min-height:118px !important;
}

.product-card img{
width:100px !important;
height:100px !important;
padding:6px !important;
}

.product-info{
padding:10px !important;
}

.product-info h3{
font-size:12px !important;
line-height:1.25 !important;
max-height:32px !important;
margin-bottom:5px !important;
}

.price{
font-size:18px !important;
margin:4px 0 6px !important;
}

.buy-btn{
height:30px !important;
font-size:11px !important;
padding:0 10px !important;
border-radius:7px !important;
background:var(--cor-principal) !important;
color:#fff !important;
text-decoration:none !important;
}

.favorite-btn{
width:30px !important;
height:30px !important;
font-size:14px !important;
top:8px !important;
right:8px !important;
}

}

@media(max-width:420px){

.product-card{
grid-template-columns:92px 1fr !important;
min-height:110px !important;
}

.product-card img{
width:92px !important;
height:92px !important;
}

.buy-btn{
height:28px !important;
font-size:10.5px !important;
}

}
/* =====================================
CARD TOTALMENTE CLICÁVEL
===================================== */

.product-card-link{
display:block;
text-decoration:none !important;
color:inherit !important;
}

.product-card-link:hover{
text-decoration:none !important;
color:inherit !important;
}

.product-card-link .product-card{
height:100%;
}

.product-card-link .buy-btn{
pointer-events:none;
}

.favorite-btn{
z-index:20;
}
.product-card-clickable{
cursor:pointer;
}

.product-card-clickable .buy-btn,
.product-card-clickable .favorite-btn{
cursor:pointer;
}

.buy-btn,
.buy-btn:visited,
.buy-btn:hover,
.buy-btn:active{
color:#fff !important;
text-decoration:none !important;
}
/* MOBILE - CARD DE PRODUTO ESTILO MARKETPLACE */

@media(max-width:600px){

.products-grid{
grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
gap:12px !important;
}

.product-card{
display:block !important;
position:relative !important;
min-height:auto !important;
border-radius:14px !important;
overflow:hidden !important;
background:#fff !important;
}

.product-card img{
width:100% !important;
height:135px !important;
object-fit:contain !important;
padding:10px !important;
background:#fff !important;
}

.product-info{
padding:12px !important;
}

.product-info h3{
font-size:12.5px !important;
line-height:1.25 !important;
height:34px !important;
overflow:hidden !important;
margin-bottom:6px !important;
padding-right:0 !important;
}

.product-info p{
display:none !important;
}

.price{
font-size:17px !important;
line-height:1.2 !important;
margin:6px 0 8px !important;
}

.buy-btn{
height:30px !important;
font-size:11px !important;
border-radius:8px !important;
padding:0 8px !important;
}

.favorite-btn{
top:10px !important;
right:10px !important;
width:34px !important;
height:34px !important;
font-size:15px !important;
z-index:20 !important;
background:#fff !important;
box-shadow:0 6px 16px rgba(0,0,0,.16) !important;
}

.favorite-btn.active,
.favorite-btn:hover{
background:var(--cor-principal) !important;
color:#fff !important;
}

}

@media(max-width:390px){

.products-grid{
gap:10px !important;
}

.product-card img{
height:125px !important;
}

.product-info{
padding:10px !important;
}

.product-info h3{
font-size:12px !important;
height:32px !important;
}

.price{
font-size:16px !important;
}

.buy-btn{
height:28px !important;
font-size:10.5px !important;
}

}
.pagamento-opcoes{
display:grid;
gap:12px;
margin:15px 0 25px;
}

.pagamento-card{
display:flex;
align-items:center;
gap:12px;
border:1px solid #eee;
border-radius:14px;
padding:14px;
cursor:pointer;
background:#fff;
}

.pagamento-card input{
width:auto;
}

.pagamento-card strong{
display:block;
margin-bottom:4px;
}

.pagamento-card p{
margin:0;
font-size:13px;
color:#666;
}
/* CORREÇÃO CARROSSEL - REMOVE BEIRINHA DO PRÓXIMO BANNER */

.banner-full-ajuste{
overflow:hidden !important;
}

.banner-full-ajuste .slider{
display:flex !important;
width:100% !important;
height:100% !important;
gap:0 !important;
}

.banner-full-ajuste .slide{
min-width:100% !important;
width:100% !important;
max-width:100% !important;
flex:0 0 100% !important;
height:100% !important;
overflow:hidden !important;
}

.banner-full-ajuste .slide a{
display:block !important;
width:100% !important;
height:100% !important;
}

.banner-full-ajuste .slide img{
width:100% !important;
height:100% !important;
display:block !important;
object-fit:cover !important;
object-position:center !important;
}
/* ==========================================
SISTEMA GLOBAL DE CORES DINÂMICAS
========================================== */

.logo,
.logo-icon,
.price,
.preco-produto,
.section-title,
.tab-btn.active,
.header-link:hover,
.menu a:hover,
.related-header span,
.avaliacoes-header span{
    color: var(--cor-principal) !important;
}

.btn,
.buy-btn,
.cart-btn,
.cart-btn-pro,
.favorite-header-btn,
.btn-cart-premium,
.checkout-whatsapp,
.search-form button,
.search-form-mobile button,
.cart-count,
.tab-btn.active::after,
.mobile-menu-links a span{
    background: var(--cor-principal) !important;
}

.header-nav,
.footer,
.btn-favorito,
.btn-favorito-premium{
    background: var(--cor-secundaria) !important;
}

.search-form:focus-within,
input:focus,
textarea:focus,
select:focus,
.miniatura:hover{
    border-color: var(--cor-principal) !important;
    box-shadow: 0 0 0 4px rgba(0,0,0,.08);
}

.cart-btn:hover,
.btn:hover,
.buy-btn:hover,
.btn-cart-premium:hover{
    opacity: .9;
}

.favorite-btn:hover,
.favorite-btn.active{
    background: var(--cor-principal) !important;
    color:#fff !important;
}

.menu a::after{
    background: var(--cor-principal) !important;
}
/* HEADER DINÂMICO */

.header,
.header-main,
.header-nav{
background:var(--cor-header) !important;
}

.mobile-menu-panel{
background:var(--cor-header) !important;
}

.header-link,
.menu a,
.logo{
color:var(--cor-texto) !important;
}
/* ==========================
HEADER DINÂMICO
========================== */

.header,
.header-main,
.header-nav{
background:var(--cor-header) !important;
}

.mobile-menu-panel{
background:var(--cor-header) !important;
}

/* ==========================
FAVORITOS DINÂMICO
========================== */

.favorite-header-btn{
background:var(--cor-card) !important;
color:var(--cor-texto) !important;
border:1px solid var(--cor-principal) !important;
}

.favorite-header-btn:hover{
background:var(--cor-principal) !important;
color:#fff !important;
}

.favorite-btn:hover,
.favorite-btn.active{
background:var(--cor-principal) !important;
}

/* ==========================
TEMA GLOBAL
========================== */

body{
background:var(--cor-fundo);
color:var(--cor-texto);
}

.product-card,
.compra-box,
.checkout-summary,
.auth-box,
.orders-box{
background:var(--cor-card);
}
/* ==========================================
HEADER E MENU DE CATEGORIAS SEPARADOS
========================================== */

.header,
.header-main,
.mobile-search-area{
background:var(--cor-header) !important;
}

.header-nav,
.desktop-nav{
background:var(--cor-menu) !important;
}

.header-nav .menu a{
color:#fff !important;
}

.header-nav .menu a:hover{
color:var(--cor-principal) !important;
}

.header-nav .menu a::after{
background:var(--cor-principal) !important;
}

.mobile-menu-panel{
background:var(--cor-header) !important;
}

.mobile-menu-links a{
color:var(--cor-texto) !important;
}

.mobile-menu-links a:hover{
background:var(--cor-menu) !important;
color:#fff !important;
}

/* FAVORITOS CORRIGIDO */

.favorite-header-btn{
background:var(--cor-card) !important;
color:var(--cor-texto) !important;
border:1px solid var(--cor-principal) !important;
}

.favorite-header-btn:hover{
background:var(--cor-principal) !important;
color:#fff !important;
border-color:var(--cor-principal) !important;
}

.favorite-btn:hover,
.favorite-btn.active{
background:var(--cor-principal) !important;
color:#fff !important;
}
/* =====================================
HEADER E MENU INDEPENDENTES
===================================== */

.header,
.header-main,
.mobile-search-area{
background:var(--cor-header) !important;
}

.header-nav,
.desktop-nav{
background:var(--cor-menu) !important;
border-top:none !important;
}

.header-nav .menu a{
color:#fff !important;
}

.header-nav .menu a:hover{
color:var(--cor-principal) !important;
}

.header-nav .menu a::after{
background:var(--cor-principal) !important;
}

/* MOBILE */

.mobile-menu-panel{
background:var(--cor-header) !important;
}

.mobile-menu-links a:hover{
background:var(--cor-menu) !important;
color:#fff !important;
}

/* FAVORITOS CORRIGIDO DEFINITIVO */

.favorite-header-btn{
background:var(--cor-card) !important;
color:var(--cor-texto) !important;
border:1px solid var(--cor-principal) !important;
}

.favorite-header-btn:hover{
background:var(--cor-principal) !important;
border-color:var(--cor-principal) !important;
color:#fff !important;
}

.favorite-btn{
border:1px solid rgba(0,0,0,.08) !important;
}

.favorite-btn:hover,
.favorite-btn.active{
background:var(--cor-principal) !important;
color:#fff !important;
}

/* ==========================================
AJUSTE FINAL - CORES DINÂMICAS DO RODAPÉ E FAVORITOS
========================================== */

.footer{
background:var(--cor-footer) !important;
color:var(--cor-footer-texto) !important;
}

.footer h3,
.footer h4,
.footer p,
.footer li,
.footer .copyright,
.footer a,
.footer-links-legais a{
color:var(--cor-footer-texto) !important;
}

.footer hr{
border:none !important;
border-top:1px solid rgba(255,255,255,.18) !important;
margin:25px 0 10px !important;
}

/* Botão Favoritos no header igual ao botão Carrinho */
.favorite-header-btn{
position:relative !important;
display:inline-flex !important;
align-items:center !important;
justify-content:center !important;
gap:8px !important;
background:var(--cor-favoritos) !important;
color:#fff !important;
padding:12px 18px !important;
border-radius:999px !important;
border:none !important;
font-size:15px !important;
font-weight:800 !important;
text-decoration:none !important;
transition:.25s !important;
}

.favorite-header-btn:hover{
background:var(--cor-favoritos-hover) !important;
color:#fff !important;
transform:translateY(-1px) !important;
}

.favorite-header-btn .cart-count{
background:var(--cor-principal) !important;
color:#fff !important;
}

/* Coração dos cards */
.favorite-btn{
background:#fff !important;
color:var(--cor-favoritos) !important;
}

.favorite-btn:hover,
.favorite-btn.active{
background:var(--cor-favoritos-hover) !important;
color:#fff !important;
}

/* Botão Favoritar da página do produto */
.btn-favorito,
.btn-favorito-premium{
background:var(--cor-favoritos) !important;
color:#fff !important;
}

.btn-favorito:hover,
.btn-favorito-premium:hover{
background:var(--cor-favoritos-hover) !important;
color:#fff !important;
}
/* =====================================
BOTÃO FLUTUANTE WHATSAPP
===================================== */

.whatsapp-float{
position:fixed;
right:20px;
bottom:20px;
z-index:99999;

display:flex;
align-items:center;
gap:10px;

background:#25D366;
color:#fff !important;

padding:14px 18px;
border-radius:999px;

font-weight:800;
text-decoration:none;

box-shadow:0 12px 30px rgba(0,0,0,.20);

transition:.25s;
}

.whatsapp-float:hover{
transform:translateY(-3px);
box-shadow:0 18px 35px rgba(0,0,0,.25);
color:#fff !important;
}

.whatsapp-float span{
font-size:22px;
}

@media(max-width:768px){

.whatsapp-float{
right:12px;
bottom:12px;
padding:12px 14px;
}

.whatsapp-float strong{
display:none;
}

}
.checkout-pagamento-btn{
display:flex !important;
align-items:center;
justify-content:center;
width:100%;
border:none;
cursor:pointer;
margin-top:20px;
background:var(--cor-principal) !important;
color:#fff !important;
font-size:16px;
font-weight:900;
text-align:center;
}

.checkout-pagamento-btn:hover{
background:var(--cor-hover) !important;
color:#fff !important;
}