.products-section {
  background:white;
  margin-top: 80px;

}

/* SAME FEEL AS distributor-container */
.products-container {
  max-width: 1440px;          /*  wider canvas */
  margin: auto;
  padding: 0 clamp(24px, 4vw, 60px);
}


/* TITLE — MATCH DISTRIBUTOR H1 */
.products-title {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  line-height: 1.2;
}


/* COLORS */
.title-black {
  color: #111;
}

.title-blue {
  color: #1e40ff;
}

/* CONTENT */
.products-wrapper {
  display: flex;
  flex-direction: column;
  gap: 90px;
}


.product-card {
  width: 100%;
}




/* =====================================
   RESPONSIVE FIX — PRODUCTS SECTION
===================================== */

/* LARGE TABLETS */
@media (max-width: 1024px) {
  .products-container {
    padding: 0 clamp(20px, 4vw, 40px);
  }

  .products-title {
    font-size: 38px;
    margin-bottom: 48px;
  }

  .products-wrapper {
    gap: 70px;
  }
}

/* TABLET */
@media (max-width: 768px) {
  .products-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .products-wrapper {
    gap: 56px;
  }
}

@media (max-width: 600px) {
   .product-card {
    height: 320px;
   }
   
  .products-container {
    padding: 0 16px;
  }

  .products-title {
    font-size: 26px;
    margin-bottom: 28px;   /*  slightly tighter */
    line-height: 1.25;
  }

  .products-wrapper {
    gap: 40px;
  }
}


/* VERY SMALL DEVICES */
@media (max-width: 380px) {
  .products-title {
    font-size: 22px;
  }
}
