.velmora-combo-grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.velmora-combo-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(45, 80, 22, 0.10);
}

.velmora-combo-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.velmora-combo-card__content {
  padding: 22px;
}

.velmora-combo-card__content h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.velmora-combo-card__content ul {
  margin: 0 0 18px 18px;
  padding: 0;
}

.velmora-combo-card__pricing {
  margin-bottom: 18px;
}

.velmora-combo-card__pricing p {
  margin: 0 0 6px;
}

.velmora-combo-ajax-button,
[class*="combo-"] {
  position: relative;
}

.velmora-combo-ajax-button.is-loading,
[class*="combo-"].is-loading {
  opacity: .88;
  pointer-events: none;
}

.velmora-combo-ajax-button.is-loading::after,
[class*="combo-"].is-loading::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: rgba(255,255,255,1);
  border-radius: 50%;
  animation: velmora-combo-spin .8s linear infinite;
  vertical-align: middle;
}

.velmora-combo-ajax-button.is-added,
[class*="combo-"].is-added {
  background: #6a8d47 !important;
}

.velmora-combo-ajax-button.is-error,
[class*="combo-"].is-error {
  background: #9f3b33 !important;
}

@keyframes velmora-combo-spin {
  to {
    transform: rotate(360deg);
  }
}
