:root {
  --bg: #121212;
  --surface: #1c1c1c;
  --accent: #d4af37;
  --text: #f2f2f2;
  --muted: #a8a8a8;
  --danger: #e05252;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 1px solid #2a2a2a;
  position: sticky;
  top: 0;
  background: rgba(18,18,18,0.95);
  backdrop-filter: blur(6px);
  z-index: 10;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
}
nav a {
  margin-left: 28px;
  font-size: 14px;
  color: var(--muted);
  transition: color .15s;
}
nav a:hover { color: var(--accent); }
.hero {
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(180deg, #1a1a1a, #121212);
  border-bottom: 1px solid #2a2a2a;
}
.hero h1 {
  font-size: 42px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.hero p { color: var(--muted); font-size: 16px; }
.hero .badge {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 14px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
}
main { max-width: 1100px; margin: 0 auto; padding: 50px 24px; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}
.card {
  background: var(--surface);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .15s, border-color .15s;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); }
.thumb {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #555;
  letter-spacing: 1px;
}
.card-body { padding: 16px; }
.card-body h3 { font-size: 15px; margin-bottom: 6px; }
.price { color: var(--accent); font-weight: 700; margin-bottom: 12px; }
button, .btn {
  display: inline-block;
  width: 100%;
  padding: 10px 14px;
  background: var(--accent);
  color: #121212;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: .5px;
  text-align: center;
}
button:hover, .btn:hover { opacity: .88; }
.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.section-title {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
form.panel {
  max-width: 380px;
  margin: 40px auto;
  background: var(--surface);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 32px;
}
form.panel h2 { margin-bottom: 22px; font-size: 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.field input {
  width: 100%;
  padding: 10px 12px;
  background: #101010;
  border: 1px solid #333;
  border-radius: 6px;
  color: var(--text);
  font-size: 14px;
}
.field input:focus { outline: none; border-color: var(--accent); }
.msg { font-size: 13px; margin-top: 14px; text-align: center; min-height: 18px; }
.msg.error { color: var(--danger); }
.msg.ok { color: #6fd68a; }
table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
th, td { text-align: left; padding: 12px 10px; border-bottom: 1px solid #2a2a2a; font-size: 14px; }
th { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.qty-btn {
  width: 28px; height: 28px; padding: 0; display: inline-flex;
  align-items: center; justify-content: center; font-size: 14px;
}
.cart-summary {
  max-width: 320px; margin-left: auto; background: var(--surface);
  border: 1px solid #2a2a2a; border-radius: 10px; padding: 20px;
}
.cart-summary .row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px; color: var(--muted); }
.cart-summary .row.total { color: var(--text); font-weight: 700; font-size: 16px; border-top: 1px solid #2a2a2a; padding-top: 12px; }
footer {
  text-align: center;
  padding: 30px;
  color: #555;
  font-size: 12px;
  border-top: 1px solid #2a2a2a;
}
.pill {
  display: inline-block; background: #101010; border: 1px solid #333;
  color: var(--muted); font-size: 11px; padding: 3px 8px; border-radius: 999px;
}
