.performance-lp-product-card {
  .custom-badge {
    padding: 6px 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.2px;
    text-align: center;
    color: var(--color-basic-100, #fff);
    border-radius: 16px 16px 0 0;
    background-color: var(--electric-green, #6fcf97);
  }

  .wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 16px;

    background-color: #fff;
    box-shadow: 0 3.161px 25.284px 0 rgba(0, 0, 0, 0.12);
    overflow: hidden;

    @media (min-width: 768px) {
      margin: 0;
      padding: 0 12px 32px;
    }

    &.has-custom-badge {
      border-radius: 0 0 16px 16px;

      @media (min-width: 768px) {
        border: 1px solid var(--electric-green, #6fcf97);
      }
    }

    .inner {
      display: flex;
      align-items: center;
      gap: 24px;

      @media (min-width: 768px) {
        flex-direction: column;
        gap: 16px;
      }

      .product-image-container {
        max-width: 130px;
        margin: 0;

        @media (min-width: 768px) {
          max-width: unset;
        }

        > img {
          object-fit: contain;

          @media (min-width: 768px) {
            height: 229px;
          }
        }
      }

      .product-info {
        display: flex;
        flex-direction: column;
        gap: 8px;

        .product-title {
          margin: 0;
          font-size: 20px;
          font-weight: 700;
          line-height: 1.35;
        }

        .product-description {
          display: flex;
          align-items: center;
          gap: 4px;

          > svg {
            display: none;

            @media (min-width: 768px) {
              display: block;
            }
          }

          > p {
            margin: 0;
            font-size: 16px;
            font-weight: 400;
            line-height: 1.5;
            color: var(--Secondary-Ink, #6b778c);
          }
        }

        .price {
          display: flex;
          flex-direction: row-reverse;
          justify-content: flex-end;
          align-items: center;
          gap: 8px;
          padding: 8px 0;

          del {
            font-size: 15px;
            line-height: normal;
            color: var(--Secondary-Ink, #6b778c);
          }

          ins {
            margin: 0;
            font-size: 20px;
            font-weight: 700;
            line-height: normal;
          }

          &:has(del) {
            ins {
              color: var(--color-badge-sale);
            }
          }

          .unit-price {
            display: none;
          }
        }
      }
    }

    > button {
      width: 100%;
    }

    .promotion-text {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      text-align: center;
      color: var(--Secondary-Ink, #6b778c);
    }
  }
}
