@charset "UTF-8";
/* English products page (/en/products/) — overrides on top of products.css */

/* Section 1: fixed 3-column icon grid (design: 3 x 3) */
.p-products01-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
}

@media screen and (max-width: 767px) {
  .p-products01-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Section 2: checkerboard background tint across the 3-column card grid */
.p-products02-item:nth-child(odd) .p-products02-itemBox {
  background: hsl(146deg, 76%, 18%, 5%);
}

.p-products02-item:nth-child(even) .p-products02-itemBox {
  background: hsl(146deg, 76%, 18%, 8%);
}
