.cr-product-public-card {
  display: flex;
  background-color: #fff;
  border-radius: 0;
  transition: box-shadow 0.5s ease-in-out;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  gap: 8px;

  &--mobile {
    gap: 8px;
    padding: 20px 12px;
  }

  &--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;
  }

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

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

  &__content {
    padding: 32px 42px;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;

    &--mobile {
      padding: 0 8px;
      gap: 8px;
    }
  }

  &--has-actions {
    cursor: pointer;
  }

  &__price {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #627B66;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-style: normal;
    margin-bottom: 16px;

    &--mobile {
      font-size: 18px;
      margin-bottom: 0;
    }
  }

  &__title {
    margin: 0;
    text-transform: capitalize;
    margin-bottom: 16px;

    &--mobile {
      font-size: 18px !important;
      line-height: 30px !important;
      margin-bottom: 8px;
    }
  }

  &__description {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.05em;
  }

  &__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
}
