*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

body{

    background:#f8f6f1;
    color:#222;
    line-height:1.6;

}

a{

    text-decoration:none;
    color:inherit;

}

img{

    width:100%;
    display:block;

}

/* HEADER */

header{

    background:white;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 8%;

    position:sticky;

    top:0;

    z-index:1000;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

}

.logo{

    font-size:30px;

    font-weight:bold;

    color:#b88b1b;

}

nav{

    display:flex;

    gap:35px;

}

nav a{

    font-weight:bold;

    transition:.3s;

}

nav a:hover{

    color:#b88b1b;

}

/* HERO */

.hero{

    height:650px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    background:linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)),
    url("../images/hero.jpg") center/cover;

    color:white;

}

.hero-content{

    width:90%;
    max-width:700px;

}

.hero h1{

    font-size:60px;

    margin-bottom:20px;

}

.hero p{

    font-size:20px;

    margin-bottom:35px;

}

.btn{

    display:inline-block;

    background:#c9a227;

    color:white;

    padding:16px 40px;

    border-radius:40px;

    font-size:18px;

    transition:.3s;

}

.btn:hover{

    background:#a47f14;

}

/* FEATURES */

.features{

    width:90%;

    max-width:1200px;

    margin:70px auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.feature{

    background:white;

    text-align:center;

    padding:40px 25px;

    border-radius:12px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.feature{

    font-size:45px;

}

.feature h3{

    margin:15px 0;

}

/* SHOP */

#shop{

    width:90%;

    max-width:1300px;

    margin:auto;

    padding:60px 0;

}

#shop h2{

    text-align:center;

    font-size:40px;

    margin-bottom:50px;

    color:#b88b1b;

}

.products{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.product{

    background:white;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.product:hover{

    transform:translateY(-8px);

}

.product img{

    height:250px;

    object-fit:cover;

}

.product h3{

    padding:20px;

}

.price{

    color:#b88b1b;

    font-size:24px;

    font-weight:bold;

    padding:0 20px 20px;

}

.product button{

    width:calc(100% - 40px);

    margin:0 20px 20px;

    padding:14px;

    border:none;

    background:#b88b1b;

    color:white;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;

}

.product button:hover{

    background:#8b6712;

}

/* REVIEWS */

.reviews{

    background:white;

    padding:80px 10%;

}

.reviews h2{

    text-align:center;

    margin-bottom:50px;

    color:#b88b1b;

    font-size:40px;

}

.review{

    max-width:700px;

    margin:30px auto;

    text-align:center;

    background:#f8f6f1;

    padding:30px;

    border-radius:12px;

    box-shadow:0 3px 10px rgba(0,0,0,.08);

}

.review strong{

    display:block;

    margin-top:15px;

}

/* NEWSLETTER */

.newsletter{

    text-align:center;

    padding:80px 20px;

}

.newsletter h2{

    color:#b88b1b;

    font-size:40px;

    margin-bottom:20px;

}

.newsletter input{

    width:350px;

    max-width:90%;

    padding:15px;

    border:1px solid #ccc;

    border-radius:40px;

    margin:20px 0;

}

.newsletter button{

    padding:15px 35px;

    border:none;

    background:#b88b1b;

    color:white;

    border-radius:40px;

    cursor:pointer;

}

/* FOOTER */

footer{

    background:#222;

    color:white;

    padding:60px 10%;

    text-align:center;

}

footer h3{

    color:#c9a227;

    margin-bottom:10px;

}

footer div:nth-child(2){

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:25px;

    margin:30px 0;

}

footer a{

    color:#ddd;

}

footer a:hover{

    color:#c9a227;

}

/* MOBILE */

@media(max-width:900px){

header{

    flex-direction:column;

    gap:20px;

}

nav{

    flex-wrap:wrap;

    justify-content:center;

}

.hero{

    height:500px;

}

.hero h1{

    font-size:42px;

}

.features{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.hero h1{

    font-size:34px;

}

.hero p{

    font-size:16px;

}

.features{

    grid-template-columns:1fr;

}

.products{

    grid-template-columns:1fr;

}

footer div:nth-child(2){

    flex-direction:column;

}

}