html {
  scroll-behavior: smooth;
}

body {
  background: #0e0e0e;
  color: #f2f2f2;
  font-family: 'Inter', sans-serif;
  margin: 0; padding: 1.5rem;
}
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
}

header {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.logo-wrapper {
  display: flex; align-items: center; gap: 1rem;
}
header img { height: 48px; }
header h1 { font-size: 1.8rem; color: #f9cb40; }
nav, .mobile-nav {
  display: flex; gap: 1.5rem;
}
nav a, .mobile-nav a {
  color: #f9cb40; text-decoration: none; font-weight: bold;
}
.menu-toggle {
  display: none; font-size: 2rem; background: none; border: none; color: #f9cb40; cursor: pointer;
}
.mobile-nav {
  display: none; flex-direction: column; margin-top: 1rem;
}
.mobile-nav.active { display: flex; }

.hero {
  text-align: center; padding: 2rem;
}
.hero h2 { font-size: 2.5rem; color: #f9cb40; margin-bottom: 1rem; }
.hero p { margin-bottom: 1.5rem; }
.cta-button {
  display: inline-block; padding: 1rem 2rem; background: #f9cb40; color: #111;
  border-radius: 6px; text-decoration: none; font-weight: bold;
}

.about {
  max-width: 700px; margin: 3rem auto; text-align: center; line-height: 1.8; color: #ddd;
}
.about h2 { font-size: 2rem; color: #f9cb40; margin-bottom: 1rem; }

.features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem;
  max-width: 900px; margin: 2rem auto;
}
.feature-card {
  background: #1a1a1a; padding: 1.5rem; border-radius: 8px; text-align: center;
}
.feature-card h3 { color: #f9cb40; margin-bottom: 0.5rem; }
.feature-card p { color: #ccc; }

.contact {
  text-align: center; margin: 3rem auto;
}
.contact p { margin-bottom: 1rem; }
.social a { color: #f9cb40; margin: 0 0.5rem; }

.product-card {
  max-width: 600px; background: #1a1a1a; padding: 2rem; margin: 2rem auto; border-radius: 10px; text-align: center;
}
.product-card img { width: 100%; border-radius: 6px; }
.product-card p { color: #ccc; margin: 1.5rem 0; }
.tag {
  display: inline-block; background: #f9cb40; color: #111; padding: 0.4rem 0.9rem; border-radius: 4px;
}

footer {
  text-align: center; margin-top: 4rem; color: #888; font-size: 0.9rem;
}

@media (max-width: 768px) {
  nav { display: none; }
  .menu-toggle { display: block; }
  .features { grid-template-columns: 1fr; }
}
