/* Basic reset & colors */
:root {
  --bg: #000;
  --fg: #f5f5f5;
  --muted: #a0a0a0;
  --accent: #ffa500;
  --card: #111;
  --border: #333;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--fg);
}
.container {
  width: min(1100px, 92%);
  margin-inline: auto;
  padding: 2rem 0;
}

/* NAVIGATION */
.nav { display: flex; align-items: center; gap: 1rem; }
.logo {
  display: inline-block;
  height: 120px;
}

.logo img {
  height: 100%;
  display: block;
}
.menu { list-style: none; display: flex; gap: 1rem; margin-left: auto; }
.menu li a { color: var(--fg); text-decoration: none; }
#menuBtn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--fg); cursor: pointer; }

/* HERO */
.hero { text-align: center; padding: 6rem 0; }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero span { color: var(--accent); }
.hero p { margin: 1rem 0; color: var(--muted); }

/* SECTIONS */
h2 {
  margin-bottom: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
p { margin-bottom: 1rem; }
.grid { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); }
article {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 12px;
}

/* CONTACT FORM */
form label { display: block; margin-bottom: 0.8rem; }
input, textarea {
  width: 100%;
  padding: 0.6rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #0e1218;
  color: var(--fg);
  margin-top: 0.3rem;
}
button.btn, a.btn {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  background: var(--accent);
  color: #000;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
#msg { margin-top: 1rem; color: var(--accent); }

/* AUTH PAGE */
.auth { text-align: center; }
.auth-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); margin-top: 2rem; }
.auth-card { background: var(--card); border: 1px solid var(--border); padding: 2rem; border-radius: 12px; text-align: left; }
.auth-card h2 { margin-bottom: 1rem; }
.social-login { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.btn-google { background: #fff; color: #000; }
.btn-apple { background: #000; color: #fff; border: 1px solid var(--fg); }

/* FOOTER */
footer { text-align: center; padding: 2rem 0; color: var(--muted); }

/* RESPONSIVE */
@media (max-width: 800px) {
  .grid { grid-template-columns: 1fr; }
  #menuBtn { display: block; margin-left: auto; }
  .menu { display: none; flex-direction: column; background: var(--card); padding: 1rem; border-radius: 8px; position: absolute; right: 1rem; top: 4rem; }
  .menu.open { display: flex; }
}

/* STORE */
.product {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
  border-bottom: none;
}