.cr-product-card {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  transition: box-shadow 0.5s ease-in-out;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;

  &--highlighted {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06),
      0px 0px 2px 5px #e7ece9;
  }

  &__block-box {
    position: absolute;
    right: 10px;
    top: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex-direction: column;
  }

  &__disabled {
    opacity: 0.2;
    // filter: grayscale(100%);
  }

  &__image {
    width: 160px;
    height: 160px;
    border-radius: 10px;
    background-color: #f5f5f5;
    overflow: hidden;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  &__image-mobile {
    width: 134px;
    min-width: 134px;
    height: 134px;
  }

  &__header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
  }

  &__tag {
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
    border-radius: 12px;
    border: 1px solid #2c3b38;
    font-size: 14px;
    font-weight: 600;
  }

  &__content {
    padding: 16px;
    display: flex;
    flex: 1;
    flex-direction: column;
  }

  &--mobile-content {
    padding: 8px;
  }

  &__price {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #f39c12;
  }

  &__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #3f3d56;
    margin: 0;
    text-transform: capitalize;

    &--mobile {
      font-size: 16px;
      line-height: 23px;
    }
  }

  &__description {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #7c808d;
  }

  &__cohort{
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  &__actions {
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
  }

  &__expand-action {
    display: flex;
    flex-direction: column;
  }

  &__mobile-cta {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
  }

  &--has-actions {
    cursor: pointer;
  }
  &__outside-actions {
    position: relative;
    z-index: 2;
  }
}
