.kits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}

.kits > * {
  margin: 0 auto;
}

.product-card {
  width: 100%;
  max-width: 400px;
  padding: 4px;
  color: #29342e;
  background: white;
  border: 2px solid #2f6235;
  border-radius: 20px;
}

.product-card_featured {
  order: -1;
  border-color: #2f6235;
}

.product-card__header {
  padding: 8px 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: white;
  text-align: center;
  letter-spacing: 0.025em;
  background: #8cb78d;
  border-radius: 14px 14px 0 0;
}

.product-card_featured .product-card__header {
  color: #37110f;
  text-transform: uppercase;
  background: white;
}

.product-card__body {
  padding: 20px 0;
  border-radius: 0 0 14px 14px;
}

.product-card_featured .product-card__body {
  color: white;
  background: #8cb78d;
}

.product-card__supply {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  text-transform: uppercase;
}

.product-card__supply small {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.product-card__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: 220px;
  margin-right: auto;
  margin-left: auto;
}

.product-card__price {
  display: flex;
  gap: 0.25em;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 20px;
  line-height: 1;
  text-align: start;
}

.product-card__price sup {
  position: relative;
  top: -0.5em;
  font-size: 45%;
  line-height: 0;
  vertical-align: baseline;
}

.product-card__price b {
  font-size: 80px;
  font-weight: 700;
}

.product-card__price span {
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.product-card__savings {
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  list-style: none;
}

.product-card__savings > li {
  display: flex;
  gap: 0.25em;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-bottom: 1px dashed rgb(0 0 0 / 50%);
}

.product-card__savings > li:first-child {
  border-top: 1px dashed rgb(0 0 0 / 50%);
}

.product-card_featured .product-card__savings > li {
  border-color: rgb(255 255 255 / 40%);
}

.product-card_featured .product-card__savings > li:first-child {
  color: #37110f;
}

.product-card__cta {
  display: flex;
  gap: 0.25em;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin: 12px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  color: #2a3c34;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(to top, #dadada 50%, #e0e0e0 51%);
  border: none;
  border-radius: 12px;
  box-shadow: 0 -4px rgb(0 0 0 / 10%) inset;
}

.product-card_featured .product-card__cta {
  color: white;
  background: linear-gradient(to top, #517b4e 50%, #517b4e 51%);
}

.product-card__cta > svg,
.product-card__savings > li > svg {
  transform: translateY(-0.1em);
}

.product-card__payment-methods {
  display: block;
  width: 100%;
  max-width: 192px;
  height: auto;
  margin: 0 auto;
}

.product-card__total {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
}

.product-card__total s {
  text-decoration-thickness: 2px;
  text-decoration-color: red;
}

.product-card__shipping {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
}

.product-card__shipping mark {
  color: red;
  background: none;
}

.product-card_featured .product-card__shipping mark {
  color: #37110f;
}

@media screen and (min-width: 960px) {
  .kits {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-card_featured {
    order: initial;
  }
}
