/* Basic styling for membership option catalog */
.mhf-option-catalog {
  margin-top: 2rem;
}
.mhf-option-catalog__title {
  margin-bottom: .25rem;
}
.mhf-option-catalog__hint {
  color: #666;
  margin-bottom: 1rem;
}
.mhf-option-section {
  margin-bottom: 1.5rem;
}
.mhf-option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.mhf-option-card {
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .15s ease, border-color .15s ease;
}
.mhf-option-card.is-selected {
  border-color: #2c7be5;
  box-shadow: 0 0 0 2px rgba(44,123,229,.15);
}
.mhf-option-card__image img {
  width: 100%;
  height: auto;
  display: block;
}
.mhf-option-card__body {
  padding: 10px 12px 12px;
}
.mhf-option-card__name {
  font-weight: 600;
  margin-bottom: 4px;
}
.mhf-option-card__price {
  color: #444;
  margin-bottom: 8px;
}
.mhf-option-card__select.button {
  width: 100%;
}
.mhf-select-wrap label {
  font-weight: 600;
}
.product_meta {
  display: none;
}
