/* ---------- Base ---------- */
:root{
  --bg: #0b0c10;
  --panel: rgba(255,255,255,0.06);
  --panel-2: rgba(255,255,255,0.04);
  --text: #f3f4f6;
  --muted: rgba(243,244,246,0.72);
  --border: rgba(255,255,255,0.10);
  --shadow: 0 18px 40px rgba(0,0,0,0.45);

  --accent: #d4af37;
  --accent-2: #f5d76e;

  --radius: 18px;
  --max: 1100px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(800px 500px at 15% 10%, rgba(212,175,55,0.20), transparent 55%),
    radial-gradient(900px 600px at 85% 30%, rgba(245,215,110,0.14), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(11,12,16,0.60);
  border-bottom: 1px solid var(--border);
}

.header-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.brand{
  font-weight: 800;
  font-size: 18px;
}

.nav{
  display: flex;
  gap: 14px;
}

.nav a{
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 12px;
}

.nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

/* ---------- Hero ---------- */
.hero{
  padding: 54px 0 22px;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.hero-copy{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1{
  font-size: clamp(28px, 3.2vw, 46px);
  margin-bottom: 10px;
}

.sub{
  color: var(--muted);
  max-width: 54ch;
}

.hero-actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  font-weight: 800;
}

.btn.primary{
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: #0b0c10;
}

.btn.ghost{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}

/* ---------- Cards ---------- */
.card{
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Sections ---------- */
.section{
  padding: 40px 0;
}

.section.alt{
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.section-head h2{
  font-size: 26px;
}

.muted{ color: var(--muted); }

/* ---------- Layout ---------- */
.grid-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* ---------- Product Media (IMAGE ENABLED) ---------- */
.product{
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-media{
  width: 100%;
  height: 190px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #000;
}

.product-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Product Body ---------- */
.product-body{
  padding: 18px 18px 20px;
}

.product-body h3{
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.product-body p{
  margin: 0 0 12px;
  line-height: 1.65;
}

.price-row{
  margin: 12px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.price{
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.price-amount{
  font-size: 30px;
  font-weight: 950;
}

.price-note{
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.badge{
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
}

.list{
  padding-left: 18px;
}

.list li{
  margin: 9px 0;
  line-height: 1.7;
}

/* ---------- Footer ---------- */
.site-footer{
  padding: 18px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ---------- Responsive ---------- */
@media (max-width: 920px){
  .grid-2{ grid-template-columns: 1fr; }
}
