body {
  font-family: system-ui, sans-serif;
  margin: 0;
  background: #fafafa;
}

.top-bar {
  position: sticky;
  top: 0;
  background: white;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  z-index: 100;
}

.logo {
  font-weight: 700;
}

.wa-btn, .cta, .wa-cta {
  background: #25D366;
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}

.hero {
  padding: 24px;
  text-align: center;
}

.trust {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 12px;
}

.categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
}

.cat {
  background: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  color: black;
}

.products {
  padding: 12px;
}

.product-card {
  background: white;
  padding: 12px;
  margin-bottom: 16px;
  border-radius: 10px;
}

.product-card img {
  width: 100%;
  border-radius: 8px;
}

.steps {
  padding: 20px;
}

.sticky-wa {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: white;
  padding: 10px;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 36px;          /* perfect for mobile */
  width: auto;
}

