.auhcp-home-products {
  margin: 2.5rem auto;
}

.auhcp-section {
  margin-bottom: 3.25rem;
}

.auhcp-title {
  margin: 0 0 1.8rem;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  color: #111827;
}

.auhcp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
}

.auhcp-card {
  position: relative;
  background: #fff;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}

.auhcp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.auhcp-image-link {
  position: relative;
  display: block;
  background: #ededed;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.auhcp-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.auhcp-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 3rem;
  font-weight: 700;
  color: #9ca3af;
}

.auhcp-badge {
  position: absolute;
  left: 0;
  top: .75rem;
  padding: .35rem .5rem;
  background: #1fb6cf;
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1;
}

.auhcp-body {
  min-height: 4.5rem;
  padding: 1rem .75rem .9rem;
  background: #fff;
}

.auhcp-name {
  display: block;
  color: #6b7280;
  font-size: .95rem;
  line-height: 1.35;
  text-decoration: none;
  text-transform: uppercase;
}

.auhcp-name:hover {
  color: #111827;
  text-decoration: none;
}

.auhcp-price {
  margin-top: .45rem;
  color: #111;
  font-size: 1.05rem;
  font-weight: 700;
}

.auhcp-all-link-wrap {
  margin-top: 1.6rem;
  text-align: right;
}

.auhcp-all-link {
  color: #6b7280;
  font-size: 1rem;
  text-decoration: none;
}

.auhcp-all-link:hover {
  color: #111827;
  text-decoration: none;
}

@media (max-width: 991px) {
  .auhcp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 575px) {
  .auhcp-title {
    font-size: 1.15rem;
  }

  .auhcp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
  }

  .auhcp-body {
    padding: .8rem .45rem;
  }

  .auhcp-name {
    font-size: .82rem;
  }

  .auhcp-all-link-wrap {
    text-align: center;
  }
}
