/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
}

/* HERO */
.hero {
  text-align: center;
  padding: 60px 20px;
}

.hero img {
  max-width: 180px;
  opacity: 0.9;
}

.hero h1 {
  margin-top: 20px;
  font-size: 2.4rem;
  letter-spacing: 2px;
  font-weight: 700;
}

/* PRODUCT ROWS */
.products {
  width: 100%;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 8%;
  text-decoration: none;
  color: inherit;
  gap: 40px;
  transition: background 0.3s ease;
}

/* Alternating row colors */
.product-row:nth-child(odd) {
  background: #000; /* matte black */
}

.product-row:nth-child(even) {
  background: #111; /* very dark grey */
}

/* Checkerboard alternating layout */
.product-row:nth-child(even) {
  flex-direction: row-reverse;
}

/* IMAGE */
.product-image img {
  width: 320px;
  max-width: 100%;
  border-radius: 4px;
  display: block;
  transition: transform 0.3s ease;
}

.product-row:hover .product-image img {
  transform: scale(1.03);
}

/* TEXT */
.product-text {
  max-width: 600px;
}

.product-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.product-text p {
  font-size: 1.05rem;
  opacity: 0.85;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 20px;
  background: #000;
  opacity: 0.8;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 900px) {
  .product-row {
    flex-direction: column !important;
    text-align: center;
    padding: 50px 20px;
  }

  .product-text {
    max-width: 90%;
  }

  .product-image img {
    width: 260px;
  }
}