.goto-list-products {

  .hero_banner_style_marshbello {
    background-color: #cbcbcb;

    .product-card-title {
      color: #161616;
    }
  }

  .hero_banner_style_m1_collection {
    background-color: #B5C1D2;

    .product-card-title {
      color: #161616;
    }
  }


  .goto-list-products__container {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;

    .goto-list-products__item {
      flex: 1 1 calc(50% - 2rem);
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      padding: 1rem;
      border-radius: 0.5rem;

      @media (max-width: 640px) {
        padding: 5px;
      }

      // @media (min-width: 1024px) {
      //   flex: 1 1 calc(33.333% - 2rem);
      // }


      .product-card-title {
        font-family: Tenor Sans;
        font-weight: 400;
        font-size: 30px;
        line-height: 100%;
        text-align: center;
        text-transform: unset;

        @media screen and (max-width: 640px) {
          font-size: 16px;
        }
      }

      img {
        border-radius: 8px;
      }

      .btn-goto {
          background-color: #fff;
          color: #000;
          border-radius: 0.5rem;
          text-decoration: none;
          display: inline-block;
          font-size: 14px;
          font-weight: 800;
          font-family: "Urbanist";
          text-align: center;
          box-shadow: 0px 4px 4px 0px #00000040;


          @media screen and (min-width: 768px) {
              font-size: 30px;
          }

          &:hover {
              background-color: #fff;
              color: #333;
              text-decoration: none;
          }
      }

      .product-card--button {
        background: #121212;
        color: #ffffff;

        .single-add-to-cart-button--text {
          font-size: 25px;

          @media screen and (max-width: 640px) {
            font-size: 12px;
          }
        }

        @media screen and (max-width: 640px) {
          height: 22px;
        }
      }

      .badge {
        left: auto;
        right: 16px;
        background: transparent;
        border: 2px solid #ffffff;
        height: 70px;
        width: 70px;
        border-radius: 50px;
        line-height: 1;
        font-size: 24px;

        @media screen and (max-width: 640px) {
          height: 25px;
          width: 25px;
          font-size: 8px;
          padding: 0 3px;
          right: 8px;
        }
      }

    }
  }
}