* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* STICKY BAR */
.sticky-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background: #111;
  padding: 10px;
  z-index: 1000;
}

.sticky-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* HERO */
.hero {
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
}

.subheadline {
  color: #ccc;
  margin: 15px 0;
}

.hero-image {
  margin-top: 30px;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
}

.trust-strip {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}

/* SECTIONS */
.section {
  padding: 60px 0;
}

.section.dark {
  background: #111;
}

.section h2 {
  margin-bottom: 20px;
}

.section ul {
  margin-top: 20px;
}

.section li {
  margin-bottom: 10px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 20px;
  margin: 5px;
  text-decoration: none;
  font-weight: bold;
}

.primary {
  background: #ff3b3b;
  color: #fff;
}

.secondary {
  background: #444;
  color: #fff;
}

.outline {
  border: 2px solid #fff;
  color: #fff;
}

/* STEPS */
.steps {
  display: grid;
  gap: 20px;
}

.step h3 {
  margin-bottom: 5px;
}

/* PRODUCTS */
.product-grid {
  display: grid;
  gap: 20px;
}

.product img {
  width: 100%;
}

.product p {
  margin-top: 10px;
  color: #ccc;
}

/* FORM */
.wholesale-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.wholesale-form input,
.wholesale-form select {
  padding: 12px;
  border: none;
}

.approval {
  margin-top: 10px;
  font-size: 0.9rem;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}