*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#faf8f5;
    color:#333;
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#ffffff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.logo{
    font-size:32px;
    font-weight:bold;
    color:#b8860b;
}

nav a{
    text-decoration:none;
    margin-left:25px;
    color:#333;
    font-weight:600;
}

.hero{
    text-align:center;
    padding:100px 20px;
    background:linear-gradient(to right,#fdf6e3,#fff);
}

.hero h1{
    font-size:50px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

button{
    padding:15px 35px;
    background:#b8860b;
    color:white;
    border:none;
    border-radius:30px;
    cursor:pointer;
    font-size:18px;
}

.featured{
    padding:70px 8%;
}

.featured h2{
    text-align:center;
    margin-bottom:40px;
}

.products{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.card{
    background:white;
    width:300px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    text-align:center;
}

.card img{
    width:100%;
}

.card h3{
    margin:15px 0 10px;
}

.card p{
    color:#b8860b;
    font-size:20px;
    margin-bottom:20px;
}

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:25px;
    margin-top:50px;
}