.overflow-wrapper .bowl-layout .bowl-center {
  display: flex;
}

.bowl-center .bowl-center__container {
  height: auto;
}

.bowl-left__card {
  position: relative;
  isolation: isolate;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2rem;
  min-height: 23.5rem;
  cursor: pointer;
}

.bowl-left__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 3rem;
  background: rgba(244, 120, 62, 0.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.6s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .bowl-left__card:hover::before {
    transform: scale(0.96);
  }

  .bowl-left__card:hover .bowl-left__card-arrow svg {
    transform: translateX(2rem);
  }
}

.bowl-left__card .bowl-left__card-icon {
  width: 5.7rem;
  height: 4.5rem;
  flex-shrink: 0;
}

.bowl-left__card .bowl-left__card-p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  width: 80%;
}

.bowl-left__card .bowl-left__card-arrow {
  display: inline-flex;
  width: 1.8rem;
  height: 1.2rem;
  overflow: hidden;
}

.bowl-left__card .bowl-left__card-arrow svg {
  filter: drop-shadow(-2rem 0px 0px var(--orange));
  -webkit-filter: drop-shadow(-2rem 0px 0px var(--orange));
  transition: transform 0.6s var(--ease);
}

.bowl-left .bowl-left__panel .bowl-left__panel-state-span:nth-of-type(1) {
  color: #fff;
}

.bowl-left .bowl-left__panel .bowl-left__panel-progress-marker:nth-of-type(1) {
  background: var(--orange);
}

.bowl-left .bowl-left__panel .bowl-left__panel-progress-bar-inner {
  transform: translateY(-70%);
}

/* center  */
.bowl-center {
  overflow: auto;
}

.bowl-center .bowl-center__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: min(5rem, 5vh);
  width: 95rem;
  margin-inline: auto;
  height: fit-content;
}

@media (orientation: landscape) and (min-height: 1200px) {
  .bowl-center .bowl-center__container {
    margin: auto;
  }
}

@media (orientation: landscape) {
  .bowl-left__footer {
    margin-top: auto;
  }
}

.bowl-center .bowl-center__container .bowl-center__h1 {
  text-align: center;
  font-size: min(5rem, 5vh);
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}

.bowl-center .bowl-center__container .bowl-center__p {
  text-align: center;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0.5;
  width: 30rem;
  margin-bottom: min(5rem, 5vh);
}

.bowl-center .bowl-center__container .bowl-form {
  display: grid;
  gap: 1.5rem;
  width: 100%;
}

.bowl-center .bowl-center__container .bowl-form .bowl-form__row {
  width: 100%;
  display: flex;
  gap: 2rem;
  overflow: hidden;
  border-radius: 2rem;
}

.bowl-center .bowl-center__container .bowl-form .bowl-form__row.no--gap {
  gap: 0;
}

.bowl-center .bowl-center__container .bowl-form .bowl-form__row > * {
  flex: 1 0 0;
  min-width: 0;
}

.bowl-center .bowl-center__container .bowl-form .bowl-form__input,
.bowl-center .bowl-center__container .bowl-form .bowl-form__select,
.bowl-center .bowl-center__container .bowl-form .bowl-form__textarea {
  padding: 1.7rem 2.5rem;
  background: #272727;
  border-radius: 10rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.9;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  min-height: 6rem;
}

.bowl-center .bowl-form .bowl-form__input.bowl-form__input--select {
  padding: 1.7rem 2.5rem;
  background: #272727;
  border-radius: 10rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.9;
  width: 100%;
  appearance: base-select;
  display: flex;
  align-items: center;
}

.bowl-form__chevron {
  position: absolute;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  pointer-events: none;
  user-select: none;
}

select::picker(select) {
  border-radius: 2rem;
  appearance: base-select;
  margin-block: 0.5rem;
  padding: 1.5rem;
  background: #272727;
  border: none;
  max-height: 30rem;
  overflow: auto;
}

select::picker(select)::-webkit-scrollbar {
  display: none;
}

select::picker(select)::-webkit-scrollbar-thumb {
  /* background: red; */
  /* border-radius: 0.5rem; */
}

selectedcontent {
  opacity: 1;
}

.bowl-form__input.bowl-form__input--select option {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 0.9;
  padding: 1rem;
  background: #272727;
  cursor: pointer;
  appearance: base-select;
  border-radius: 0.5rem;
  padding: 1rem;
}

.bowl-center .bowl-form__input.bowl-form__input--select::picker:open {
}

.bowl-center .bowl-form__input.bowl-form__input--select option::hover {
  background: #b60c0c;
}

.bowl-center .bowl-form__input.bowl-form__input--select option:checked {
  background: #3f3f3f39;
}

.bowl-center .bowl-center__container .bowl-form .bowl-form__textarea {
}

.bowl-center .bowl-center__container .bowl-form .bowl-form__select option {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 0.9;
  position: absolute;
  top: 100%;
}

.bowl-center .bowl-form__input.bowl-form__input--select::picker-icon {
  display: none;
}

.bowl-center .bowl-form__input.bowl-form__input--select option::checkmark {
  display: none;
}

.bowl-center .bowl-center__container .bowl-form .bowl-form__input::placeholder,
.bowl-center .bowl-center__container .bowl-form .bowl-form__textarea::placeholder {
  color: #fff;
}

.bowl-center .bowl-center__container .bowl-form .bowl-form__row-wrapper {
  position: relative;
  display: flex;
}

.bowl-form__select-chevron {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  transform: translate(0%, -50%);
  pointer-events: none;
  user-select: none;
}

.bowl-center .bowl-center__container .bowl-form .bowl-form__textarea {
  min-height: 15rem;
  border-radius: 2rem;
  resize: none;
  line-height: 1.4;
}

/* modal  */
.pickup-modal__layer {
  position: fixed;
  inset: 0;
  z-index: 20;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex;
  justify-content: center;
  padding-block: min(16rem, 20vh);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease-out,
    visibility 0.3s ease-out;
}

.pickup-modal__layer[data-modal-active] {
  opacity: 1;
  visibility: visible;
}

.pickup-modal {
  position: relative;
  width: fit-content;
  height: fit-content;
  padding-inline: 12.5rem;
  border-radius: 2rem;
  border: 0.668px solid #ffffff12;
  background: #121212;
  padding-block: min(7rem, 7vh);
  margin-block: auto;
}

.pickup-modal .pickup-modal__close {
  position: absolute;
  top: 2.8rem;
  right: 2.8rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  transition: tarnsform 0.6s var(--ease);
  display: flex;
}

.pickup-modal .pickup-modal__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(88rem, 70vh);
}

.pickup-modal .pickup-modal__container .pickup-modal__h3 {
  text-align: center;
  font-size: min(6rem, 4vh);
  font-weight: 500;
  line-height: normal;
}

.pickup-modal .pickup-modal__container .pickup-modal__p {
  text-align: center;
  font-size: min(1.8rem, 1.8vh);
  font-weight: 400;
  line-height: 1.2;
  opacity: 0.5;
  margin-bottom: min(4rem, 4vh);
}

.pickup-modal .pickup-modal__container .pickup-modal__calendar {
  padding: min(2rem, 2vh) min(4rem, 4vh);
  position: relative;
  isolation: isolate;
  margin-block: auto;
}

.pickup-modal .pickup-modal__container .pickup-modal__calendar::before {
  content: "";
  position: absolute;
  width: 13rem;
  height: 8.5rem;
  border-radius: 100%;
  bottom: 10rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(244, 120, 62, 0.66);
  filter: blur(50px);
  z-index: -2;
}

.pickup-modal .pickup-modal__container .pickup-modal__calendar::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 3rem;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);

  border: 1.01px solid #ffffff16;
  background: rgba(255, 255, 255, 0.05);
}

.pickup-modal .pickup-modal__container .cta-button {
  margin-top: min(4rem, 4vh);
}

.pickup-modal .pickup-modal__container .cta-button {
  position: relative;
  width: 31.5rem;
}

.pickup-modal .pickup-modal__container .cta-button__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* gradient  */
.top-left-gradient {
  position: absolute;
  top: 0rem;
  left: 50%;
  width: 32rem;
  height: 18rem;
  z-index: -1;
  transform: translate(-50%, -50%);

  border-radius: 100%;
  background: rgba(244, 120, 62, 0.66);
  filter: blur(120px);
  -webkit-filter: blur(120px);
}

.bowl-form__row .pickup-label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 1rem;
}

.bowl-form__row .pickup-label::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  top: 0;
  left: 0;
  background: #272727;
  border-radius: 0.2rem;
}

.bowl-form__row .pickup-label:has(.pickup-input:checked)::before {
  background-color: var(--orange);
}

.bowl-form__row .pickup-label .pickup-input {
  position: absolute;
  top: 0%;
  left: 0rem;
  opacity: 0;
}

.bowl-form__row .pickup-message,
.bowl-form__row .pickup-label .pickup-text {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

.bowl-form__row .pickup-label:has(.pickup-input:checked) ~ .pickup-message {
  display: block;
}

.bowl-form__row .pickup-message {
  display: none;
  margin-top: 1rem;
}

.go-back__landscape {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

@media (orientation: portrait) {
  .go-back__landscape {
    display: none;
  }

  selectedcontent {
    opacity: 0.7;
  }

  .overflow-wrapper .bowl-layout {
    grid-template-areas:
      "nav"
      "main"
      "card"
      "footer";
    min-height: auto;
    padding-block: 11.5rem 3rem;
  }

  /* center  */
  .bowl-center {
    overflow: visible;
  }

  .bowl-center .bowl-center__container {
    padding-block: 0;
    width: 100%;
    margin-inline: auto;
    gap: 0;
  }

  .bowl-center .bowl-center__container .bowl-center__h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .bowl-center .bowl-center__container .bowl-center__p {
    font-size: 1.4rem;
    width: 100%;
    margin-bottom: 2rem;
  }

  .bowl-center .bowl-center__container .bowl-form {
    padding-inline: 3.5rem;
    gap: 1rem;
  }

  .bowl-center .bowl-center__container .bowl-form .bowl-form__row {
    display: flex;
    gap: 1rem;
    border-radius: 0rem;
  }

  .bowl-center .bowl-center__container .bowl-form .bowl-form__row.is--triple {
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .bowl-center .bowl-center__container .bowl-form .bowl-form__row:nth-of-type(1) {
    flex-direction: column;
  }

  .bowl-center .bowl-center__container .bowl-form .bowl-form__input,
  .bowl-center .bowl-center__container .bowl-form .bowl-form__select,
  .bowl-center .bowl-center__container .bowl-form .bowl-form__textarea {
    padding: 1.4rem 2.3rem;
    border-radius: 8rem;
    font-size: 1.4rem;
    min-height: 5rem;
  }

  .bowl-center .bowl-center__container .bowl-form .bowl-form__select {
    color: rgba(255, 255, 255, 0.62);
  }

  .bowl-center .bowl-center__container .bowl-form .bowl-form__select option {
    font-size: 1.2rem;
    color: #fff;
  }

  .bowl-center .bowl-center__container .bowl-form .bowl-form__input::placeholder,
  .bowl-center .bowl-center__container .bowl-form .bowl-form__textarea::placeholder,
  .bowl-center .bowl-center__container .bowl-form .bowl-form__select::placeholder {
    color: rgba(255, 255, 255, 0.62);
  }

  .bowl-form__select-chevron {
    right: 1rem;
    width: 1.5rem;
    height: 1.5rem;
  }

  .bowl-center .bowl-center__container .bowl-form .bowl-form__textarea {
    min-height: 10rem;
    border-radius: 2rem;
  }

  .bowl-left__card-container {
    padding-inline: 3.5rem;
    margin-top: 2rem;
  }

  .bowl-left__card {
    padding: 1.5rem 2rem;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1.5rem;
    min-height: fit-content;
    cursor: pointer;
  }

  .bowl-left__card::before {
    border-radius: 1.5rem;
  }

  .bowl-left__card .bowl-left__card-icon {
    width: 2.5rem;
    height: 2rem;
  }

  .bowl-left__card .bowl-left__card-p {
    font-size: 1.4rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .bowl-left__card .bowl-left__card-arrow {
    width: 1.8rem;
    height: 1.2rem;
    margin-left: auto;
  }

  .bowl-center__control-buttons.is--portrait {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 5rem;
  }

  .bowl-center__control-buttons.is--portrait .go-back {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
  }

  .bowl-center__control-buttons.is--portrait .cta-button {
    position: relative;
    width: 20rem;
  }

  .bowl-center__control-buttons.is--portrait .cta-button__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* modal  */
  .pickup-modal__layer {
    display: flex;
    justify-content: center;
    padding-block: min(16rem, 20vh);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease-out,
      visibility 0.3s ease-out;
  }

  .pickup-modal__layer[data-modal-active] {
    opacity: 1;
    visibility: visible;
  }

  .pickup-modal {
    padding-inline: 1.5rem;
    border-radius: 2rem;
    padding-block: min(5rem, 5vh) 3rem;
    width: 95%;
    max-width: 60rem;
  }

  .pickup-modal .pickup-modal__close {
    top: 1.5rem;
    right: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
  }

  .pickup-modal .pickup-modal__container {
    width: 100%;
  }

  .pickup-modal .pickup-modal__container .pickup-modal__h3 {
    font-size: 2.5rem;
    width: 90%;
  }

  .pickup-modal .pickup-modal__container .pickup-modal__p {
    font-size: 1.4rem;
    margin-bottom: min(4rem, 4vh);
  }

  .pickup-modal .pickup-modal__container .pickup-modal__calendar {
    padding: 2rem 2rem;
  }

  .pickup-modal .pickup-modal__container .pickup-modal__calendar::after {
    border-radius: 1.5rem;
  }

  .pickup-modal .pickup-modal__container .cta-button {
    margin-top: min(4rem, 4vh);
  }

  .pickup-modal .pickup-modal__container .cta-button {
    width: 20rem;
  }

  .bowl-left__nav.is--portrait .bowl-left__panel-progress-bar-inner {
    transform: translateX(-70%);
  }

  .overflow-wrapper {
    position: relative;
    min-height: 100vh;
  }

  /* gradient  */
  .top-left-gradient {
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 13rem;
    height: 13rem;
    filter: blur(70px);
    -webkit-filter: blur(70px);
  }

  .bowl-form__row .pickup-message,
  .bowl-form__row .pickup-label .pickup-text {
    font-size: 1.4rem;
  }
}

/* success modal  */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  isolation: isolate;
  justify-content: center;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s var(--ease),
    visibility 0s var(--ease);
  padding-inline: 26rem;
}

.success-modal .success-modal__background {
  background: rgba(11, 11, 11, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: absolute;
  inset: 0;
  z-index: -1;
}

.success-modal .success-modal__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 8rem 12rem;
  position: relative;
}

.success-modal .success-modal__content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  border: 0.668px solid #ffffff0f;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  z-index: -1;
}

.success-modal .success-modal__content h4 {
  color: #fff;
  text-align: center;
  font-size: 6rem;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.success-modal .success-modal__content h3 {
  color: #fff;
  text-align: center;
  font-size: clamp(15px, 2.5rem, 40px);
  font-weight: 400;
  line-height: 1.2;
  text-transform: capitalize;
}

.success-modal .success-modal__content p {
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0.5;
}

.success-modal.is--active {
  opacity: 1;
  visibility: visible;
}

.success-modal .success-modal__content ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.success-modal .success-modal__content li {
  color: #fff;
  text-align: center;
  font-size: clamp(15px, 2.2rem, 25px);
  font-weight: 400;
  line-height: 1.2;
  text-transform: capitalize;
}

@media (orientation: portrait) {
  .success-modal {
    padding: 2rem;
  }

  .success-modal .success-modal__content {
    padding: 4rem 2rem;
  }

  .success-modal .success-modal__content::before {
    border-radius: 1.4rem;
  }

  .success-modal .success-modal__content h4 {
    font-size: 3rem;
    line-height: 1;
  }

  .success-modal .success-modal__content p {
    font-size: 1.4rem;
    width: 100%;
  }

  .success-modal .success-modal__content h3,
  .success-modal .success-modal__content li {
    font-size: 1.5rem;
  }
}
.coupon {
  display: block !important;
}
.coupon .coupon__container {
  display: flex;
  border-radius: 3rem;
  background: #272727;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.coupon .coupon__container span {
  font-size: clamp(10px, 1rem, 25px);
  margin-left: 1.5rem;
}

.coupon .coupon__container button {
  font-size: clamp(10px, 1rem, 25px);
  background-color: var(--orange);
  padding: 0.5rem 1rem;
  border-radius: 5rem;
  display: none;
}
.coupon .coupon__container .coupon__input {
  background: #3d3a3a;
  border-radius: 5rem;
  padding: 0.5rem;
  padding-left: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}
.coupon .coupon__container .coupon__input input {
  font-size: clamp(9px, 1rem, 25px);
  width: 100%;
}
.coupon .coupon-fetch {
  font-size: clamp(10px, 1rem, 25px);
}

.coupon-fetch {
  font-size: clamp(9px, 1rem, 25px);
  text-align: left;
  padding-inline: 0.5rem;
  margin-bottom: 1rem;
}
