/* electronics.css - corrected and validated */

/* Page wrapper */
.electronics-page-wrapper {
  padding: 40px 20px;
  background: #fff;
  color: #111;
  min-height: 100vh;
  box-sizing: border-box;
}

/* Hero title */
.electronics-hero h1 {
  font-size: 36px;
  margin-bottom: 12px;
  line-height: 1.2;
}

/* Product grid */
.electronics-products .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .electronics-products .grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .electronics-hero h1 {
    font-size: 26px;
  }
}
