:root{
  --bg:#050607;
  --panel: rgba(20,20,20,.72);
  --panel2: rgba(10,10,10,.86);
  --gold:#caa33a;
  --gold2:#f0d27a;
  --text:#e8e8e8;
  --muted:#bcbcbc;
  --line: rgba(202,163,58,.55);
  --shadow: 0 28px 70px rgba(0,0,0,.55);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: #000 url('../img/banner6.jpg') center/cover fixed no-repeat;
  color:var(--text);
}

a{color:inherit; text-decoration:none}

/* reserve for bottom nav */
.page{padding-bottom:96px}

/* TOPBAR */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  display:grid;
  grid-template-columns:1fr 1fr;
  background:#000;
  border-top:2px solid var(--gold);
  border-bottom:2px solid var(--gold);
}
.topbar__item{
  padding:14px 12px;
  text-align:center;
  font-weight:800;
  letter-spacing:.08em;
  color:#fff;
  text-transform:uppercase;
}
.topbar__item:hover{background:rgba(255,255,255,.04)}

/* MENUBAR */
.menubar{background:rgba(0,0,0,.82); border-bottom:1px solid rgba(255,255,255,.12)}
.menubar__inner{
  max-width:1180px;
  margin:0 auto;
  padding:10px 16px;
  display:flex;
  gap:14px;
  align-items:center;
}
.brand img{height:34px; width:auto; display:block; filter: drop-shadow(0 10px 20px rgba(0,0,0,.45));}
.menu{display:flex; flex-wrap:wrap; gap:18px; align-items:center; margin-left:12px}
.menu__link{font-size:12px; color:var(--gold); opacity:.95; text-transform:uppercase; letter-spacing:.05em}
.menu__link:hover{opacity:1; color:var(--gold2)}

.breadcrumbs{border-top:1px solid rgba(255,255,255,.10); background:rgba(0,0,0,.86)}
.breadcrumbs__inner{max-width:1180px; margin:0 auto; padding:10px 16px; font-size:11px; color:#d7d7d7; white-space:nowrap; overflow:auto}
.breadcrumbs .sep{opacity:.55; margin:0 6px}

/* HERO */
.hero{padding:26px 0 18px}
.hero__wrap{max-width:1180px; margin:0 auto; padding:0 16px}
.hero__card{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:18px;
  padding:18px;
  border-radius:22px;
  background: linear-gradient(180deg, rgba(10,10,10,.62), rgba(10,10,10,.78));
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}

/* Gallery */
.gallery{min-width:0}
.thumbs{
  display:flex;
  flex-direction:column;
  gap:10px;
  position:absolute;
  transform: translateY(6px);
}
.thumb{
  width:64px;
  height:64px;
  border-radius:10px;
  border:2px solid rgba(255,255,255,.12);
  background:#111;
  overflow:hidden;
  cursor:pointer;
  padding:0;
}
.thumb img{width:100%; height:100%; object-fit:cover; display:block; filter:saturate(1.1) contrast(1.05)}
.thumb.is-active{border-color:var(--gold)}

.mainshot{
  margin:0;
  margin-left:84px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:#0b0b0b;
}
.mainshot img{width:100%; height:420px; object-fit:cover; display:block}

.note{
  margin-top:10px;
  margin-left:84px;
  padding:10px 12px;
  font-size:12px;
  color:#0b0b0b;
  background:rgba(255,255,255,.92);
  border-radius:12px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.note .dot{width:8px; height:8px; border-radius:999px; background:#0b0b0b; margin-top:4px}

/* Info */
.info{
  padding:6px 6px 8px;
  min-width:0;
}
.info__head h1{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.25;
  letter-spacing:.02em;
  color:var(--gold);
  text-transform:uppercase;
}
.price{display:flex; gap:10px; align-items:baseline; margin-bottom:10px}
.price__now{font-weight:800; font-size:18px; color:#fff}
.price__old{font-weight:600; font-size:12px; color:#9b9b9b; text-decoration:line-through}

.desc{margin:0 0 14px; font-size:13px; color:#eaeaea; line-height:1.55}

.cta{
  display:grid;
  place-items:center;
  padding:14px 14px;
  border-radius:14px;
  background: radial-gradient(80% 120% at 50% 0%, rgba(255,90,0,.35), rgba(0,0,0,.0)),
              linear-gradient(180deg, rgba(220,40,0,.0), rgba(0,0,0,.0));
  border:3px solid rgba(202,163,58,.85);
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
}
.cta__big{font-weight:900; font-size:26px; color:#fff; letter-spacing:.04em}
.cta__small{font-weight:900; font-size:13px; color:var(--gold2); letter-spacing:.12em}
.cta:hover{transform: translateY(-1px)}

.meta{margin-top:14px}
.meta__label{font-size:11px; color:var(--gold); letter-spacing:.12em; text-transform:uppercase; margin-bottom:8px}
.dropdown__btn{
  width:100%;
  border-radius:10px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.25);
  color:#dedede;
  font-size:12px;
  text-align:left;
}
.dropdown__btn .chev{float:right; opacity:.8}

.calendar{margin-top:12px}
.calendar__title{font-size:11px; color:var(--gold); letter-spacing:.10em; text-transform:uppercase; margin-bottom:8px}
.calendar__grid{display:flex; gap:8px; align-items:center}
.day{
  width:30px; height:30px;
  border-radius:999px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  font-size:11px;
}
.day.is-today{background:rgba(255,255,255,.14)}
.day.is-accent{background:rgba(202,163,58,.25); border-color:rgba(202,163,58,.55)}

.seo{margin-top:14px; text-align:center; font-size:11px; color:#a9a9a9; letter-spacing:.12em}

/* FAQ */
.faq{padding:26px 0 34px}
.faq__wrap{max-width:1180px; margin:0 auto; padding:0 16px}
.faq__card{
  max-width:860px;
  margin:0 auto;
  padding:22px;
  border-radius:22px;
  background: rgba(10,10,10,.66);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.faq__card h2{
  margin:0 0 14px;
  text-align:center;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.06em;
}

.acc{
  border-radius:14px;
  background: rgba(0,0,0,.65);
  border:1px solid rgba(202,163,58,.40);
  margin:12px 0;
  overflow:hidden;
}
.acc summary{
  cursor:pointer;
  list-style:none;
  padding:14px 16px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:var(--gold);
  font-weight:700;
}
.acc summary::-webkit-details-marker{display:none}
.acc .plus{
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius:999px;
  border:1px solid rgba(202,163,58,.55);
  color:var(--gold2);
  flex:0 0 auto;
}
.acc[open] .plus{transform: rotate(45deg)}
.acc__body{padding:0 16px 14px; color:#e6e6e6; font-size:13px; line-height:1.55}
.acc__body a{color:var(--gold2); text-decoration:underline}

/* Footer */
.footer{padding:22px 0 40px; background:rgba(0,0,0,.86); border-top:1px solid rgba(255,255,255,.10)}
.footer__inner{max-width:1180px; margin:0 auto; padding:0 16px}
.footer__cols{display:grid; grid-template-columns:1fr 1fr; gap:18px}
.footer__title{font-weight:800; color:#fff; margin-bottom:6px}
.footer__text{margin:0; color:#bdbdbd; font-size:13px}
.footer__link{display:block; color:var(--gold2); font-size:13px; padding:4px 0}
.footer__link:hover{color:#fff}

/* Bottom nav */
.bottomnav{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:60;
  height:78px;
  background: linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.96));
  border-top:1px solid rgba(255,255,255,.10);
  display:grid;
  grid-template-columns:1fr 1fr 1.3fr 1fr 1fr;
  align-items:end;
  padding:10px 10px 12px;
}
.bn{
  display:grid;
  gap:6px;
  place-items:center;
  color:#d9d9d9;
  opacity:.92;
  padding-bottom:4px;
}
.bn:hover{opacity:1}
.bn__ico{font-size:18px; filter: drop-shadow(0 10px 16px rgba(0,0,0,.55))}
.bn__txt{font-size:10px; font-weight:800; letter-spacing:.14em}

.bn--center{
  padding-bottom:0;
}
.bn__center{
  width:84px;
  height:84px;
  margin-bottom:-20px;
  border-radius:999px;
  display:grid;
  place-items:center;
  gap:4px;
  background: radial-gradient(80% 80% at 50% 20%, rgba(202,163,58,.45), rgba(0,0,0,.90));
  border:2px solid rgba(202,163,58,.65);
  box-shadow: 0 22px 60px rgba(0,0,0,.65);
}
.bn__center .bn__ico{font-size:18px}
.bn__center .bn__txt{color:#fff; letter-spacing:.08em}

/* Floating rewards */
.rewards{
  position:fixed;
  left:12px;
  bottom:92px;
  z-index:65;
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(78, 110, 255, .92);
  color:#fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  font-weight:800;
  font-size:12px;
}
.rewards .gift{font-size:14px}

/* responsive */
@media (max-width: 980px){
  .hero__card{grid-template-columns:1fr;}
  .thumbs{position:static; flex-direction:row; transform:none; margin-bottom:10px}
  .mainshot{margin-left:0}
  .note{margin-left:0}
  .mainshot img{height:360px}
  .menu{display:none}
}

@media (max-width: 560px){
  .topbar__item{padding:12px 10px; font-size:14px}
  .brand img{height:30px}
  .breadcrumbs__inner{font-size:10px}
  .hero__card{padding:14px}
  .mainshot img{height:280px}
  .cta__big{font-size:22px}
  .bn__center{width:76px; height:76px}
}
