.vm-landing-products {
  --vm-lp-cols-desktop: 4;
  --vm-lp-cols-tablet: 2;
  --vm-lp-cols-mobile: 1;

  display: grid;
  grid-template-columns: repeat(var(--vm-lp-cols-desktop), minmax(0, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.vm-landing-products--empty,
.vm-landing-products--error {
  display: block;
  padding: 16px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fafafa;
}

.vm-landing-products--error {
  border-color: #e0b4b4;
  background: #fff5f5;
}

.vm-landing-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: 18px;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  background: #fff;
  box-sizing: border-box;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}

.vm-landing-card:hover {
  border-color: #d7d7d7;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.vm-landing-card__image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  margin-bottom: 16px;
  text-decoration: none;
}

.vm-landing-card__image-link img,
.vm-landing-card__image {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  display: block;
}

.vm-landing-card__no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #f4f4f4;
  color: #777;
  font-size: 14px;
}

.vm-landing-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
}

.vm-landing-card__sku {
  margin-bottom: 6px;
  color: #777;
  font-size: 13px;
  line-height: 1.3;
}

.vm-landing-card__title {
  display: block;
  color: #222;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.vm-landing-card__title:hover,
.vm-landing-card__title:focus {
  color: #000;
  text-decoration: underline;
}

.vm-landing-card__price {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
}

.vm-landing-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 10px 16px;
  border-radius: 999px;
  background: #222;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.vm-landing-card__title + .vm-landing-card__button,
.vm-landing-card__price + .vm-landing-card__button {
  margin-top: 16px;
}

.vm-landing-card__button:hover,
.vm-landing-card__button:focus {
  background: #000;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .vm-landing-products {
    grid-template-columns: repeat(var(--vm-lp-cols-tablet), minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .vm-landing-products {
    grid-template-columns: repeat(var(--vm-lp-cols-mobile), minmax(0, 1fr));
    gap: 18px;
  }

  .vm-landing-card__image-link {
    height: 200px;
  }
}
