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

:root{
    --gold:#c89b3c;
    --dark:#140f09;
    --brown:#2d1f12;
    --cream:#f7f2ea;
    --light:#fffdf9;
    --shadow:0 15px 40px rgba(0,0,0,0.08);
}

body{
    background:var(--light);
    font-family:'Battambang',sans-serif;
    color:#222;
    overflow-x:hidden;
}

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:20px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(255,255,255,0.88);
    backdrop-filter:blur(14px);
    z-index:999;
    box-shadow:0 5px 25px rgba(0,0,0,0.05);
}

.logo{
    font-size:28px;
    font-weight:700;
    color:var(--brown);
}

.menu{
    display:flex;
    gap:30px;
}

.menu a{
    text-decoration:none;
    color:#333;
    font-weight:600;
    transition:0.3s;
}

.menu a:hover{
    color:var(--gold);
}

.hero{
    min-height:100vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    padding:120px 7%;
    gap:60px;
    background:linear-gradient(to right,#1a120a,#3d2a17);
    color:white;
}

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

.hero-content p{
    font-size:18px;
    line-height:1.9;
    color:#ddd;
    margin-bottom:35px;
}

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

.main-btn{
    display:inline-block;
    background:linear-gradient(45deg,#c89b3c,#f0c76a);
    color:white;
    text-decoration:none;
    padding:15px 34px;
    border-radius:50px;
    font-weight:700;
    transition:0.4s;
}

.main-btn:hover{
    transform:translateY(-5px);
}

section{
    padding:100px 7%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    color:var(--brown);
}

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

.product-card{
    background:white;
    border-radius:28px;
    overflow:hidden;
    transition:0.5s;
    box-shadow:var(--shadow);
}

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

.product-image{
    height:320px;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.product-card:hover img{
    transform:scale(1.1);
}

.product-info{
    padding:28px;
}

.product-info h3{
    font-size:24px;
    color:var(--brown);
    margin-bottom:12px;
}

.product-price{
    color:var(--gold);
    font-size:22px;
    font-weight:700;
    margin-bottom:18px;
}

footer{
    background:#120d08;
    color:white;
    padding:80px 7%;
}

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

.footer-grid h3{
    color:var(--gold);
    margin-bottom:20px;
}

.footer-grid a{
    display:block;
    color:#ddd;
    margin-bottom:10px;
    text-decoration:none;
}

@media(max-width:991px){

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

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

.menu{
    display:none;
}

}
