.products {
  width: 100%;                 /* full page width */
  padding: 80px 20px;
  text-align: center;
  position: relative;           /* so ::after is relative to this */
}

.products::after {
  content: "";
  position: absolute;
  top: 55%;                     /* half the section height */
  left: 0;
  width: 100vw;                 /* span full viewport width */
  height: 1px;                  /* line thickness */
  background: limegreen;         /* green line */
  transform: translateY(-50%);  /* center exactly */
  z-index: 0;                   /* behind content */
}

.products-inner {
  max-width: 1100px;            /* center content */
  margin: 0 auto;
  position: relative;
  z-index: 1;                   /* ensures content stays above the line */
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  align-items: center;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.product-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background: #fff;
  padding: 8px;
}

.product-card p {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  color: #333;
}

.product-card p:first-of-type {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
