:root{
--preto:#111;
--bege:#fbf7f4;
--rosa:#d96c7b;
--rosa-escuro:#b95563;
--cinza:#666;
}

/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:var(--bege);
color:var(--preto);
}

/* HEADER */

.topo{
position:sticky;
top:0;
width:100%;
background:#fff;
z-index:20;
box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.nav-container{
max-width:1200px;
margin:auto;
padding:18px 6%;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
font-family:'Dancing Script',cursive;
font-size:2rem;
color:var(--rosa);
}

nav{
display:flex;
gap:30px;
}

nav a{
text-decoration:none;
font-weight:500;
color:var(--preto);
position:relative;
}

nav a::after{
content:'';
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:var(--rosa);
transition:.3s;
}

nav a:hover::after{
width:100%;
}

/* CARRINHO */

.carrinho{
position:relative;
font-size:1.4rem;
cursor:pointer;
}

#contador-carrinho{
position:absolute;
top:-8px;
right:-10px;
background:#e91e63;
color:white;
font-size:.7rem;
padding:2px 6px;
border-radius:50px;
}

/* SECTION */

#produtos{
padding:100px 8%;
max-width:1200px;
margin:auto;
}

.section-title{
text-align:center;
margin-bottom:40px;
}

.section-title h2{
font-family:'Playfair Display',serif;
font-size:2.6rem;
}

/* FILTROS */

.filtros{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
margin-bottom:50px;
}

.filtros button{
padding:10px 22px;
border-radius:25px;
border:1px solid #ddd;
background:#fff;
cursor:pointer;
font-weight:500;
transition:.3s;
}

.filtros button:hover{
background:var(--rosa);
color:white;
border-color:var(--rosa);
}

.filtros button.active{
background:var(--rosa);
color:white;
border-color:var(--rosa);
}

/* GRID */

.produtos-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:35px;
}

/* CARD PRODUTO */

.produto-card{
background:#fff;
border-radius:26px;
overflow:hidden;
box-shadow:0 14px 35px rgba(0,0,0,.1);
transition:.35s;
display:flex;
flex-direction:column;
}

.produto-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 50px rgba(0,0,0,.18);
}

/* IMAGEM */

.produto-img img{
width:100%;
height:220px;
object-fit:cover;
}

/* INFO */

.produto-info{
padding:20px;
flex:1;
}

.produto-info h3{
margin-bottom:8px;
font-size:1.2rem;
}

.produto-info p{
font-size:.9rem;
color:var(--cinza);
margin-bottom:10px;
}

/* PREÇO */

.produto-preco{
font-weight:600;
margin-bottom:10px;
}

/* SABORES */

.produto-sabores{
font-size:.85rem;
color:#555;
margin-bottom:12px;
}

/* BOTÃO */

.btn-add{
padding:10px;
border:none;
border-radius:25px;
background:var(--rosa);
color:white;
cursor:pointer;
width:100%;
font-weight:500;
transition:.3s;
}

.btn-add:hover{
background:var(--rosa-escuro);
}

/* MINI CARRINHO */

.mini-carrinho{
position:fixed;
top:0;
right:-350px;
width:320px;
height:100vh;
background:white;
color:#333;
box-shadow:-10px 0 40px rgba(0,0,0,.2);
padding:25px;
transition:.3s;
z-index:999;
display:flex;
flex-direction:column;
}

.mini-carrinho.ativo{
right:0;
}

.carrinho-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
font-weight:600;
}

#lista-carrinho{
flex:1;
list-style:none;
padding:0;
}

#lista-carrinho li{
display:flex;
justify-content:space-between;
padding:10px 0;
border-bottom:1px solid #eee;
}

/* BOTÃO FINALIZAR */

.btn-finalizar{
margin-top:20px;
padding:14px;
border:none;
border-radius:30px;
background:#e91e63;
color:white;
cursor:pointer;
font-weight:600;
}

/* TOAST */

.toast{
position:fixed;
bottom:30px;
right:30px;
background:#e91e63;
color:white;
padding:12px 18px;
border-radius:10px;
opacity:0;
transition:.3s;
}

.toast.show{
opacity:1;
}

/* FOOTER */

footer{
background:#111;
color:white;
text-align:center;
padding:50px 20px;
margin-top:80px;
}

/* MOBILE */

@media (max-width:768px){

nav{
display:none;
}

nav.ativo{
display:flex;
flex-direction:column;
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
padding:25px 0;
align-items:center;
gap:20px;
}

#produtos{
padding:70px 6%;
}

.produtos-grid{
grid-template-columns:1fr;
}

.section-title h2{
font-size:2rem;
}

}

/* AREA DIREITA */

.nav-right{
display:flex;
align-items:center;
gap:20px;
}

/* BOTÃO MOBILE */

.menu-mobile{
display:none;
font-size:28px;
cursor:pointer;
}

/* MOBILE */

@media (max-width:768px){

.menu-mobile{
display:block;
}

nav{
display:none;
}

nav.ativo{
display:flex;
flex-direction:column;
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
padding:25px 0;
align-items:center;
gap:20px;
}

}

.logo img{
height:100px;
width:auto;
display:block;
}