body{
font-family: 'Poppins', sans-serif;
margin:0;
background:#fff7f8;
text-align:center;
}

.topbar{
background:#d94a8c;
color:white;
padding:15px;
display:flex;
justify-content:space-between;
align-items:center;
}

.search{
padding:6px;
border-radius:20px;
border:none;
}

.hero{
padding:40px 20px;
}

.hero h1{
color:#d94a8c;
font-size:32px;
}

.flavor-month{
background:white;
margin:20px;
padding:25px;
border-radius:12px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.flavor-month button{
background:#ff7a9c;
border:none;
padding:10px 20px;
border-radius:20px;
color:white;
margin-top:10px;
}

.why{
padding:30px;
}

.features{
display:flex;
justify-content:center;
gap:20px;
}

.feature{
background:white;
padding:15px;
border-radius:12px;
width:110px;
box-shadow:0 4px 8px rgba(0,0,0,0.1);
}

.drinks{
padding:30px;
}

.drink-grid{
display: grid;
grid-template-columns: repeat(2,1fr);
gap:20px;
padding:20px;
}

.drink{
background:white;
border-radius:12px;
padding:10px;
box-shadow:0 4px 8px rgba(0,0,0,0.1);
}

.drink img{
width:100%;
border-radius:10px;
}

.drink button{
background:#ff7a9c;
border:none;
color:white;
padding:8px 14px;
border-radius:20px;
margin-top:5px;
}

footer{
padding:20px;
}

.signup{
background:#ff6c8e;
color:white;
border:none;
padding:12px 20px;
border-radius:25px;
font-weight:bold;
}