.product-grid {
  padding: 4rem 0;
}

.product-grid__header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.product-grid__kicker {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.product-grid__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: 0.5rem 0;
}

.product-grid__subtitle {
  font-family: 'LT Superior', 'sans-serif';
  max-width: 600px;
  margin: 0 auto;
}

.product-grid__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-items: center;
}

.product-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  max-width: 320px;
  text-decoration: none;
}

.product-card__image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.product-card__info {
  margin-top: 0.5rem;
}

.product-card__name {
  font-weight: var(--text-regular);
  font-size: 1rem;
  margin-bottom: 0;
}

.product-card__variant {
  font-size: 0.9rem;
  margin-top: 0px;
}

.product-card__price {
  font-weight: var(--text-bold);
  font-size: 1rem;
  color: var(--color-text-primary);
  margin-top: 0.25rem;
} 

.product-grid__footer {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.btn.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-surface-subtle);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .product-grid__items {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}
