.overflow-wrapper {
  display: flex;
  height: 100vh;
}

.overflow-wrapper > * .is--portrait {
  display: none;
}

/* layout  */
.overflow-wrapper .bowl-layout {
  display: grid;
  width: 100%;
  height: calc(100% - 12rem);
  grid-template-areas: "left center right";
  column-gap: 3.5rem;
  grid-template-columns: 29rem 1fr 29rem;
  margin-top: auto;
  padding-inline: 3rem;
}

.overflow-wrapper .bowl-layout .bowl-left {
  grid-area: left;
}

.overflow-wrapper .bowl-layout .bowl-center {
  grid-area: center;
}

.overflow-wrapper .bowl-layout .bowl-right {
  grid-area: right;
  height: calc(100vh - 12rem);
}

/*   left panel  */
.bowl-left {
  overflow: auto;
}

.bowl-left .bowl-left__container {
  height: 100%;
}

.bowl-left .bowl-left__container .bowl-left__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.bowl-left .bowl-left__heading {
  padding-block: 2.5rem;
}

.bowl-left .bowl-left__heading-h1 {
  color: #fff;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  display: inline-block;
  width: 98%;
  margin-bottom: 1.4rem;
}

.bowl-left .bowl-left__heading-h1 .bowl-left__heading-icon {
  width: 2.4rem;
  height: 2.4rem;
  vertical-align: super;
  cursor: pointer;
}

.bowl-left .bowl-left__heading-p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0.5;
  width: 80%;
}

.bowl-left .bowl-left__footer {
  /* margin-top: auto; */
  padding-block: min(2.5rem, 2.5vh);
}

.bowl-left .bowl-left__footer .bowl-left__delivery {
  border-radius: 3rem;
  background: #272727;
  padding: 0.5rem;
  display: grid;
  gap: 0.4rem;
}

.bowl-left .bowl-left__footer .bowl-left__delivery-btn {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.3rem 1.6rem 0.3rem 0.3rem;
  border-radius: 10rem;
  width: 100%;
}

.bowl-left .bowl-left__footer .bowl-left__delivery-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 10rem;
  background: rgba(244, 120, 62, 0.23);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.bowl-left .bowl-left__footer .bowl-left__delivery-btn-check {
  width: 4.4rem;
  height: 4.4rem;
  /* background-color: red; */
  grid-template-areas: "check";
}

.bowl-left .bowl-left__footer .bowl-left__delivery-btn-check svg {
  grid-area: check;
}

.bowl-left .bowl-left__footer .bowl-left__delivery-btn-check .bowl-left__delivery-btn-check-filled {
  grid-area: check;
}

.bowl-left .bowl-left__footer .bowl-left__delivery-btn-check svg rect:nth-of-type(1),
.bowl-left .bowl-left__footer .bowl-left__delivery-btn-check svg rect:nth-of-type(3),
.bowl-left .bowl-left__footer .bowl-left__delivery-btn-check svg path {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.bowl-left .bowl-left__footer .bowl-left__delivery-btn-check svg rect:nth-of-type(2) {
  fill: #333333;
}

.bowl-left .bowl-left__footer .bowl-left__delivery-btn-span,
.bowl-left .bowl-left__footer [data-dynamic-day] {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  transition: color 0.3s ease-out;
  flex-shrink: 0;
  text-transform: capitalize;
}

.bowl-left .bowl-left__footer .bowl-left__delivery-btn-arrow {
  width: 2rem;
  height: auto;
  margin-left: auto;
}

.bowl-left .bowl-left__footer .bowl-left__delivery-btn-arrow path {
  transition:
    stroke 0.3s ease-out,
    stroke-opacity 0.3s ease-out;
}

/* active states  */
.bowl-left__delivery[data-current-day="first"] [data-day="first"]::before,
.bowl-left__delivery[data-current-day="second"] [data-day="second"]::before,
.bowl-left__delivery[data-current-day="third"] [data-day="third"]::before {
  opacity: 1;
}

.bowl-left__delivery[data-current-day="first"] [data-day="first"] .bowl-left__delivery-btn-span,
.bowl-left__delivery[data-current-day="second"] [data-day="second"] .bowl-left__delivery-btn-span,
.bowl-left__delivery[data-current-day="third"] [data-day="third"] .bowl-left__delivery-btn-span,
.bowl-left__delivery[data-current-day="first"] [data-day="first"] [data-dynamic-day],
.bowl-left__delivery[data-current-day="second"] [data-day="second"] [data-dynamic-day],
.bowl-left__delivery[data-current-day="third"] [data-day="third"] [data-dynamic-day] {
  color: #fff;
}

.bowl-left__delivery[data-current-day="first"] [data-day="first"] .bowl-left__delivery-btn-arrow path,
.bowl-left__delivery[data-current-day="second"] [data-day="second"] .bowl-left__delivery-btn-arrow path,
.bowl-left__delivery[data-current-day="third"] [data-day="third"] .bowl-left__delivery-btn-arrow path {
  stroke-opacity: 1;
  stroke: var(--orange);
}

.bowl-left__delivery[data-current-day="first"] [data-day="first"] .bowl-left__delivery-btn-check svg rect:nth-of-type(1),
.bowl-left__delivery[data-current-day="second"] [data-day="second"] .bowl-left__delivery-btn-check svg rect:nth-of-type(1),
.bowl-left__delivery[data-current-day="third"] [data-day="third"] .bowl-left__delivery-btn-check svg rect:nth-of-type(1) {
  opacity: 0.8;
}

.bowl-left__delivery[data-current-day="first"] [data-day="first"] .bowl-left__delivery-btn-check svg rect:nth-of-type(2),
.bowl-left__delivery[data-current-day="second"] [data-day="second"] .bowl-left__delivery-btn-check svg rect:nth-of-type(2),
.bowl-left__delivery[data-current-day="third"] [data-day="third"] .bowl-left__delivery-btn-check svg rect:nth-of-type(2) {
  fill: #f4783e;
}

.bowl-left__delivery-btn.is--filled .bowl-left__delivery-btn-check svg rect:nth-of-type(1),
.bowl-left__delivery-btn.is--filled .bowl-left__delivery-btn-check svg rect:nth-of-type(3),
.bowl-left__delivery-btn.is--filled .bowl-left__delivery-btn-check svg path {
  opacity: 1;
}

/* panel  */
.bowl-left .bowl-left__panel {
  border-radius: 3rem;
  background: #272727;
  padding: 2rem;
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
  margin-top: 2rem;
}

.bowl-left .bowl-left__panel .bowl-left__panel-progress {
  position: relative;
  isolation: isolate;
  width: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bowl-left .bowl-left__panel .bowl-left__panel-progress-marker {
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  background: #333;
  transition: background 0.3s ease-out;
}

.bowl-left .bowl-left__panel .bowl-left__panel-progress-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: calc(100% - 1rem);
  overflow: hidden;
  background: #333;
  z-index: -1;
}

.bowl-left .bowl-left__panel .bowl-left__panel-progress-bar-inner {
  width: 100%;
  height: 100%;
  border-radius: 0.3rem;
  background: var(--orange);
  transform: translateY(-100%);
}

.bowl-left .bowl-left__panel .bowl-left__panel-state {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bowl-left .bowl-left__panel .bowl-left__panel-state-span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  transition: color 0.3s ease-out;
}

/* center panel  */
.bowl-center {
}

.bowl-center .bowl-center__container {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  height: calc(100vh - 12rem);
}

.bowl-center .bowl-center__top {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 3rem;
  flex-shrink: 0;
  max-width: 115rem;
}

.bowl-center .bowl-center__top::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 3rem;
  border: 1px solid #ffffff0e;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.bowl-center .bowl-center__top-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
  padding: 2rem;
  width: fit-content;
}

.bowl-center .bowl-center__top-link {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.7rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.9;
  flex-shrink: 0;
  width: 22rem;
}

.bowl-center .bowl-center__top-link.is--disabled {
  pointer-events: none;
  user-select: none;
}

.premium-tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  background: rgba(244, 120, 62, 0.322);
  padding: 1rem;
  line-height: 0.9;
  border-radius: 2rem;
  white-space: nowrap;
  backdrop-filter: blur(14px);
}

.bowl-center .bowl-center__top-link:nth-last-child(1) {
  pointer-events: none;
}

.bowl-center .bowl-center__top-link::before {
  border-radius: 10rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  user-select: none;
  transition: transform 0.5s var(--ease);
}

.bowl-center .bowl-center__top-link::after {
  background: rgba(255, 255, 255, 0.2);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16rem;
  height: 3rem;
  z-index: -2;
  border-radius: 100%;
  pointer-events: none;
  user-select: none;
}

.bowl-center .bowl-center__top-link-blur {
  position: absolute;
  background: rgba(244, 120, 62, 0.54);
  filter: blur(25px);
  -webkit-filter: blur(25px);
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0%;
  z-index: -2;
  border-radius: 100% 100% 0 0;
  opacity: 0;
}

.bowl-center .bowl-center__top .bowl-center__top-link-span {
  color: #f4783e;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 0.9;
  margin-top: auto;
}

.bowl-center .bowl-center__top .bowl-center__top-link .bowl-center__top-link-crown {
  width: 2rem;
  height: 1.5rem;
}

.bowl-center .bowl-center__top-link.is--active::before {
  background: rgba(244, 120, 62, 0.23);
}

.bowl-center .bowl-center__top-link.is--active::after {
  background: rgba(244, 120, 62, 0.5);
}

.bowl-center .bowl-center__top-link.is--active .bowl-center__top-link-blur {
  opacity: 1;
}

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

/* right panel  */
.bowl-right {
  width: 100%;
}

.bowl-right .bowl-right__container {
  height: 100%;
}

.bowl-right .bowl-right__container .bowl-right__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* top  */
.bowl-right .bowl-right__container .bowl-right__inner .bowl-right__top {
  border-radius: 3rem;
  background: #272727;
  margin-bottom: 2rem;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bowl-right .bowl-right__top-price {
  color: #fff;
  font-size: 4rem;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.bowl-right .bowl-right__top-price .is--opacity {
  color: rgba(255, 255, 255, 0.2);
}

/* center  */
.bowl-right .bowl-right__center {
  flex-grow: 1;
  overflow: hidden;
}

.bowl-right .bowl-right__center-container {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 3rem;
  /* display: none; */
  overflow: hidden;
}

.bowl-right .bowl-right__center-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #272727;
  border-radius: 3rem;
}

.bowl-right .bowl-right__center-selectors {
  position: relative;
  isolation: isolate;
  display: grid;
  height: 8rem;
  grid-template-areas: "selector";
}

.bowl-right .bowl-right__center-button {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  flex-shrink: 0;
  border-radius: 0 0 0 0rem;
  position: relative;
  isolation: isolate;
  grid-area: selector;
  position: relative;
  padding-inline: 2rem;
  padding-block: 1.5rem 2.6rem;
}

.bowl-right .bowl-right__center-button::before {
  content: "";
  position: absolute;
  top: 0%;
  transform: translate(-50%, 50%);
  z-index: -1;
  width: 5rem;
  height: 2rem;
  background: var(--orange);
  border-radius: 100%;
  filter: blur(30px);
  -webkit-filter: blur(30px);
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

[data-current-day="first"] .bowl-right__center-button {
  background-color: red;
  padding-inline: 2.5rem 0;
}
[data-current-day="first"] .bowl-right__center-button:nth-last-child(1) {
  padding-inline: 0rem 3.5rem;
}

.bowl-right .bowl-right__center-button span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.1;
  transition: color 0.3s ease-out;
}

.bowl-right .bowl-right__center-container[data-interface="3"] .bowl-right__center-button span {
  font-size: 1.6rem;
}

.bowl-right .bowl-right__center-button:nth-of-type(1) {
  justify-content: flex-start;
}

.bowl-right .bowl-right__center-container[data-interface="3"] .bowl-right__center-button:nth-of-type(2) {
  justify-content: center;
}

.bowl-right .bowl-right__center-button:nth-last-child(1) {
  justify-content: flex-end;
}

/* sizes  */
/* interface 3 first day  seleected */
.bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="first"] .bowl-right__center-button:not(:nth-of-type(1)) span {
  width: 4.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 1rem;
}

/* interface 3 first second seleected */
.bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="second"] .bowl-right__center-button:not(:nth-of-type(2)) span {
  width: 4.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* interface 3 first third seleected */
.bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="third"] .bowl-right__center-button:not(:nth-of-type(3)) span {
  width: 4.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bowl-right .bowl-right__center-button span {
}

.bowl-right .bowl-right__center-container[data-current-day="first"] .bowl-right__center-selectors .bowl-right__center-button[data-day="first"] span,
.bowl-right .bowl-right__center-container[data-current-day="second"] .bowl-right__center-selectors .bowl-right__center-button[data-day="second"] span,
.bowl-right .bowl-right__center-container[data-current-day="third"] .bowl-right__center-selectors .bowl-right__center-button[data-day="third"] span {
  color: var(--orange);
}

.bowl-right .bowl-right__center-container[data-current-day="first"] .bowl-right__center-selectors .bowl-right__center-button[data-day="first"]::before,
.bowl-right .bowl-right__center-container[data-current-day="second"] .bowl-right__center-selectors .bowl-right__center-button[data-day="second"]::before,
.bowl-right .bowl-right__center-container[data-current-day="third"] .bowl-right__center-selectors .bowl-right__center-button[data-day="third"]::before {
  opacity: 0.5;
}

/* colors  & clips */
/* interface 2 first day  seleected */
.bowl-right .bowl-right__center-container[data-interface="2"][data-current-day="first"] .bowl-right__center-button:nth-of-type(1) {
  clip-path: url(#left-clippy);
  background: #262525;
  z-index: 2;
}

.bowl-right .bowl-right__center-container[data-interface="2"][data-current-day="first"] .bowl-right__center-button:nth-last-child(1) {
  background: #272727;
}

/* interface 2 second day  seleected */
.bowl-right .bowl-right__center-container[data-interface="2"][data-current-day="second"] .bowl-right__center-button:nth-of-type(2) {
  clip-path: url(#right-clippy);
  background: #262525;
  z-index: 2;
  padding-inline: 3rem;
}

.bowl-right .bowl-right__center-container[data-interface="2"][data-current-day="first"] .bowl-right__center-button::before {
  left: 25%;
}

.bowl-right .bowl-right__center-container[data-interface="2"][data-current-day="second"] .bowl-right__center-button::before {
  left: 75%;
}

.bowl-right .bowl-right__center-container[data-interface="2"][data-current-day="second"] .bowl-right__center-button:nth-of-type(1) {
  background: #272727;
  padding-inline: 3rem;
}

/* interface 3 first day  seleected */
.bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="first"] .bowl-right__center-button:nth-of-type(1) {
  clip-path: url(#left-clippy-i3);
  background: #262525;
  z-index: 2;
  padding-inline: 3rem;
}

.bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="first"] .bowl-right__center-button::before {
  left: 20%;
}

.bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="second"] .bowl-right__center-button::before {
  left: 50%;
}

.bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="third"] .bowl-right__center-button::before {
  left: 80%;
}

.bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="first"] .bowl-right__center-button:nth-of-type(2) {
  clip-path: url(#back-clippy-i3);
  background: #1e1e1e;
  z-index: 1;
}

.bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="first"] .bowl-right__center-button:nth-last-child(1) {
  background: #272727;
}

/* interface 3 second day selected */
.bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="second"] .bowl-right__center-button:nth-of-type(1) {
  background: #1e1e1e;
  z-index: 1;
  width: 50%;
}

.bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="second"] .bowl-right__center-button:nth-of-type(2) {
  clip-path: url(#center-clippy-i3);
  background: #262525;
  z-index: 2;
}

.bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="second"] .bowl-right__center-button:nth-last-child(1) {
  background: #272727;
  z-index: 1;
  width: 50%;
  justify-self: end;
}

/* interface 3 third day selected */
.bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="third"] .bowl-right__center-button:nth-of-type(1) {
  background: #272727;
  width: 100%;
}

.bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="third"] .bowl-right__center-button:nth-of-type(2) {
  z-index: 2;
  width: 100%;
  justify-self: end;
  background: #1e1e1e;
  clip-path: url(#center-clippy-i3);
  padding-right: 6rem;
}

.bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="third"] .bowl-right__center-button:nth-last-child(1) {
  background: #262525;
  z-index: 2;
  clip-path: url(#right-clippy-i3);
  padding-inline: 3rem;
}

.bowl-right .bowl-right__center-inner {
  height: 100%;
  border-radius: 0 0 3rem 3rem;
  display: grid;
  grid-template-areas: "stack";
  overflow: hidden;
  background: #262525;
  position: relative;
  z-index: 1;
  margin-top: -1rem;
}

.bowl-right .bowl-right__center-ul {
  flex-direction: column;
  flex-grow: 1;
  gap: 0.7rem;
  height: 100%;
  padding-inline: 1.3rem 0.8rem;
  margin-right: 1rem;
  grid-area: stack;
  display: none;
  overflow: auto;
  padding-bottom: 1.5rem;
}

.bowl-right .bowl-right__center-container[data-current-day="first"] .bowl-right__center-ul.is--first-day,
.bowl-right .bowl-right__center-container[data-current-day="second"] .bowl-right__center-ul.is--second-day,
.bowl-right .bowl-right__center-container[data-current-day="third"] .bowl-right__center-ul.is--third-day {
  display: flex;
}

/* meals item  */
.bowl-right .bowl-right__center-li {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.4rem 0.8rem 1rem;
}

.bowl-right .bowl-right__center-li.is--empty {
  border-radius: 1rem;
  border: 0.669px dashed rgba(255, 255, 255, 0.19);
  height: 6.2rem;
  width: 100%;
  flex-shrink: 0;
  background: transparent;
}

.bowl-right .bowl-right__center-li.is--empty::before {
  display: none;
}

.bowl-right .bowl-right__center-li-blur {
  position: absolute;
  width: 3.6rem;
  height: 3.6rem;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  z-index: -2;
}

.bowl-right .bowl-right__center-li::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 1rem;
  border: 0.669px solid #ffffff12;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.bowl-right .bowl-right__center-li-img {
  width: 6.8rem;
  height: 4.5rem;
  object-fit: contain;
}

.bowl-right .bowl-right__center-li-span {
  color: #fff;
  font-size: clamp(10px, 1.4rem, 30px);
  font-weight: 500;
  line-height: 1.2;
  text-transform: capitalize;
  text-align: left;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* Aquí decides el número de líneas */
  overflow: hidden;
}

.bowl-right .bowl-right__center-li-delete {
  width: 2rem;
  height: 2.2rem;
  cursor: pointer;
}

.bowl-right .bowl-right__center-li-qty {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-20%, -20%);
  background: #f4783e;
  border-radius: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  min-width: 3rem;
  padding: 0.5rem;

  color: #fff;
  font-size: clamp(10px, 1.4rem, 30px);
  font-weight: 500;
  line-height: 0.9;
  text-transform: capitalize;
  flex-shrink: 0;
}

/* juice item  */
.bowl-right__center-li.is--juice {
  display: flex;
  align-items: center;
  padding: 0.5rem 1.4rem 0.5rem 0.5rem;
  gap: 1rem;
}
.bowl-right__center-li.is--juice .bowl-right__center-li-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0.8rem;
  border-radius: 0.8rem;
  background: rgba(244, 120, 62, 0.23);

  color: #f4783e;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  min-width: 7rem;
}

.bowl-right__center-li.is--juice .bowl-right__center-li-juice {
  height: 4.3rem;
  width: 4rem;
  object-fit: contain;
}

[data-b2b-layout] .bowl-right__center-li.is--juice .bowl-right__center-li-juice {
  height: 4.3rem;
  width: 4rem;
  object-fit: contain;
  margin-inline: 2.5rem 1rem;
}

.bowl-right__center-li.is--juice .bowl-right__center-li-content {
  display: grid;
  gap: 0.3rem;
}

[data-b2b-layout] .bowl-right__center-li.is--juice .bowl-right__center-li-content {
  margin-right: auto;
}

.bowl-right__center-li.is--juice .bowl-right__center-li-content-h5 {
  color: #fff;
  font-size: clamp(10px, 1.4rem, 30px);
  font-weight: 500;
  line-height: 1.1;
  text-transform: capitalize;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* Aquí decides el número de líneas */
  overflow: hidden;
  /* verical  */
}

.bowl-right__center-li.is--juice .bowl-right__center-li-content-span {
  color: rgba(255, 255, 255, 0.46);
  font-size: clamp(8px, 1rem, 20px);
  font-weight: 500;
  line-height: 1.2;
  text-transform: capitalize;
}

/* bottom  */
.bowl-right .bowl-right__bottom {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: 0 1.5rem;
}

.bowl-right .bowl-right__bottom .cta-button {
  position: relative;
  width: 100%;
}

.bowl-right .bowl-right__bottom .cta-button__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bowl-fetch-message {
  width: 100%;
  height: 5rem;
  flex-shrink: 0;
  display: none;
  text-align: center;
  font-size: 1.8rem;
}

@media screen and (orientation: portrait) {
  .overflow-wrapper {
    height: auto;
  }

  .overflow-wrapper .is--landscape .bowl-swiper-navigation,
  .overflow-wrapper .is--landscape .bowl-swiper-container {
    display: none;
  }

  .bowl-center__content-bottom.is--landscape {
    padding-top: 23rem;
  }

  .overflow-wrapper > * .is--portrait {
    display: block;
  }

  .bowl-center .bowl-center__container {
    height: auto;
    gap: 2rem;
  }

  .overflow-wrapper .bowl-layout {
    display: grid;
    width: 100%;
    height: fit-content;
    min-height: auto;
    grid-template-areas:
      "heading"
      "nav"
      "selectors"
      "main";
    column-gap: 0;
    grid-template-columns: 1fr;
    margin-top: unset;
    padding-inline: 0rem;
    padding-block: 7.5rem 0;
  }

  .overflow-wrapper .bowl-layout .bowl-left {
    display: none;
  }

  .overflow-wrapper .bowl-layout .bowl-center {
    grid-area: main;
    width: 100%;
  }

  .bowl-heading.is--portrait {
    grid-area: heading;
    grid-row: 1;
    text-align: center;
    font-size: 3rem;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    /* margin-bottom: 2rem; */
  }

  .bowl-center .bowl-center__container .bowl-center__overflow {
    padding-right: 0 !important;
  }

  /* top nav  */
  .bowl-center .bowl-center__top {
    grid-area: nav;
    border-radius: 0rem;
    overflow: auto;
    width: 100vw;
    padding-top: 2rem;
  }

  .bowl-center .bowl-center__top::before {
    display: none;
  }

  .bowl-center .bowl-center__top-nav {
    gap: 1rem;
    padding: 0rem 1.5rem;
    overflow: visible;
    width: fit-content;
  }

  .bowl-center .bowl-center__top-link {
    flex: 1 0 0;

    font-size: 1.4rem;
    padding: 1.5rem 2.5rem;
    min-width: 14.5rem;
    white-space: nowrap;
  }

  .bowl-center .bowl-center__top-link:nth-last-child(1) {
    pointer-events: none;
  }

  .bowl-center .bowl-center__top-link::before {
    border-radius: 7.8rem;
  }

  .bowl-center .bowl-center__top-link::after {
    width: 80%;
    height: 50%;
  }

  .bowl-center .bowl-center__top-link-blur {
    display: none;
  }

  .bowl-center .bowl-center__top .bowl-center__top-link-span {
    font-size: 1.2rem;
  }

  .bowl-center .bowl-center__top .bowl-center__top-link .bowl-center__top-link-crown {
    width: 1.5rem;
    height: 1.1rem;
  }

  .bowl-center__day-buttons.is--portrait {
    display: flex;
    border-radius: 1.2rem;
    margin-inline: auto;
    overflow: hidden;
    max-width: 70rem;
    width: calc(100% - 3rem);
  }

  .bowl-center__day-buttons.is--portrait .bowl-center__day-button {
    background: #292929;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 0.9;
    padding: 1.8rem;
    transition:
      color 0.3s ease-out,
      background 0.3s ease-out;
    flex: 1 0 0;
  }

  [data-current-day="first"] .bowl-center__day-button[data-day="first"],
  [data-current-day="second"] .bowl-center__day-button[data-day="second"],
  [data-current-day="third"] .bowl-center__day-button[data-day="third"] {
    color: #fff;
    background: #402416;
  }

  .bowl-left__nav.is--portrait {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    grid-area: nav;
    height: fit-content;
  }

  .bowl-left__nav.is--portrait .bowl-left__panel {
    margin-bottom: 4rem;
  }

  .bowl-left__nav.is--portrait .bowl-left__panel-progress {
    position: relative;
    isolation: isolate;
    display: flex;
    justify-content: space-between;
    width: 32rem;
    margin-bottom: 1rem;
    margin-inline: auto;
    padding: 0.5rem;
  }

  .bowl-left__nav.is--portrait .bowl-left__panel-progress::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 5rem;
    border: 0.637px solid #ffffff0c;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
  }

  .bowl-left__nav.is--portrait .bowl-left__panel-progress-marker {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    background: #333;
    border-radius: 100%;
  }

  .bowl-left__nav.is--portrait .bowl-left__panel-progress-marker svg {
    transform: scale(0);
  }

  .bowl-left__nav.is--portrait .bowl-left__panel-progress-marker.is--active svg {
    transform: scale(1);
  }

  .bowl-left__nav.is--portrait .bowl-left__panel-progress-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 2rem);
    height: 0.3rem;
    border-radius: 3rem;
    background: #333;
    overflow: hidden;
    isolation: isolate;
    z-index: -1;
  }

  .bowl-left__nav.is--portrait .bowl-left__panel-progress-bar-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 0.3rem;
    background: #f4783e;
    z-index: -1;
  }

  .bowl-left__nav.is--portrait .bowl-left__panel-state {
    display: flex;
    justify-content: space-between;
    height: 2rem;
    position: relative;
  }

  .bowl-left__nav.is--portrait .bowl-left__panel-state-span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    flex: 1 0 0;
    text-align: center;
    position: absolute;
  }

  .bowl-left__nav.is--portrait .bowl-left__panel-state-span.is--active {
    color: #f4783e;
  }

  .bowl-left__nav.is--portrait .bowl-left__panel-state-span:nth-of-type(1) {
    left: 0;
    transform: translateX(-35%);
  }

  .bowl-left__nav.is--portrait .bowl-left__panel-state-span:nth-of-type(2) {
    left: 50%;
    transform: translateX(-50%);
  }

  .bowl-left__nav.is--portrait .bowl-left__panel-state-span:nth-last-of-type(1) {
    right: 0;
    transform: translateX(30%);
  }

  /* right panel menu */
  .overflow-wrapper .bowl-layout .bowl-right {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    grid-area: none;
    z-index: 55;
    padding-left: 11rem;
    pointer-events: none;
  }

  .overflow-wrapper .bowl-layout .bowl-right[data-menu-open] {
    pointer-events: all;
  }

  .overflow-wrapper .bowl-layout .bowl-right::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.29);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease-out,
      visibility 0.3s ease-out;
  }

  .overflow-wrapper .bowl-layout .bowl-right[data-menu-open]::before {
    opacity: 1;
    visibility: visible;
  }

  .bowl-right .bowl-right__container {
    position: relative;
    padding: 1rem 1.5rem 1.5rem;
    border-radius: 2rem;
    isolation: isolate;
    transform: translateX(100%);
    transition: transform 0.6s var(--ease);
  }

  .bowl-right[data-menu-open] .bowl-right__container {
    transform: translateX(0);
  }

  .bowl-right .bowl-right__container::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border: 0.668px solid #ffffff15;
    background: rgba(184, 184, 184, 0.03);
    backdrop-filter: blur(100px);
  }

  .bowl-right .bowl-right__container .bowl-right__inner {
  }

  /* top  */
  .bowl-right .bowl-right__container .bowl-right__inner .bowl-right__top {
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    padding: 1.5rem;
  }

  .bowl-right .bowl-right__top-price {
    font-size: 3rem;
  }

  /* center   */
  .bowl-right .bowl-right__center-container {
    border-radius: 1.5rem;
  }

  .bowl-right .bowl-right__center-container::before {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
  }

  .bowl-right .bowl-right__center-selectors::before {
    background-color: rgba(255, 255, 255, 0.03);
  }

  .bowl-right .bowl-right__center-inner {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 0 0 1.5rem 1.5rem;
    margin-top: 0;
  }

  .bowl-right__center-selectors .bowl-right__center-button {
    background: transparent !important;
  }

  .bowl-right .bowl-right__center-container[data-current-day="first"] .bowl-right__center-button:nth-of-type(1) {
    background: rgba(255, 255, 255, 0.03) !important;
  }

  .bowl-right .bowl-right__center-container[data-current-day="second"] .bowl-right__center-button:nth-of-type(2) {
    background: rgba(255, 255, 255, 0.03) !important;
  }

  .bowl-right .bowl-right__center-container[data-current-day="third"] .bowl-right__center-button:nth-of-type(3) {
    background: rgba(255, 255, 255, 0.03) !important;
  }

  /* colors  & clips */
  /* interface 2 first day  seleected */
  .bowl-right .bowl-right__center-container[data-interface="2"][data-current-day="first"] .bowl-right__center-button:nth-of-type(1) {
    clip-path: url(#left-portrait-clippy);
  }

  .bowl-right .bowl-right__center-container[data-interface="2"][data-current-day="first"] .bowl-right__center-button:nth-last-child(1) {
  }

  /* interface 2 second day  seleected */
  .bowl-right .bowl-right__center-container[data-interface="2"][data-current-day="second"] .bowl-right__center-button:nth-of-type(2) {
    clip-path: url(#right-portrait-clippy);
  }

  .bowl-right .bowl-right__center-container[data-interface="2"][data-current-day="second"] .bowl-right__center-button:nth-of-type(1) {
    padding-inline: 3rem;
  }

  /* interface 3 first day  seleected */
  .bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="first"] .bowl-right__center-button:nth-of-type(1) {
    clip-path: url(#left-portrait-clippy-i3);
  }

  /* interface 3 second day selected */
  .bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="second"] .bowl-right__center-button:nth-of-type(1) {
    z-index: 1;
    width: 50%;
  }

  .bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="second"] .bowl-right__center-button:nth-of-type(2) {
    clip-path: url(#center-portrait-clippy-i3);
  }

  /* interface 3 third day selected */
  .bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="third"] .bowl-right__center-button:nth-of-type(1) {
    width: 100%;
  }

  .bowl-right .bowl-right__center-container[data-interface="3"][data-current-day="third"] .bowl-right__center-button:nth-last-child(1) {
    clip-path: url(#right-portrait-clippy-i3);
  }

  /* bottom  */
  .bowl-right .bowl-right__bottom {
    margin-inline: auto;
    width: 20rem;
  }

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

  /* menu button   */
  .bowl-menu__button {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-98%, -50%);
    height: 10.5rem;
    display: flex !important;
    align-items: center;
    z-index: -2;
    pointer-events: all;
  }

  .bowl-menu__button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    clip-path: url(#menu-clippy);
    background: rgba(184, 184, 184, 0.03);
  }

  .bowl-menu__button .bowl-menu__button-inner {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-block: auto;
  }

  .bowl-menu__button .bowl-menu__button-inner svg {
    width: 2.3rem;
    height: 2.5rem;
  }

  .bowl-menu__button .bowl-menu__button-inner span {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
  }

  .premium-tooltip {
    transform: translate(-50%, -50%);
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
  }

  .bowl-fetch-message {
    font-size: 1.5rem;
    width: 80%;
    text-align: center;
    margin-inline: auto;
  }
}

@media screen and (orientation: landscape) and (max-width: 1024px) {
  .bowl-right .bowl-right__center-li-span,
  .bowl-right .bowl-right__center-li-qty,
  .bowl-right__center-li.is--juice .bowl-right__center-li-content-h5 {
    font-size: 1.5rem;
  }
}

[data-dropdown] {
  position: relative;
}

/* categories and offcycle days  */
.bowl-categories,
.bowl-offcycle {
  display: none;
}

.bowl-categories__holder {
  position: absolute;
  padding-inline: 1.5rem;
  padding: 1.8rem 3.5rem;
  background: #272727;
  border-radius: 1.2rem;
  bottom: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateY(-2rem);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease-out,
    visibility 0.3s ease-out,
    transform 0.3s ease-out;
}

.bowl-offcycle__holder {
  position: absolute;
  padding-inline: 1.5rem;
  padding: 1.8rem 3.5rem;
  background: #272727;
  border-radius: 1.2rem;
  bottom: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateY(-2rem);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease-out,
    visibility 0.3s ease-out,
    transform 0.3s ease-out;
}

.bowl-left__categories,
.is--active .bowl-categories__holder,
.bowl-left__offcycle.is--active .bowl-offcycle__holder {
  opacity: 1;
  visibility: visible;
  transform: translateY(-1rem);
}

.bowl-left__categories h2,
.bowl-left__offcycle h2 {
  color: #fff;
  font-size: clamp(6px, 1.8rem, 25px);
  font-weight: 500;
  line-height: 0.9;
}

.bowl-left__categories,
.bowl-left__offcycle {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 3rem;
  background: #272727;
  padding: 2rem 2rem;
  cursor: pointer;
}

.bowl-left__categories {
  margin-block: auto 0rem;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.custom-radio,
.custom-checkbox {
  height: 2rem;
  width: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.category-item input {
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  position: absolute;
}

.category-item .category-text {
  color: #fff;
  font-size: clamp(6px, 1.8rem, 25px);
  font-weight: 500;
  line-height: 0.9;
}

.category-item input:checked + .custom-radio,
.category-item input:checked + .custom-checkbox {
  background: #f4783e;
}

@media (orientation: portrait) {
  .bowl-categories__container {
    display: flex;
    gap: 1.5rem;
    padding-inline: 1.5rem;
  }

  .bowl-categories,
  .bowl-offcycle {
    display: block;
    position: relative;
    z-index: 1;
    padding-inline: 1.5rem;
    padding: 1.8rem 3.5rem;
    background: #292929;
    border-radius: 1.2rem;
    width: fit-content;
    flex: 1 0 0;
  }

  .bowl-categories h2,
  .bowl-offcycle h2 {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 0.9;
    text-align: center;
  }

  .bowl-categories .bowl-categories__holder,
  .bowl-offcycle .bowl-offcycle__holder {
    position: absolute;
    padding-inline: 1.5rem;
    padding: 1.8rem 3.5rem;
    background: #292929;
    border-radius: 1.2rem;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateY(1rem);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease-out,
      visibility 0.3s ease-out,
      transform 0.3s ease-out;
    height: fit-content;
  }

  [data-d2c-layout] .bowl-categories__holder {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .bowl-categories.is--active .bowl-categories__holder,
  .bowl-offcycle.is--active .bowl-offcycle__holder {
    opacity: 1;
    visibility: visible;
    transform: translateY(0.5rem);
  }

  .bowl-categories .bowl-categories__holder .category-item,
  .bowl-offcycle .bowl-offcycle__holder .category-item {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .category-item input:checked + .custom-radio,
  .category-item input:checked + .custom-checkbox {
    background: #f4783e;
  }

  .bowl-categories .category-item input,
  .bowl-offcycle .category-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .bowl-categories .custom-radio,
  .bowl-offcycle .custom-checkbox {
    height: 2rem;
    width: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bowl-categories .bowl-categories__holder .category-item .category-text,
  .bowl-offcycle .bowl-offcycle__holder .category-item .category-text {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 0.9;
  }
}

/* cover  */
.b2b-cover__landscape {
  width: 100%;
  height: 5rem;
  display: none;
  margin-bottom: auto;
}

.b2b-cover__landscape img {
  object-fit: contain;
}

.b2b-cover__portrait {
  display: none;
}

[data-b2b-layout] .b2b-cover__landscape {
  display: block;
}

@media (orientation: portrait) {
  .b2b-cover__landscape {
    display: none !important;
  }

  .b2b-cover__portrait {
    width: 100%;
    height: 5rem;
  }

  [data-b2b-layout] .b2b-cover__portrait {
    display: block;
  }
}

.coupon {
  display: none;
}
.coupon .coupon__container {
  display: flex;
  border-radius: 3rem;
  background: #272727;
  margin-bottom: 2rem;
  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;
}
.coupon .coupon__container .coupon__input input {
  font-size: clamp(12px, 1.2rem, 25px);
  width: 100%;
}
.coupon .coupon-fetch {
  font-size: clamp(10px, 1rem, 25px);
}
