
/**************************************************************************/

.home-categories {
  padding: 60px 20px;
  /* background: #fff; */
  margin-top: -200px;
}

.home-categories-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.home-category-card {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: #1c2534;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.1);
  text-decoration: none;
  color: #1c2534;
}

.home-category-img {
  /* height: 190px; */
  background: #f7f7f7;
}

.home-category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-category-content {
  padding: 24px 28px 28px;
}

.home-category-content h3 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  color: #1c2534;
  margin: 0 0 24px;
}

.home-category-content span {
  font-size: 17px;
  font-weight: 500;
  color: #1c2534;
}

.home-category-card:hover span {
  color: #77c0a0;
}

@media (max-width: 900px) {
  .home-categories-grid {
    grid-template-columns: 1fr;
  }

  .home-category-content h3 {
    font-size: 24px;
  }
}

.ergonomic-benefits {
  padding: 80px 20px;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 34px;
  color: #1c2534;
}

.section-header p {
  color: #777;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.benefit-card {
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
}

.benefit-img {
  /* height: 180px; */
  max-width: 100%;
  background-size: cover;
  background-position: center;
}

.benefit-content {
  padding: 20px;
  text-align: center;
}

.benefit-content h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.benefit-content p {
  font-size: 14px;
  color: #666;
}

/* .benefit-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
} */

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}