* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

.order-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85vh;
  background: white;
  padding: 16px 0;
}

.order-container {
  text-align: center;
}

.order-title {
  font-weight: 800;
  color: #1f3f6d;
  font-size: 21px;
  line-height: 32px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.order-options {
  display: flex;
  gap: 15px;
}

.order-card {
  flex: 1;
  border: 1px solid #dedede;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 4px;
  width: 252px;
  padding-bottom: 34px;
  padding-top: 45px;
  position: relative;
  overflow: hidden;
}

/* overlay */
.order-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: #1f3f6d;
  /* opacity: 0;
  visibility: hidden; */
  transition: all 0.3s ease;
  z-index: 1;
}

/* .order-card:hover::after {
  height: 100%;
  opacity: 1;
  visibility: visible;
} */

/* fix content above overlay */
.order-card .icon,
.order-card h4,
.order-card p {
  position: relative;
  z-index: 2;
}

/* text */
.order-card h4 {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #26332f;
}

.order-card p {
  font-size: 12px;
  color: #6d7874;
}

/* hover color */
/* .order-card:hover h4,
.order-card:hover p {
  color: white;
} */

/* .order-card:hover img {
  filter: brightness(0) invert(1);
} */

.order-card.active {
  border: 1px solid #1f3f6d;
}

.icon {
  margin-bottom: 10px;
}

.order-btn {
  margin-top: 20px;
  width: 100%;
  background: #1f3f6d;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  height: 53px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  box-shadow: 0px 6px 50px 0px rgba(37, 37, 37, 0.05);
}

.order-btn::after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 0;
  /* border-radius: 10px; */
  background: #58759e;
  z-index: -1;
  transition: width 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.order-btn:hover {
  color: white;
}

.order-btn:hover::after {
  width: 100%;
  left: 0;
  right: auto;
  color: white;
}

@media (max-width: 600px) {
  .order-title {
    font-size: 18px;
    margin-bottom: 13px;
  }

  .order-card {
    width: 167px;
    padding-top: 28px;
    padding-bottom: 22px;
  }

  .order-card h4 {
    font-size: 11px;
  }

  .order-card p {
    font-size: 11px;
  }
}
/* ==================== */
.cta {
  position: relative;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s ease;
}

.cta span {
  position: relative;
  z-index: 2;
}

.c2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.5s ease;
}
.c2:hover::after {
  transform: translateX(100%);
}

.c4 {
  background: #2563eb;
}
.c4::before {
  content: "";
  position: absolute;
  width: 160%;
  height: 220%;
  left: -30%;
  top: 100%;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 45%;
  transition: 0.6s ease;
}
.c4:hover::before {
  top: -40%;
}

/* choose meal page */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Manrope, sans-serif;
}

body {
  background: white;
  overflow-x: hidden;
}
.font-inter {
  font-family: "Inter", sans-serif;
}

/* ================= PRE LOADER START ================= */

#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #ddd;
  border-top: 5px solid #1f3f6d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.content {
  padding: 100px;
  text-align: center;
}
/* ================= PRE LOADER END ================= */

/* ================= STEEPER START ================= */

.stepper-wrapper {
  margin: 0 auto 32px auto;
  display: flex;
  align-items: center;
  width: 100% !important;
  max-width: 100% !important;
  height: 100px;
  box-shadow: 0px -3px 30px 0px #00000026;
  padding: 0 15px;
  position: relative;
  /* Ensure stepper is not constrained by parent containers */
  box-sizing: border-box;
}

.back {
  font-size: 22px;
  cursor: pointer;
  position: relative;
  left: 25px;
  top: 0;
}

.stepper {
  width: 100%;
  position: relative;

  max-width: 603px;
  display: block;
  margin: auto;
}

/* line background */
.progress-line {
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ddd;
  z-index: -9;
  margin-top: 29px;
  margin-left: 29px;
  max-width: 536px;
}

/* active progress */
.progress {
  position: absolute;
  top: 16px;
  left: 0;
  height: 3px;
  /* background: #3b82f6; */
  z-index: 2;
  transition: 0.4s;
}

/* steps */
.steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: -3;
}

.step {
  text-align: center;
}


@media (max-width: 600px) {
  .payment {
    line-height: 1 !important;
  }
}
/* circle */
.circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 14px;
  transition: 0.3s;
}
.circle.last {
  background: #eaeceb;
  width: 36px;
  height: 36px;
  border: transparent;
}
.circle.last button {
  height: 16px;
  width: 16px;
  background: #b5c4ff;
  border-radius: 100%;
  border: transparent;
}
/* label */
.label {
  margin-top: 6px;
  font-family: Manrope;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 13px;
  line-height: 20px;
  color: #26332f80;
}

/* active step */
.step.active .circle {
  background: #1f3f6d;
  /* border-color: #3b82f6; */
  color: #fff;
  border: transparent;
}

.step.active .label {
  color: #1f3f6d;
  font-family: Manrope;
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
}

/* completed */
.step.completed .circle {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
  .label {
    font-size: 11px;
  }

  .circle {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .progress-line {
    width: 85%;
  }
  .circle.last {
    width: 26px;
    height: 26px;
    position: relative;
    top: -3px;
  }
  .stepper-wrapper {
    overflow: hidden;
    margin-bottom: 18px;
  }
  .step.active .label {
    font-size: 11px;
  }

  .progress-line {
    width: 88%;
    margin-left: 30px;
    margin-top: 24px;
  }
  .steps {
    margin-left: 9px;
  }
  .back {
    position: absolute;
    top: 19px;
    left: 1px;
  }
  .back img {
    height: 32px;
    width: 32px;
  }
}

/* ================= STEEPER END ================= */

/* ================= CONTAINER ================= */
.container {
  max-width: 1085px;
  margin: auto;
  padding: 0 15px;
  position: relative;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
}

.section-title {
  font-weight: 800;
  color: #1f3f6d;
  font-size: 22px;
  text-transform: uppercase;
}

.filter-btn {
  width: 119px;
  height: 44px;
  font-family: Manrope;
  font-weight: 800;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 1.09px;
  text-align: center;
  text-transform: uppercase;
  background: transparent;
  border: 2px solid #1f3f6d;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  cursor: pointer;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  box-shadow: 0px 6px 50px 0px rgba(37, 37, 37, 0.05);
}

.filter-btn::after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 0;
  /* border-radius: 10px; */
  background: #1f3f6d;
  z-index: -1;
  transition: width 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.filter-btn:hover {
  color: white;
}
.filter-btn:hover img {
  filter: brightness(0) invert(1);
}

.filter-btn:hover::after {
  width: 100%;
  left: 0;
  right: auto;
  color: white;
}

.selected-items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.selected-tag {
  background: #f2f2f2;
  padding: 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;

  color: #1f3f6d;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
}

.selected-tag .remove {
  cursor: pointer;
  font-weight: bold;
}
.showing-meal p {
  color: #000000;
  font-family: Manrope;
  font-weight: 500;
  font-size: 14px;
  line-height: 18.4px;
  margin-bottom: 15px;
}

.meals {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(246px, 1fr));
  gap: 14px;
}

.card {
  background: white;
  border-radius: 12px;
  width: 256px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #d9d9d9;

  overflow: hidden;
  /* opacity: 0; */

}
.card-wrapper {
  padding: 0 13px;
  margin-top: 13px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid #eeeeee;
  transition: all ease-in-out;
  transition-duration: 0.5s;
}
.card:hover img {
  transform: scale(1.2);
  transition: all ease-in-out;
  transition-duration: 0.5s;
}

.card h4 {
  font-family: Manrope;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 21.41px;
  color: #000000;
}
.layout{
  margin-bottom: 15%;
}

.info {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}
.cal-wrapper .qty {
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  color: black;
  line-height: 21.41px;
}
.cal-wrapper .cal {
  font-family: Manrope;
  font-weight: 300;
  font-style: Light;
  font-size: 12px;
  line-height: 21.41px;
}

.counter {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 18px;
}
.qtyPlus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: transparent;
  cursor: pointer;
  font-size: 18px;
  background: #1f3f6d;
  color: white;
  font-weight: 600;
  position: relative;
  transition: all ease-in-out;
  transition-duration: 0.6s;
  z-index: 1;
}

.qtyMinus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #1f3f6d;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  background: transparent;
  color: #1f3f6d;
  /* display: none; */
  position: relative;
  overflow: hidden; /* important */
  z-index: 99;
}
.qtyMinus:hover {
  color: white;
  border: transparent;
}

.qtyMinus::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #1f3f6d;
  transform: scale(0);
  transition: transform 0.3s ease;
  border-radius: 50%;
  z-index: -1;
}

.qtyMinus:hover::after {
  transform: scale(1);
  color: white;
}

.qtyMinus.active {
  display: block;
}

.plus {
  background: #1f3f6d;
  color: white;
  font-weight: 600;
}

.minus {
  font-weight: 600;
  background-color: white;
  border: 1px solid #1f3f6d;
  /* display: none; */
}
.minus.active {
  display: block;
}

.count {
  /* display: none; */
}
.count.active {
  display: block;
}
.filter-panel {
  width: 233px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  position: absolute;
  top: 5.5%;
  right: 8px;
  border: 1px solid #e2e2e2;
  z-index: 999;
  height: 50vh;
  overflow-y: auto;
}

.filter-panel.hide {
  transform: translateX(0%);
  opacity: 0;
  pointer-events: none;
}
.filter-panel h4 {
  font-family: Manrope;
  font-weight: 600;
  font-size: 13px;
  color: #3c3c3c;
  line-height: 100%;
  letter-spacing: 0.3px;
  padding-bottom: 7px;
  border-bottom: 1px solid #c9c9c9;
  padding: 9px 16px;
}

.filter-item {
  /* margin: 10px 0; */
  display: flex;
  justify-content: space-between;
  padding: 9px 16px;
}
.filter-item label {
  font-family: Manrope;
  font-weight: 500;
  font-size: 11px;
  line-height: 19.96px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #3e3e3e;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.filter-item input[type="checkbox"] {
  width: 12px;
  height: 12px;
  accent-color: #1f3f6d;
  cursor: pointer;
}
.filter-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 24px;
  padding-bottom: 18px;
  /* padding: 0px 16px; */
  padding-top: 9px;
  padding-right: 15px;
}
.filter-btn-wrapper .clear {
  font-weight: 500;
  font-size: 11px;
  line-height: 19.96px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1f3f6d;
  border: transparent;
  cursor: pointer;
  background: transparent;
}

.filter-btn-wrapper .apply {
  width: 103px;
  height: 31px;
  border-radius: 3.46px;
  background-color: #1f3f6d;
  font-family: Manrope;
  color: white;
  font-weight: 500;
  font-size: 10.37px;
  line-height: 15.91px;
  cursor: pointer;
  border: none;
}
.cart-wrapper {
  position: fixed;
  bottom: 0px;
  width: 100%;
  height: 71px;
  box-shadow: 0px -8px 16px 0px #0000000f;
  background: white;
  z-index: 9999;
}

.cart {
  max-width: 1280px;
  height: 100%;
  display: block;
  margin: auto;
  position: relative;
  right: 17px;
}
.cart-button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
.cart .pagination {
  width: 105px;

  background: #1f3f6d;
  gap: 10px;
  border-radius: 4px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Manrope;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 12px;
  line-height: 19.57px;
  color: white;
  border: none;
  cursor: pointer;
}

@media (max-width: 992px) {
  .filter-panel {
    /* position: fixed; */
    right: 12px;
    top: 2%;
    height: 60vh;
    overflow-y: auto;
    z-index: 100;
  }
  .section-title {
    font-size: 18px;
    margin-bottom: 13px;
  }
}
@media (max-width: 768px) {
  .meals {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    margin-bottom: 25%;
  }
  .card {
    width: 100%;
  }
  .cart .pagination {
    position: relative;
    right: 15px;
  }
}

/* ================= CART START ================= */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 999;
}

.modal {
  position: fixed;
  top: 0;
  right: -420px;
  width: 431px;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: 0.4s;
  z-index: 999;
}

.modal.active {
  right: 0;
}

.modal-header {
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  height: 95px;
  width: 100%;
  align-items: center;
  padding: 0 16px;
  background-color: white;
}
.modal-header h3 {
  font-family: Manrope;
  font-weight: 300;
  font-size: 17.09px;
  color: black;
  line-height: 20.05px;
}
.modal-header strong {
  font-family: Manrope;
  font-weight: 600;
  color: #1f3f6d;
  font-size: 25.64px;
  line-height: 34.18px;
}
.modal-header p {
  font-family: Manrope;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 22.02px;
  color: #1f3f6d;
  border-bottom: 1px solid #1f3f6d;
  cursor: pointer;
}

.close {
  cursor: pointer;
  height: 42px;
  width: 42px;
}
.protin-wrapper {
  height: 95px;
  padding: 15px 32px;
  width: 100%;
  background: #f5f5f5;
  border-bottom: 1px solid #dcdcdc;
}
.protin-wrapper.active {
  display: none;
}

.protin-wrapper p {
  font-family: Manrope;
  font-weight: 600;
  font-size: 14px;
  line-height: 20.05px;
  color: #676767;
}
.size-buttons {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.size-buttons button {
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  background: white;
  width: 90px;
  height: 35px;
  font-weight: 400;
  font-size: 13.67px;
  color: #1f3f6d8f;
}
.size-buttons button span {
  font-weight: 700;
  font-size: 13.67px;
  line-height: 100%;
}

.modal-body {
  flex: 1;
  overflow: auto;
  padding: 13px;
}

.item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.item-left {
  display: flex;
  align-items: center;
  gap:15px
}
.item-left span {
  font-weight: 400;
  font-size: 14px;
  color: black;
  line-height: 18.77px;
}

.item img {
  width: 55px;
  height: 55px;
  border-radius: 100px;
  object-fit: cover;
}

.qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty button {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #1f3f6d;

  cursor: pointer;
}

#emptyMessage {
  text-align: center;
  color: #777;
  margin-top: 40px;
  display: none;
}
#emptyMessage h3 {
  font-family: Manrope;
  font-weight: 500;
  color: black;
  font-size: 24px;
  line-height: 20.05px;
  margin-bottom: 27px;
}
#emptyMessage button {
  width: 235px;
  height: 58px;
  border-radius: 4px;
  background-color: #1f3f6d;
  font-family: Manrope;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 22.02px;
  text-transform: uppercase;
  border: none;
  display: block;
  margin: auto;
  color: white;
  cursor: pointer;
}
#emptyMessage a {
  font-family: Manrope;
  font-weight: 600;
  font-size: 13.5px;
  color: #1f3f6d;
  line-height: 22.02px;
  text-transform: uppercase;
  margin-top: 16px;
  display: block;
}

.modal-footer {
  padding: 21px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  height: 92;
  background: #f5f5f5;
}

.empty {
  font-weight: 600;
  font-size: 13.5px;
  color: #1f3f6d;
  border: none;
  cursor: pointer;
  position: relative;
  background: transparent;
}
.empty::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 75px;
  height: 1px;
  background: #1f3f6d;
  margin: 0 auto;
  right: 0;
}

.add {
  background: #1e3a5f;
  width: 235px;
  height: 48px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 22.02px;
  color: white;
  border: none;
}

@media (max-width: 600px) {
  .modal {
    width: 331px;
  }
  .add {
    width: 188px;
    height: 38px;
    font-size: 12px;
    line-height: 18px;
  }
  .empty {
    font-size: 10px;
  }
  .empty::after {
    width: 54px;
  }
  #emptyMessage h3 {
    font-size: 22px;
    line-height: 18px;
    margin-bottom: 25px;
  }
  #emptyMessage button {
    width: 215px;
    height: 53px;
    font-size: 12px;
    line-height: 18px;
  }
}

/* ================= CART END ================= */

/* ================= CHANGE BOX SIZE MODAL START ================= */

.cbx-wrapper {
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 30px;
  padding-right: 25px;
}

.cbx-open-btn {
  padding: 12px 22px;
  background: #1f3b66;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.cbx-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 99999;
}

.cbx-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

/* active state */
.cbx-overlay.cbx-active {
  opacity: 1;
  visibility: visible;
}

.cbx-modal {
  width: 420px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.cbx-overlay.cbx-active .cbx-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.cbx-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 20px;
  border-bottom: 1px solid #eee;
}

.cbx-title {
  font-family: Manrope;
  font-weight: 500;
  color: black;
  font-size: 20.38px;

  line-height: 22.7px;
}

.cbx-close {
  cursor: pointer;
  font-size: 26px;
  color: #555;
}

.cbx-body {
  padding-top: 17px;

  padding-left: 20px;
  padding-right: 25px;
}

.cbx-body p {
  font-weight: 300;
  font-size: 11.32px;
  color: #4c4c4c;
  line-height: 15.96px;
  margin-bottom: 10px;
}

.cbx-desc {
  font-family: Manrope;
  font-weight: 500;
  font-size: 15.85px;
  line-height: 22.7px;
  margin-bottom: 15px;
}

.cbx-label {
  color: #26332f;
  font-family: Manrope;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 19.57px;
}

.cbx-input {
  width: 100%;
  height: 48px;
  border: 1px solid #d6d6d6;
  padding: 0px 12px;
  margin-bottom: 8px;
  border-radius: 7px;
  outline: none;
}

.cbx-option-group {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.cbx-option {
  width: 68px;
  height: 34px;
  opacity: 1;
  border-radius: 30px;
  border: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Manrope;
  font-weight: 700;
  font-size: 12.77px;
  color: #1f3f6d8f;
  cursor: pointer;
}

.cbx-option.cbx-selected {
  width: 68px;
  height: 34px;
  opacity: 1;
  border-radius: 30px;
  border: 1px solid #1f3f6d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Manrope;
  font-weight: 700;
  font-size: 12.77px;
  color: #1f3f6d;
  cursor: pointer;
}

.cbx-footer {
  padding: 20px;
  border-top: 1px solid #eee;
}

.cbx-update-btn {
  width: 100%;
  height: 51px;
  border: none;
  background: #1f3b66;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15.29px;
  line-height: 24.93px;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .cbx-modal {
    width: 331px;
  }
  .cbx-title {
    font-size: 18px;
    line-height: 22px;
  }
  .cbx-header {
    padding: 17px 22px;
  }
}

/* login page */


* {
  margin: 0;.field input
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
}

.font-manrope {
  font-family: "Manrope", sans-serif;
}
.login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f2f4;
}
.login-card {
  width: 374px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 17px 24px;
  width: 374px;
  height: auto;
  border-radius: 10px;
}

.login-title {
  font-weight: 800;
  color: #1f3f6d;
  font-size: 21px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.field {
  margin-bottom: 19px;
}

.field label {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -2%;
  color: #6e6e6e;
  display: block;
  margin-bottom: 9px;
}

.input-group {
  position: relative;
}

.field input {
  height: 42px;
  width: 100%;
  border: 1px solid #e0e5f2;
  border-radius: 12px;
  outline: none;
  padding: 0 18px;
  font-weight: 400;
  font-size: 12px;
  color: #1f3f6d;
}
.field input::placeholder {
  color: #a3aed0;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 11.08px;
  line-height: 100%;
  letter-spacing: -2%;
}

.toggle-pass {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 14px;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 26px;
}
.options label {
  font-family: DM Sans;
  font-weight: 400;
  color: #1f3f6d;
  font-size: 12px;
  line-height: 15.83px;
  letter-spacing: -2%;
  display: flex;
  align-items: center;
  gap: 6px;
}

.options a {
  font-family: DM Sans;
  font-weight: 500;
  color: #1f3f6d;
  font-size: 12px;
  line-height: 15.83px;
  letter-spacing: -2%;
  text-decoration: none;
}

button {
  width: 100%;
  height: 42px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 22.02px;
  letter-spacing: 0%;
}

button:disabled {
  background: #b8c1cf;
  cursor: not-allowed;
  color: #fff;
}

button.active {
  background: #1f3f6d;
  color: white;
}

.signup {
  text-align: center;
  margin-top: 20px;
}

.signup span {
  font-weight: 400;
  font-size: 12px;
  line-height: 20.58px;
  letter-spacing: -2%;
  color: #535353;
}

.signup a {
  font-weight: 700;
  font-size: 12px;
  color: #1f3f6d;
  line-height: 20.58px;
  letter-spacing: -2%;
  text-decoration: none;
}
@media (max-width: 600px) {
  .login-card {
    width: 331px;
  }
}

/* plan page */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

body {
  background: white;
  color: #1f2937;
  /* padding: 0 15px; */
}
.font-inter {
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 950px;
  margin: auto;
}

.section-title {
  font-family: Manrope;
  font-weight: 800;
  color: #1f3f6d;
  font-size: 21px;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.plan-wrapper {
  display: grid;
  grid-template-columns: 1fr 381px;
  gap: 27px;
  max-width: 925px;
  padding: 0px 20px;
}

.meal-image {
  width: 100%;
  border-radius: 10px;
}
/* .meal-image img {
  opacity: 0;
  transform: translateX(-100px);
} */

.plan-card {
  padding: 17px 18px;
  border-radius: 8px;
  border: 1px solid #dedede;
  /* opacity: 0;
  transform: translateX(100px); */
}

.plan-card h4 {
  color: #26332f;
  font-family: Manrope;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 12.29px;
  line-height: 19.57px;
}

.plan-card p.small {
  font-weight: 300;
  font-size: 10px !important;
  line-height: 14.1px;
  color: #4c4c4c;
}

.field input {
  width: 100%;
  height: 43px;
  border-radius: 5.64px;
  border: 1px solid #d6d6d6;
  padding: 0 15px;
  color: #959595;
  outline: none;
  margin: 8px 0;
}

.button-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.button-group button {
  width: 65px;
  height: 29px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #1f3f6d8f;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.button-group button.active {
  color: #1f3f6d;
  border: 1px solid #1f3f6d;
}

.radio-group {
  margin: 15px 0;
}

.radio-option {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  align-items: start;
}

.radio-option input {
  margin-top: 4px;
}

.radio-option span {
  font-size: 14px;
  font-weight: 600;
}
.radio-option input[type="radio"] {
  width: 12px;
  height: 12px;
  accent-color: #1f3f6d;
  cursor: pointer;
}

.badge {
  background: #d9e1ff;
  color: #1f3f6d;
  padding: 6px;
  font-size: 7px !important;
  border-radius: 4px;
  font-weight: 400;
  border-radius: 13px;
  margin-left: 5px;
}
.small {
  font-family: Inter;
  font-size: 12px !important;
  color: #6d7874;
  line-height: 15px;
  display: inline-block;
}





.btn-wrapper {
  display: flex !important;
  align-items: center !important;
  /* position: relative !important; */
  transition: all ease-in-out !important;
  transition-duration: 0.6s !important;
  margin-top: 15px !important;
}

.price-btn {
 
  padding: 11px 20px !important;
  border: none !important;
  background: #1f3f6d !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  border-radius: 0;
  border-bottom-left-radius: 4px !important;
  border-top-left-radius: 4px !important;
  line-height: 20px !important;
  position: relative !important;
  z-index: 1 !important;
  transition: all 0.4s ease-in-out !important;
  box-shadow: 0px 6px 50px 0px rgba(37, 37, 37, 0.05) !important;
  width: 40%;
}

.price-btn::after {
  content: "" !important;
  position: absolute !important;
  left: auto !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 100% !important;
  width: 0 !important;
  border-bottom-left-radius: 4px !important;
  border-top-left-radius: 4px !important;
  background: #58759e !important;
  z-index: -1 !important;
  transition: width 400ms cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.price-btn:hover {
  color: white !important;
}

.price-btn:hover::after {
  width: 100% !important;
  left: 0 !important;
  right: auto !important;
}

@media (max-width: 600px) {
  .plan-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* prevent horizontal scroll */
    box-sizing: border-box;
  }

  .plan-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .btn-wrapper button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .field input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .plan-wrapper * {
    max-width: 100%;
    box-sizing: border-box;
  }
  .global-btn{
    border-radius: 4px !important;
   
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .price-btn{
    border-radius: 4px !important;

    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
}



.global-btn {

  padding: 11px 20px !important;
  border: none !important;
  background: #1f3f6d !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  border-radius: 0;
  border-bottom-right-radius: 4px !important;
  border-top-right-radius: 4px !important;
  line-height: 20px !important;
  position: relative !important;
  z-index: 1 !important;
  transition: all 0.4s ease-in-out !important;
  box-shadow: 0px 6px 50px 0px rgba(37, 37, 37, 0.05) !important;
  width: 60%;
}

.global-btn::after {
  content: "" !important;
  position: absolute !important;
  left: auto !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 100% !important;
  width: 0 !important;
  border-bottom-right-radius: 4px !important;
  border-top-right-radius: 4px !important;
  background: #58759e !important;
  z-index: -1 !important;
  transition: width 400ms cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.global-btn:hover {
  color: white !important;
}

.global-btn:hover::after {
  width: 100% !important;
  left: 0 !important;
  right: auto !important;
}

.btn-wrapper a {

  padding: 11px 8px !important;
  padding-right: 37px !important;
  font-size: 12px !important;
  border: none !important;
  background: #1f3f6d !important;
  color: #fff !important;
  font-weight: 600 !important;
  line-height: 20px !important;
  cursor: pointer !important;
  border-bottom-right-radius: 4px !important;
  border-top-right-radius: 4px !important;
  text-decoration: none !important;
  position: relative !important;
  z-index: 1 !important;
  transition: all 0.4s ease-in-out !important;
  box-shadow: 0px 6px 50px 0px rgba(37, 37, 37, 0.05) !important;
  width: 60%;
}

.btn-wrapper a::after {
  content: "" !important;
  position: absolute !important;
  left: auto !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 100% !important;
  width: 0 !important;
  border-bottom-right-radius: 4px !important;
  border-top-right-radius: 4px !important;
  background: #58759e !important;
  z-index: -1 !important;
  transition: width 400ms cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.btn-wrapper a:hover {
  color: white !important;
}

.btn-wrapper a:hover::after {
  width: 100% !important;
  left: 0 !important;
  right: auto !important;
}

.faq-section {
  margin-top: 60px;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 39px;
}

.faq-header h3 {
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 23.86px;
  text-align: center;
  color: #1f3f6d;
}

.view-more {
  border: 1px solid #1F3F6D;
  background: #fff;
  padding: 10px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 10.81px;
  line-height: 17.29px;
  color: #1f3f6d;
  display: flex;
  gap: 18px;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden; /* important */
  transition: all 0.4s ease-in-out;
  box-shadow: 0px 6px 50px 0px rgba(37, 37, 37, 0.05);
  width: 115px;
}

.view-more::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 0;
  background: #1f3f6d;
  z-index: -1;
  transition: width 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.view-more:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.view-more:hover {
  color: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.faq-item h5 {
  font-family: Manrope;
  font-weight: 700;
  font-size: 12.68px;
  line-height: 20.88px;
  margin-bottom: 5px;
}

.faq-item p {
  font-family: Manrope;
  font-weight: 300;
  font-size: 12px;
  line-height: 17.9px;
  color: #000000;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .plan-wrapper {
    grid-template-columns: 1fr;
    padding: 0px;
    overflow: hidden;
  }
  .meal-image {
    order: 2;
  }
  .plan-card {
    padding: 15px 16px;
  }
  .price-btn {
    padding: 11px 32px;
  }
  .field input {
    width: 100%;
  }
  .btn-wrapper a {
    padding-right: 17px;
  }
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-header h3 {
    font-size: 16px;
  }
  .view-more {
    padding: 8px 9px;
    gap: 6px;
  }
  .section-title {
    font-size: 18px;
    margin-bottom: 13px;
  }
}


button.empty:disabled {
  background: transparent;
  color: #1F3F6D;
  height: 50px
}

span.error-message {
  color: red;
  font-size: 12px;
}