*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#081820;
  color:#e6f3f8;
}

/* HEADER */
header{
  background:#0f2733;
  padding:20px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

header h1{
  margin:0;
  font-size:1.4rem;
  color:#d4af37;
}

nav a{
  color:#d4af37;
  text-decoration:none;
  margin-left:20px;
  font-weight:bold;
}

/* CONTAINER */
.container{
  max-width:1100px;
  margin:0 auto;
  padding:80px 40px;
}

/* BOXEN */
.box{
  background:#142f3d;
  padding:40px;
  border-radius:20px;
  margin-bottom:40px;
}

/* BUTTON */
.btn{
  background:#d4af37;
  color:#081820;
  padding:14px 26px;
  border-radius:30px;
  font-weight:bold;
  border:none;
  cursor:pointer;
}

.btn:hover{
  opacity:0.85;
}

/* FORM */
input{
  width:100%;
  padding:14px;
  margin-bottom:16px;
  border-radius:10px;
  border:none;
}

.row{
  display:flex;
  gap:15px;
}

/* FOOTER */
footer{
  text-align:center;
  padding:30px;
  font-size:0.9rem;
  color:#9bb7c4;
  background:#081820;
}
/* HERO */
.hero{
  min-height:80vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:40px;
}

.hero h2{
  font-size:2.6rem;
  margin-bottom:20px;
}

.hero p{
  font-size:1.2rem;
  color:#9bb7c4;
  margin-bottom:40px;
}
/* SHOP */
.products{
  padding:80px 40px;
}

.products h2{
  text-align:center;
  margin-bottom:60px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:40px;
  max-width:1100px;
  margin:0 auto;
}

.product{
  background:#142f3d;
  border-radius:20px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.product img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.product h3{
  padding:20px 20px 10px;
  margin:0;
  color:#d4af37;
}

.product p{
  padding:0 20px 20px;
  color:#9bb7c4;
  flex-grow:1;
}

.product .price{
  padding:0 20px 20px;
  font-weight:bold;
}

.product .btn{
  margin:0 20px 30px;
  text-align:center;
}
