*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#0d0d0d;
color:#fff;
}

.top-bar{
background:#ff6b00;
color:#fff;
text-align:center;
padding:10px;
font-weight:600;
}

header{
position:sticky;
top:0;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
background:#111;
z-index:1000;
}

.logo{
font-size:30px;
font-weight:800;
color:#FFD700;
}

nav{
display:flex;
gap:25px;
}

nav a{
color:#fff;
text-decoration:none;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#FFD700;
}

.order-btn{
background:#FFD700;
color:#111;
padding:12px 25px;
border-radius:30px;
font-weight:700;
text-decoration:none;
}

.hero{
height:90vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
background:
linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
url("hero.jpg") center/cover;
}

.hero-content h1{
font-size:65px;
margin-bottom:10px;
}

.hero-content h2{
font-size:32px;
margin-bottom:15px;
color:#FFD700;
}

.hero-content p{
font-size:20px;
margin-bottom:25px;
}

.btn{
display:inline-block;
padding:15px 35px;
background:#ff6b00;
color:#fff;
text-decoration:none;
border-radius:40px;
font-weight:700;
}

#menu{
padding:70px 8%;
}

#menu h2{
text-align:center;
font-size:40px;
color:#FFD700;
margin-bottom:40px;
}

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

.card{
background:#1a1a1a;
border-radius:20px;
overflow:hidden;
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
}

.card h3{
padding:15px;
text-align:center;
}

@media(max-width:768px){

header{
flex-direction:column;
gap:15px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

.hero{
height:75vh;
padding:20px;
}

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

.hero-content h2{
font-size:22px;
}

.hero-content p{
font-size:16px;
}

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

header,
section,
footer,
.hero,
.menu-grid,
.gallery{
    width:100%;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

.menu-grid,
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.card{
    width:100%;
}
#payment{
    text-align:center;
    padding:40px 20px;
}

.qr{
    display:block;
    width:300px;
    max-width:90%;
    margin:20px auto;
    border-radius:20px;
    background:#fff;
    padding:10px;
}
#online-reviews{
padding:70px 8%;
text-align:center;
background:#181818;
}

#online-reviews h2{
font-size:38px;
color:#FFD700;
margin-bottom:20px;
}

#online-reviews p{
font-size:18px;
color:#ddd;
margin-bottom:30px;
}

#online-reviews .btn{
display:inline-block;
padding:15px 35px;
background:#ff6b00;
color:#fff;
text-decoration:none;
border-radius:40px;
font-weight:700;
transition:.3s;
}

#online-reviews .btn:hover{
background:#ff9800;
transform:scale(1.05);
}
#rating{
text-align:center;
padding:50px 20px;
background:#111;
color:white;
}

#rating h2{
color:#FFD700;
font-size:32px;
}

#rating p{
font-size:18px;
margin:15px 0;
}

#rating h1{
font-size:45px;
letter-spacing:5px;
}
/* ===================== FREE SHAKE OFFER ===================== */

.free-shake-offer{
    padding:40px 20px;
    background:#111;
}

.offer-box{
    max-width:900px;
    margin:auto;
    background:linear-gradient(135deg,#ff9800,#ff5722);
    color:#fff;
    text-align:center;
    padding:35px 25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.35);
}

.offer-tag{
    display:inline-block;
    background:#fff;
    color:#ff5722;
    font-weight:bold;
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:20px;
    font-size:14px;
}

.offer-box h2{
    font-size:34px;
    margin-bottom:15px;
}

.offer-text{
    font-size:22px;
    margin-bottom:20px;
}

.shake-list{
    background:rgba(255,255,255,0.2);
    padding:15px;
    border-radius:12px;
    font-size:20px;
    font-weight:bold;
    margin-bottom:15px;
}

.offer-note{
    font-size:15px;
    opacity:0.95;
    }
