* {
    box-sizing: border-box;
  }

  .frame-4368 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 50px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .card {
    background: #ffefe6;
    border: 3px dashed #ff6000;
    border-radius: 180px 180px 30px 30px;
    padding: 24px 16px;
    width: 300px;
	  height: 585px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
  }

  .card-img {
    border-radius: 320px;
    width: 250px;
    height: 250px;
    object-fit: cover;
  }

  .roundImgText {
    font-family: "Lexend-SemiBold", sans-serif;
    font-size: 24px;
    color: #2a2a2a;
    text-align: center;
  }

  .roundImgTextH2{
    text-decoration: none;
    font-weight: unset;
    font-size: unset;
    padding: unset;
    margin: unset;
  }

  .frame-27 {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .star {
    width: 24px;
    height: 24px;
  }

  ._50 {
    font-family: "Lexend-Regular", sans-serif;
    font-size: 24px;
    color: #939393;
  }

  ._200 {
    font-family: "Lexend-Medium", sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #2a2a2a;
  }

  .bottom {
   
    display: flex;
    justify-content: center;
    cursor: pointer;
	position: absolute !important;
	bottom: 15px !important;
  }

  .add-to-cart {
    background: #ff6000;
    border-radius: 50px;
    padding: 16px 36px;
    width: 200px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    color: white;
   
  }

  .add-to-cart:hover{
    background-color: #116e09;
	color: white;
  }

  /* Mobile Responsive */
  @media (max-width: 756px) {
    .frame-4368 {
      flex-direction: column;
      padding: 10px;
      align-items: center;
    }

    .card {
      width: 100%;
      max-width: 100%;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .card-img {
      width: 100%;
      height: auto;
      border-radius: 0;
      border-bottom: 1px solid #eee;
    }

    .roundImgText {
      font-size: 18px;
      margin-top: 10px;
    }

    .frame-27 img {
      width: 16px;
      height: 16px;
    }

    ._50 {
      font-size: 14px;
    }

    ._200 {
      font-size: 20px;
      margin: 10px 0;
      color: #e91e63;
    }

    .buttom {
      width: 100%;
      justify-content: center;
    }

    .add-to-cart {
      padding: 10px 20px;
      border-radius: 25px;
    }

    .add-to-cart:hover {
      background-color: #e64a19;
    }
  }