body{
margin:0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial;
color:#222;
background:#fff;
}

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

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

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 0;
}

.logo{
height:70px;
}

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

nav a{
text-decoration:none;
color:#222;
font-weight:600;
}

.hero{
background:
linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
url("../images/store-bg.jpg");
background-size:cover;
background-position:center;
padding:120px 20px;
text-align:center;
color:white;
}

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

.tagline{
color:#e30000;
font-weight:700;
margin-bottom:20px;
}

.hero-text{
max-width:600px;
margin:auto;
margin-bottom:25px;
}

.primary-btn{
background:#e30000;
color:white;
padding:14px 28px;
border-radius:6px;
text-decoration:none;
font-weight:600;
}

.primary-btn:hover{
background:#c90000;
}

.info{
padding:70px 20px;
text-align:center;
}

.hours{
font-size:20px;
font-weight:700;
}

.page{
padding:60px 0;
}

.store-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
margin-top:35px;
}

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

.phone{
font-weight:bold;
margin-top:10px;
}

.store-buttons{
margin-top:15px;
}

.btn{
display:inline-block;
background:#e30000;
color:white;
padding:9px 14px;
border-radius:5px;
text-decoration:none;
margin-right:6px;
margin-top:6px;
font-size:14px;
}

.btn:hover{
background:#c90000;
}

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

.footer-grid{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:30px;
}

.footer a{
display:block;
color:white;
text-decoration:none;
margin-top:6px;
}

.copyright{
text-align:center;
margin-top:20px;
font-size:14px;
}

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:14px 18px;
border-radius:50px;
font-weight:600;
text-decoration:none;
box-shadow:0 4px 12px rgba(0,0,0,0.2);
}

.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
}

@media (max-width:768px){

nav{
display:none;
flex-direction:column;
background:white;
position:absolute;
top:70px;
right:20px;
padding:15px;
border:1px solid #eee;
}

nav.show{
display:flex;
}

.menu-toggle{
display:block;
}

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

.features{
padding:60px 20px;
background:#fafafa;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
text-align:center;
}

.feature{
padding:20px;
}

.store-preview{
padding:70px 20px;
background:#ffffff;
text-align:center;
}

.store-preview h2{
margin-bottom:30px;
}

}