.order-now-section {
  .order-progress-bar-container {
    padding: 20px 0 15px;
    border-top: 2px solid #f5f5f5;
    border-bottom: 2px solid #f5f5f5;
    transition: position 0.2s ease-in-out, top 0.2s ease-in-out;
    top: 0;

    &.sticky {
      position: fixed;
      top: 60px;
      width: 100%;
      z-index: 1000;
      background-color: #fff;
    }

    .order-progress-bar {
      margin: 0 auto;
      width: 800px;
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      list-style-type: none;
      position: relative;
    }

    .order-progress-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      flex: 1;

      .order-step-icon {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background-color: #979797;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 400;
        font-size: 20px;
        z-index: 1;
      }

      .order-step-title {
        color: #979797;
        margin: 0;
        padding-top: 10px;
      }

      &::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 4px;
        background-color: #979797;
        top: 15px;
        left: -50%;
      }

      &:first-child::before {
        content: none;
      }

      &.active,
      &.completed {
        .order-step-icon {
          background-color: #fbd401;
          color: #303030;
          font-weight: 500;
        }

        .order-step-title {
          color: #303030;
        }

        &::before {
          background-color: #fbd401;
        }
      }
    }
  }

  .title-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    width: 100%;
  }

  @media (max-width: 767px) {
    .order-progress-bar-container {
      position: sticky;
      top: 0;
      background-color: #fff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

      .order-progress-bar {
        width: 100%;
        padding: 0 10px;
        max-width: 400px;
      }

      .order-progress-step {
        .order-step-icon {
          width: 16px;
          height: 16px;
          font-size: 10px;
          line-height: 10px;
        }

        .order-step-title {
          padding-top: 5px;
          font-size: 11px;
        }

        &::before {
          content: '';
          height: 1px;
          top: 8px;
        }
      }
    }
  }

  .order-now-section-content {
    display: flex;
    justify-content: space-evenly;
    padding: 60px 0;

    @media (max-width: 767px) {
      display: block;
      padding: 30px 0;

      .product-part,
      .cart-part {
        max-width: 400px;
        width: 100%;
      }
    }
  }

  .product-part {
    width: 400px;

    @media (max-width: 767px) {
      margin: 0 auto;
    }

    hr {
      height: 1px;
      width: 100%;
      background-color: #767573;
    }

    .product-part-title {
      font-weight: 500;
      font-size: 22px;
      color: #303030;
      line-height: 1.1;
      margin-top: 0;
      margin-bottom: 0;
      text-align: center;
    }

    .product-sub-heading {
      font-weight: 400;
      font-size: 14px;
      color: #767573;
      max-width: 80%;
      margin: 3px auto 20px auto;
    }

    .product-sub-parent .product-sub-heading {
      margin: 3px 0px 20px 0px;
      width: 100%;
      max-width: 100%;
      text-align: left;
    }

    .month-selector {
      display: flex;
      justify-content: space-between;
      gap: 10px;

      button {
        border: 1px solid #f5f5f5;
        border-radius: 10px;
        background-color: #f5f5f5;
        padding: 30px;
        text-align: center;
        width: 50%;
        font-size: 16px;
        line-height: 20px;
        color: #303030;
        transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;

        &.active {
          background-color: #fff;
          border: 1px solid #0a6a60;
        }

        &:disabled {
          color: #979797;
        }
      }
    }

    .menu-selector {
      .menu-options {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px 10px;

        .menu-option-card {
          width: 100%;
          height: 165px;
          background-color: transparent;
          padding: 0px;
          overflow: hidden;
          position: relative;
          cursor: pointer;
          transition: background-color 0.2s ease-in-out;
          margin-bottom: 7px;

          .svg {
            position: absolute;
            z-index: 2;
            top: 10px;
            left: 10px;
            display: none;
          }

          .detail-button {
            position: absolute;
            z-index: 2;
            top: 10px;
            right: 10px;
            padding: 4px 14px;
            font-size: 12px;
            border-radius: 16px;
            line-height: 1;
            background-color: #fff;
            color: #000;
          }

          .tooltip {
            position: absolute;
            z-index: 3;
            top: 30px;
            right: 10px;
            width: 85%;
            padding: 2px 10px;
            border-radius: 5px;
            background-color: rgba(235, 235, 235, 0.9);
            font-size: 12px;
            display: none;
          }

          img {
            border-radius: 10px;
            overflow: hidden;
            width: 100%;
            height: 165px;
            object-fit: cover;
          }

          .overlay {
            position: absolute;
            inset: 0;
            border-radius: 10px;
            overflow: hidden;
            background-color: rgba(0, 0, 0, 0.3);
            z-index: 1;
            width: 100%;
            height: 165px;
          }

          span {
            position: absolute;
            top: 82px;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            color: #fff;
            font-weight: 600;
            font-size: 16px;
            text-wrap: nowrap;
          }

          &.active {
            padding: 5px;
            background-color: #fbd401;

            .svg {
              display: block;
            }

            img {
              height: 155px;
            }

            .overlay {
              top: 5px;
              bottom: 5px;
              left: 5px;
              right: 5px;
              width: calc(100% - 10px);
              height: 155px;
            }
          }

          &.active {
            margin-bottom: 0;
            height: 172px;
          }
        }
      }
    }

    .product-title-parent .product-variant-title {
      margin-bottom: 0px;
    }

    .product-variant-title {
      font-size: 22px;
      color: #303030;
      margin-top: 20px;
      margin-bottom: 0;
    }

    .variant-selector {
      .size-options {
        .size-option-card {
          border: 1px solid transparent;
          background-color: #f5f5f5;
          display: flex;
          align-items: baseline;
          flex-direction: column;
          justify-content: space-between;
          padding: 18px;
          margin: 0 0 15px;
          cursor: pointer;
          border-radius: 10px;
          transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;

          div {
            display: flex;
            flex-wrap: nowrap;
          }

          span {
            color: #303030;
          }

          input[type='radio'] {
            margin-right: 15px;
            width: 22px;
            height: 22px;
            appearance: none;
            -webkit-appearance: none;
            border: none;
            background: none;
            position: relative;

            &::before {
              content: '';
              display: block;
              width: 22px;
              height: 22px;
              border: 1px solid #0a6a60;
              border-radius: 50%;
            }

            &:checked:after {
              content: '';
              display: block;
              width: 16px;
              height: 16px;
              background-color: #0a6a60;
              border-radius: 50%;
              position: absolute;
              top: 3px;
              left: 3px;
            }
          }

          &.active {
            border: 1px solid #0a6a60;
            background-color: #fff;
          }

          .hidden {
            display: none;
          }
        }
      }
    }

    .order-now-add-to-cart {
      color: #000;
      background-color: #fbd401;
      border-radius: 50px;
      height: 50px;
      width: 100%;
      font-size: 18px;
      font-weight: 500;
      margin-top: 20px;

      &:disabled {
        opacity: 0.5;
      }
    }

    .order-now-form {
      margin-top: 20px;
    }

    .shipping-message {
      font-size: 14px;
      color: #767573;
      text-align: center;
      padding: 0 20px;
    }
  }

  .cart-part {
    width: 400px;
    position: relative;
    color: #303030;

    .cart-contents {
    }

    .cart-contents.sticky {
      position: fixed;
      top: 190px;
      width: 400px;
      z-index: 999;
      background-color: #fff;
    }

    .cart-contents.sticky-bottom {
      position: absolute;
      bottom: 0px;
      width: 400px;
      z-index: 999;
      background-color: #fff;
    }

    @media (max-width: 767px) {
      margin: 0 auto;
    }

    .cart__empty {
      .section__header {
        .section__heading.h2 {
          font-size: 22px;
          font-weight: 500;
          color: #303030;
          margin-bottom: 0;
        }
      }

      .cart__empty__buttons {
        a {
          color: #000;
          background-color: #fbd401;
          border-radius: 50px;
          width: 200px;
          font-size: 18px;
          font-weight: 500;
          margin-top: 10px;
          padding: 10px;
          margin: 0 auto;
        }
      }
    }

    .cart__inner {
      display: flex;
      flex-direction: column;

      .cart__items {
        border: none !important;

        .cart__item {
          border-radius: 10px;
          background-color: #f5f5f5;
          border-bottom: none !important;
          padding: 15px;
          margin-top: 10px;

          .cart__item__image {
            a,
            img {
              width: 92px;
              height: 92px;
            }
          }

          .cart__item__content {
            flex-direction: column;

            .cart__item__content-inner {
              width: 100%;

              .cart__item__info {
                width: 100%;

                .cart__item__meta {
                  margin-top: 2px;
                }

                .cart__item__title {
                  font-weight: 400;
                  font-size: 16px;
                  color: #303030;
                }

                .cart__item__selected-options {
                  font-size: 14px;
                  color: #767573;
                  margin-top: 0;
                }

                .cart__item__selling-plan {
                  font-size: 14px;
                  color: #767573;
                  margin: 0;

                  span {
                    margin: 0;
                    font-style: normal;
                  }
                }
              }
            }

            .cart__item__bottom {
              width: 100%;
              margin-top: 5px;
              display: flex;
              justify-content: space-between;

              .cart__item__price {
                text-align: left;
                padding: 0;
              }

              .cart__item__remove {
                padding: 0;
                margin: 0;
                color: #767573;
                font-size: 14px;
              }
            }
          }
        }
      }

      .cart__content {
        width: 100%;

        .cart__title {
          font-size: 22px;
          font-weight: 500;
          color: #303030;
          margin-bottom: 0;
        }

        .cart__continue {
          border-radius: 50px;
          border: 1px solid #767573;
          color: #767573;
          padding: 0 10px;
        }
      }

      .cart__aside {
        width: 100%;

        .cart__total {
          border-bottom: 1px solid black;
          padding-bottom: 10px;

          .cart__total__title,
          .cart__total__money {
            font-size: 22px;
            color: #303030;
            font-weight: 500;
            text-transform: unset;
            letter-spacing: 0;
          }
        }

        .cart__checkout {
          color: #000;
          background-color: #fbd401;
          border-radius: 50px;
          height: 50px;
          width: 100%;
          font-size: 18px;
          font-weight: 500;
          margin-top: 10px;
          max-width: unset;

          &:disabled {
            opacity: 0.5;
          }
        }
      }
    }
  }

  .yotpo-widget-subscriptions-add-to-cart .yotpo-radio-container {
    border: 1px solid transparent;
  }

  .yotpo-widget-subscriptions-add-to-cart .yotpo-radio-container.yotpo-selected {
    border-color: #0a6a60;
    border: 1px solid #0a6a60;
    background-color: #fff;
  }

  .yotpo-widget-subscriptions-add-to-cart .yotpo-radio-container {
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 10px;
  }

  .yotpo-widget-subscriptions-add-to-cart .yotpo-selling-plan-radio-label {
    width: 22px;
    height: 22px;
    position: relative;
  }

  .yotpo-widget-subscriptions-add-to-cart .yotpo-selling-plan-radio-label::before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    border: 1px solid #767573;
    border-radius: 50%;
  }

  .yotpo-widget-subscriptions-add-to-cart .yotpo-selling-plan-radio-label:after {
    width: 16px;
    height: 16px;
    content: unset;
  }

  .yotpo-widget-subscriptions-add-to-cart .yotpo-selling-plan-radio-label:checked:after {
    content: '';
    width: 16px;
    height: 16px;
    background-color: #0a6a60;
    position: absolute;
    top: 3px;
    left: 3px;
    visibility: unset;
    display: block;
    border: none;
    box-shadow: none;
    border-radius: 50%;
    box-sizing: unset;
  }

  .yotpo-widget-subscriptions-add-to-cart .yotpo-radio-button-text-wrapper {
    align-items: center;
  }

  .yotpo-widget-subscriptions-add-to-cart .yotpo-radio-label .yotpo-radio-label-text {
    font-size: 16px;
    color: #303030;
    font-family: var(--FONT-STACK-BODY);
  }

  .yotpo-widget-subscriptions-add-to-cart .yotpo-selected .yotpo-subscription-label-price {
    color: #0a6a60;
    font-size: 16px;
    font-family: var(--FONT-STACK-BODY);
  }

  .yotpo-widget-subscriptions-add-to-cart .yotpo-radio-button-text-wrapper .yotpo-radio-buttons .yotpo-radio-label {
    display: flex;
    align-items: center;
  }

  .yotpo-widget-subscriptions-add-to-cart .yotpo-select-wrapper .yotpo-frequency-options {
    border-radius: 10px;
    border: 1px solid #767573;
    overflow: hidden;
  }

  .yotpo-widget-subscriptions-add-to-cart .yotpo-subscription-label-prefix {
    color: #0a6a60;
    font-size: 16px;
    font-family: var(--FONT-STACK-BODY);
  }

  .yotpo-widget-subscriptions-add-to-cart .yotpo-subscription-label-price {
    color: #0a6a60;
    font-size: 16px;
    font-family: var(--FONT-STACK-BODY);
  }

  .yotpo-widget-subscriptions-add-to-cart .yotpo-radio-and-dropdown-label {
    font-size: 16px;
    font-family: var(--FONT-STACK-BODY);
  }

  .yotpo-widget-subscriptions-add-to-cart .yotpo-subscription-policy {
    background-color: #f5f5f5;
  }

  .yotpo-widget-subscriptions-add-to-cart .yotpo-subscription-policy-text-header {
    color: #767573;
    font-size: 14px;
  }

  .yotpo-widget-subscriptions-add-to-cart .yotpo-subscription-policy-text-main {
    color: #767573;
    font-size: 14px;
  }
}

.current-macro-balanced p {
  font-size: 16px;
  color: #303030;
}

.menu-details-container {
  background-color: #fbd401;
  grid-column: span 2;
  padding: 10px 15px;
  margin-bottom: 7px;

  h1,
  h2,
  h3,
  h4,
  h5 {
    font-size: 16px;
  }
  h6 {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--FONT-STACK-BODY);
  }
  ul {
    column-count: 2;
    column-gap: 16px;
    font-size: 12px;
    margin-top: 6px;
    li {
      margin-bottom: 0;
    }
  }
  p {
    font-size: 10px;
    margin-top: 6px;
    color: #767573;
  }
}

.menu-details-placeholder {
  .text {
    display: none;
  }
}

// custom code

/* Radio Button Styles */
.size-option-card .radio-container {
  position: relative;
  margin-right: 15px;
}

.size-option-card input[type='radio'] {
  position: absolute;
  opacity: 0;
}

.size-option-card .custom-radio {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid #767573;
  border-radius: 50%;
  position: absolute;
}

.size-option-card.active .custom-radio::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #0a6a60;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.size-option-card.active label {
  border: 1px solid #0a6a60;
}

/* Size Card Layout */
.size-option-card .size-card-content {
  display: flex;
  align-items: center;
}

.size-option-card .size-info {
  flex: 1;
}

/* Serving Note Styles */
.serving-note {
  grid-column: 1 / -1;
  padding: 12px;
  background-color: #0a6a6033;
  font-size: 14px;
  margin-top: 20px;
  color: #303030;
  width: 100%;
  line-height: 16px;
}
.servings-price-container {
  justify-content: space-between;
  width: 100%;
  p {
    margin: 0px;
    font-size: 14px;
    line-height: 100%;
    color: #767573;
  }
}

.radio-title-container {
  width: 100%;
}
