/*
* Old products css DONT DELETE
*/

/* .block-products .product-inner {
  border-radius: 16px;
  min-height: 570px;
  display: flex;
  flex-direction: column;
}

.block-products .product-inner .bottom-container {
  margin-top: auto;
}

 .block-products .btn-wrapper {
  width: 100%;
}

 .block-products .btn-wrapper .btn-primary {
  width: 100%;
  text-align: center;
}

.block-products .checkmark {
  position: relative;
  width: 18px;
  height: 18px;
}

.block-products .checkmark svg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-products .product-headline {
  flex: 1;
}

.product-label {
  font-family: "Figtree", sans-serif;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.6px;
  color: white;
  background: var(--color-green-dark);
  width: fit-content;
  padding: 0px 16px;
  border-radius: 100px;
  text-transform: uppercase;
}

.product-content-sub-text {
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  opacity: 40%;
} */

/*
* New products css
*/

.block-products .product-inner {
  border-radius: 16px;
  /* min-height: 570px; */
  display: flex;
  flex-direction: column;
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.03);
}

.block-products .product-inner .bottom-container {
  margin-top: auto;
}

.block-products .checkmark {
  position: relative;
  width: 16px;
  height: 16px;
}

.block-products .checkmark svg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-products .product-headline {
  flex: 1;
}

.block-products .small-cursive {
  font-size: 13px !important;
  font-style: italic !important;
}

.block-products .prose.wysiwyg.product-text.second p {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.block-products .product-price.small-custom-fontsize {
  font-size: 14px !important;
}

.product-label {
  font-family: "Figtree", sans-serif;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.6px;
  color: white;
  background: var(--color-green-dark);
  width: fit-content;
  padding: 0px 9px;
  border-radius: 100px;
  text-transform: uppercase;
}

.product-label.focus {
  background: var(--color-white);
  color: var(--color-green-dark);
}

.product-content-sub-text {
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  opacity: 40%;
}

[data-product-fetch-id].loading {
  background: white;
  width: 200px;
  height: 40px;
  border-radius: 8px;
  transition: none !important;
  animation: pulse 1.5s infinite;
}

@keyframes pulse{
  0% {
    opacity: 0.7;
  }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

@media screen and (max-width: 1024px) {
  .block-products .btn-wrapper {
    width: 100%;
  }

  .block-products .btn-wrapper .btn-primary {
    width: 100%;
    text-align: center;
  }
}



@media screen and (min-width: 768px) {
  .block-products .checkmark {
    position: relative;
    width: 24px;
    height: 24px;
  }

  .block-products .product-inner .headline {
    max-width: 300px;
  }

  .block-products .product-price-wrapper.custom-font-size {
    font-size: 40px !important;
    font-weight: 500 !important;
  }
}
