html, body{
  margin:0;
  padding:0;
  width:100%;
  overflow-x:hidden;
  background:#08101c;
}

*{
  box-sizing:border-box;
}

img{
  max-width:100%;
  display:block;
}

body{

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

font-family:Arial;
margin:0;

  background:
  linear-gradient(rgba(6,10,20,.95),rgba(6,10,20,.98)),
  url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e");

  background-size:cover;
  background-attachment:fixed;
  color:white;
}

img{
  max-width:100%;
  display:block;
}

.hero{
  position:relative;
  min-height:62vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 20px;
  background:
    linear-gradient(rgba(7,12,24,.45), rgba(7,12,24,.72)),
    url("images/hero.png") center/cover no-repeat;
  overflow:hidden;
}

.heroOverlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(212,164,65,.18), transparent 28%),
    linear-gradient(to bottom, rgba(0,0,0,.05), rgba(0,0,0,.35));
  pointer-events:none;
}

.heroContent{
  position:relative;
  z-index:2;
  max-width:900px;
  text-align:center;
}

.heroEyebrow{
  display:inline-block;
  margin-bottom:14px;
  padding:6px 12px;
  border:1px solid rgba(212,164,65,.45);
  border-radius:999px;
  color:#d4a441;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  background:rgba(0,0,0,.18);
}

.hero h1{
  margin:0 0 14px;
  font-size:clamp(42px, 7vw, 84px);
  line-height:.95;
  color:#fff;
}

.hero p{
  max-width:700px;
  margin:0 auto;
  color:rgba(255,255,255,.88);
  font-size:18px;
  line-height:1.6;
}

.heroActions{
  margin-top:28px;
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}

.btnGold,
.btnGhost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:190px;
  padding:14px 20px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  transition:.25s;
}

.btnGold{
  background:#d4a441;
  color:#0b1324;
  border:1px solid #d4a441;
}

.btnGold:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,.28);
}

.btnGhost{
  background:rgba(255,255,255,.06);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}

.btnGhost:hover{
  transform:translateY(-2px);
  border-color:rgba(212,164,65,.55);
  color:#d4a441;
}


.header{
  text-align:center;
  padding:22px 20px 10px;
}


.logo{
  width:min(260px, 68vw);
  display:block;
  margin:0 auto;
}

.logo.small{

width:160px;

}

.tagline{
  margin:8px 0 0;
  color:#d4a441;
  font-size:15px;
  letter-spacing:.18em;
  text-transform:uppercase;
}

h1,h2,h3{

font-family:'Bebas Neue', sans-serif;
letter-spacing:1px;

}

.products{
  max-width:1200px;
  margin:auto;
  padding:56px 20px 40px;
}

.products h2{
  text-align:center;
  margin:0 0 32px;
}


.grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
}

@media(max-width:1000px){

.grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.grid{
grid-template-columns:1fr;
}

}

@media(max-width:700px){

.hero{
  position:relative;
  min-height:58vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:44px 20px 60px;
  margin-top:8px;
  background:
    linear-gradient(rgba(7,12,24,.42), rgba(7,12,24,.76)),
    url("images/hero.png") center/cover no-repeat;
  overflow:hidden;
}

.heroContent{
  position:relative;
  z-index:2;
  max-width:900px;
  text-align:center;
  padding:0 10px;
}

  .hero p{
    font-size:16px;
  }

  .btnGold,
  .btnGhost{
    width:100%;
    max-width:320px;
  }

}

@media(max-width:700px){

  .header{
    padding:18px 16px 8px;
  }

  .tagline{
    font-size:13px;
    letter-spacing:.14em;
  }

  .hero{
    min-height:auto;
    padding:38px 16px 48px;
    margin-top:4px;
  }

  .hero p{
    font-size:16px;
  }

  .btnGold,
  .btnGhost{
    width:100%;
    max-width:320px;
  }

  .products{
    padding:42px 16px 28px;
  }

}

.card{

position:relative;
background:#111a33;
border-radius:12px;
overflow:hidden;
text-decoration:none;
color:white;

border:1px solid rgba(212,164,65,.35);

transition:.25s;

}

.card:hover{

transform:translateY(-6px);

border:1px solid #d4a441;

box-shadow:0 10px 30px rgba(0,0,0,.6);

}

.card img{
  width:100%;
  height:200px;
  object-fit:cover;
  transition:transform .25s;
}

.card:hover img{
  transform:scale(1.05);
}

.card{
  position:relative;
}

.badge{
  position:absolute;
  background:#d4a441;
  color:black;
  padding:4px 8px;
  font-size:12px;
  border-radius:4px;
  top:10px;
  left:10px;
  font-weight:bold;
}

.cardBody{

padding:16px;

}


.price{

color:#d4a441;
font-weight:bold;
margin-top:4px;

}


.productPage{

max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
padding:40px 20px;

}


.productImage{

width:100%;
border-radius:12px;

}


.productInfo{

display:flex;
flex-direction:column;
gap:12px;

}


select,input{

padding:10px;
border-radius:6px;
border:none;

}


button{

background:#d4a441;
border:none;
padding:14px;
border-radius:8px;
font-weight:bold;
cursor:pointer;

}

.header::after{
  content:"";
  display:block;
  width:120px;
  height:1px;
  margin:14px auto 0;
  background:linear-gradient(90deg, transparent, rgba(212,164,65,.9), transparent);
}

.siteFooter{
  margin-top:60px;
  border-top:1px solid rgba(212,164,65,.18);
  background:rgba(5,10,20,.72);
  backdrop-filter:blur(4px);
}

.footerInner{
  max-width:1200px;
  margin:0 auto;
  padding:34px 20px 24px;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:30px;
}

.footerLogo{
  width:140px;
  display:block;
  margin-bottom:12px;
}

.footerBrand p{
  margin:0;
  color:rgba(255,255,255,.72);
  line-height:1.6;
  max-width:320px;
}

.footerCol h4{
  margin:0 0 12px;
  color:#d4a441;
  font-size:15px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.footerCol{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footerCol a{
  color:rgba(255,255,255,.82);
  text-decoration:none;
  transition:.2s;
}

.footerCol a:hover{
  color:#d4a441;
}

.footerBottom{
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
  padding:16px 20px 20px;
  color:rgba(255,255,255,.58);
  font-size:14px;
}

button:hover{

opacity:.9;

}


@media(max-width:800px){

.productPage{

grid-template-columns:1fr;

}

}