*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background:#f8f8f8;
color:#222;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:#000;
color:#fff;
}

.logo h1{
font-size:32px;
color:#d4af37;
}

.logo p{
font-size:14px;
letter-spacing:3px;
color:#fff;
}

nav a{
text-decoration:none;
color:#fff;
margin-left:20px;
font-weight:bold;
transition:.3s;
}

nav a:hover{
color:#d4af37;
}

.hero{
height:90vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url("images/banner.jpg");
background-size:cover;
background-position:center;
color:white;
}

.hero h2{
font-size:55px;
margin-bottom:15px;
}

.hero p{
font-size:22px;
margin-bottom:30px;
}

.btn{
background:#d4af37;
color:#000;
padding:15px 35px;
text-decoration:none;
border-radius:5px;
font-weight:bold;
transition:.3s;
}

.btn:hover{
background:white;
}

@media(max-width:768px){

header{
flex-direction:column;
}

nav{
margin-top:15px;
}

nav a{
display:block;
margin:10px 0;
}

.hero h2{
font-size:36px;
}

.hero p{
font-size:18px;
}

}


.products{
padding:60px 8%;
text-align:center;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.card{
background:#fff;
padding:20px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.card img{
width:100%;
height:320px;
object-fit:cover;
border-radius:10px;
}

.card h3{
margin:15px 0;
}

.card p{
font-size:22px;
color:#d4af37;
font-weight:bold;
}

.card button{
margin-top:15px;
width:100%;
padding:12px;
background:#000;
color:#fff;
border:none;
border-radius:6px;
cursor:pointer;
}

.card button:hover{
background:#d4af37;
color:#000;
}
.checkout-box{
max-width:500px;
margin:40px auto;
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.checkout-box h2{
text-align:center;
margin-bottom:20px;
}

.checkout-box input,
.checkout-box textarea{
width:100%;
padding:12px;
margin:10px 0;
border:1px solid #ccc;
border-radius:6px;
font-size:16px;
}

.checkout-box button{
width:100%;
padding:15px;
background:#000;
color:#fff;
border:none;
border-radius:6px;
font-size:18px;
cursor:pointer;
}

.checkout-box button:hover{
background:#d4af37;
color:#000;
}