*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Cormorant Garamond',serif;
background:#efe3d3;
color:#3d2b1f;
}

body{
font-family:'Cormorant Garamond',serif;
background:#efe3d3;
color:#3d2b1f;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:#f5ebdf;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.logo{
font-size:30px;
font-weight:700;
letter-spacing:2px;
}

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

nav a{
text-decoration:none;
color:#3d2b1f;
font-size:18px;
font-weight:600;
}

nav a:hover{
color:#8b5e3c;
}

.cart-btn{
font-size:22px;
font-weight:700;
}

.hero{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
padding:80px 8%;
gap:50px;
}

.hero-content h1{
font-size:65px;
line-height:1.1;
margin-bottom:20px;
}

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

.hero-content button{
padding:14px 35px;
border:none;
background:#8b5e3c;
color:white;
font-size:18px;
cursor:pointer;
border-radius:8px;
transition:.3s;
}

.hero-content button:hover{
transform:translateY(-3px);
}

.hero-image img{
width:100%;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.products{
padding:80px 8%;
}

.products h2{
text-align:center;
font-size:50px;
margin-bottom:50px;
}

.product-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.card{
background:white;
padding:20px;
border-radius:18px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:.3s;
}

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

.card img{
width:100%;
height:250px;
object-fit:cover;
border-radius:12px;
margin-bottom:15px;
}

.card h3{
font-size:28px;
margin-bottom:15px;
}

.variant{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:8px;
font-size:16px;
}

.card button{
width:100%;
padding:12px;
border:none;
background:#8b5e3c;
color:white;
font-size:17px;
border-radius:8px;
cursor:pointer;
}

.cart-section{
padding:80px 8%;
background:#f7efe5;
}

.cart-section h2{
font-size:45px;
margin-bottom:20px;
}

#customerName{
width:100%;
padding:15px;
margin-bottom:20px;
border-radius:10px;
border:1px solid #ccc;
font-size:18px;
}

#cartItems{
background:white;
padding:20px;
border-radius:12px;
min-height:150px;
margin-bottom:20px;
}

.cart-item{
display:flex;
justify-content:space-between;
margin-bottom:12px;
font-size:18px;
}

.cart-section h3{
font-size:35px;
margin-bottom:20px;
}

.whatsapp-btn{
background:#25D366;
color:white;
border:none;
padding:16px 35px;
font-size:20px;
border-radius:10px;
cursor:pointer;
}

.about{
padding:80px 8%;
text-align:center;
}

.about h2{
font-size:50px;
margin-bottom:20px;
}

.about p{
font-size:24px;
max-width:700px;
margin:auto;
}

footer{
padding:60px;
text-align:center;
background:#3d2b1f;
color:white;
}

footer h2{
margin-bottom:20px;
font-size:40px;
}

footer p{
font-size:20px;
margin-bottom:10px;
}

@media(max-width:900px){

.hero{
grid-template-columns:1fr;
}

.product-grid{
grid-template-columns:1fr;
}

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

.products h2,
.about h2{
font-size:38px;
}

}

.checkout-box{
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
max-width:700px;
margin:auto;
}

.checkout-box input,
.checkout-box textarea{
width:100%;
padding:15px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:10px;
font-size:17px;
font-family:inherit;
}

.checkout-box input:focus,
.checkout-box textarea:focus{
outline:none;
border-color:#8b5e3c;
box-shadow:0 0 8px rgba(139,94,60,.2);
}

.whatsapp-btn{
width:100%;
margin-top:20px;
}
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}