*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#0a0a0a;
  color:#fff;
  font-family:Inter,sans-serif;
}

header{
  position:fixed;
  width:100%;
  top:0;
  padding:20px 60px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(10px);
  z-index:100;
}

.logo{
  font-size:34px;
  font-family:"Cormorant Garamond",serif;
  letter-spacing:6px;
  color:#D4AF37;
}

nav a{
  color:white;
  text-decoration:none;
  margin:0 18px;
}

.hero{
  height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  padding:0 80px;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.hero-text{
  position:relative;
  max-width:600px;
  z-index:2;
}

.hero span{
  color:#D4AF37;
  letter-spacing:4px;
}

.hero h1{
  font-family:"Cormorant Garamond",serif;
  font-size:78px;
  margin:18px 0;
}

.hero p{
  color:#ddd;
  line-height:1.8;
}

.buttons{
  margin-top:35px;
}

.buttons a{
  display:inline-block;
  padding:14px 28px;
  border-radius:40px;
  text-decoration:none;
  margin-right:15px;
}

.gold{
  background:#D4AF37;
  color:#000;
}

.dark{
  border:1px solid white;
  color:white;
}

.categories{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  padding:70px;
}

.card{
  position:relative;
  overflow:hidden;
  border-radius:20px;
}

.card img{
  width:100%;
  height:380px;
  object-fit:cover;
  transition:.4s;
}

.card:hover img{
  transform:scale(1.08);
}

.card h2{
  position:absolute;
  left:25px;
  bottom:20px;
  font-size:36px;
  font-family:"Cormorant Garamond",serif;
}

.products{
  padding:20px 70px 90px;
}

.products h2{
  font-size:40px;
  margin-bottom:30px;
  font-family:"Cormorant Garamond",serif;
}

.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.product img{
  width:100%;
  border-radius:16px;
}

.product h3{
  margin-top:14px;
}

.product p{
  color:#D4AF37;
  margin-top:6px;
}

footer{
  text-align:center;
  padding:70px 20px;
  border-top:1px solid #222;
}

footer h2{
  font-family:"Cormorant Garamond",serif;
  font-size:42px;
  letter-spacing:5px;
}

.lightbox{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.9);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.lightbox img{
  max-width:85%;
  max-height:85%;
  border-radius:15px;
}