.product-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 24px;
  margin: 40px 0;
  width: 100%;
  max-width: 1200px;
  padding: 0;
  box-sizing: border-box;
}

.product-item {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-image-box {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 10px;
  min-height: 160px;
  max-height: 200px;
}
.product-image-box img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: block;
  transition: transform 0.2s;
}

.product-caption {
  margin-top: 10px;
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  text-align: center;
}

.product-back-btn-wrapper {
  width: 100%;
  text-align: left;
  box-sizing: border-box;
}
.product-back-btn-wrapper .product-back-btn {
  display: inline-block;
  background: #425ca6;
  color: #fff;
  padding: 10px 45px;
  border-radius: 30px;
  margin-left: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(66, 92, 166, 0.08);
}
.product-back-btn-wrapper .product-back-btn:hover {
  background: #2d4177;
}/*# sourceMappingURL=products.css.map */