/* ================= FONT ================= */
@font-face {
  font-family: "HelveticaCustom";
  src: url("../fonts/Helvetica-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "HelveticaCustom";
  src: url("../fonts/Helvetica-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "HelveticaCustom";
  src: url("../fonts/Helvetica-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "HelveticaCustom", Helvetica, Arial, sans-serif;

  /* -webkit-user-select: none; 
  -moz-user-select: none; 
  -ms-user-select: none; 
  user-select: none; */
}

body {
  background: #fff;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
}
/* ================= GLOBAL PAGE SYSTEM ================= */
/* 👇 YE SABSE IMPORTANT HAI */
.page {
  width: 100%;
}

.page-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */
.site-header {
  padding: 24px 0;
  position: relative;
  z-index: 1000;
}

.nav-menu {
  z-index: 1100;
}

.hero-section {
  position: relative;
  z-index: 1;
}

.header-box {
  background: #f7f7f7;
  border-radius: 16px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo span {
  background: #fc0f47;
  color: #fff;
  padding: 2px 7px;
  border-radius: 6px;
  margin: 0 2px;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  text-decoration: none;
  font-size: 13px;
  color: #555;
  letter-spacing: 0.5px;
}

.divider {
  width: 1px;
  height: 24px;
  background: #ccc;
}

.donate-btn {
  background: #fc0f47;
  color: #fff !important;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 13px;
}

.menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ================= HERO ================= */
/* .hero-section {
  margin-top: 20px;
} */

.hero-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
}

.hero-slide img {
  width: 100%;
  height: 445px;
  object-fit: fill;
  display: block;
}

/* Dots */
.hero-dots {
  display: block;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
}

.hero-dots span.active {
  background: #fc0f47;
}

/* ================= MOST SUPPORTED MEALS ================= */
.meals-section {
  margin-top: 48px;
}

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

.meals-header h2 {
  font-size: 36px;
  font-weight: 400;
  color: #363636;
}

.see-all {
  /* color: #FC0F47;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700; */
  height: 28px;
  width: 103px;
}

/* Cards container */
.meals-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.meal-card {
  min-width: 240px;
}

.meal-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
}

.meal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* + button */
.add-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px;
  border-radius: 5px;
}

/* Text */
.serves {
  display: inline-block;
  margin-top: 10px;
  background: #f3f3f3;
  color: #828282;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 400;
}

.meal-card h4 {
  font-size: 18px;
  margin: 8px 0;
  font-weight: 400;
  height: 40px;
  font-weight: 400;
  color: #000000;
}

.price {
  font-weight: 700;
  font-size: 20px;
  color: #363636;
}

/* ================= CELEBRATE SECTION ================= */
.celebrate-section {
  margin-top: 48px;
}

/* ---------- WEB ---------- */
.celebrate-web {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 48px;
  border-radius: 20px;
  background: url("../images/celebrate_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  cursor: pointer;
}

.celebrate-content {
  max-width: 420px;
}

.celebrate-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.celebrate-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 300;
}

.celebrate-btn {
  background: #fff;
  color: #fc0f47;
  padding: 12px 24px;
  border-radius: 6px;
  /* font-weight: 700; */
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
}

/* Right grid */
.celebrate-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap: 50px; */
  row-gap: 20px;
  column-gap: 120px;
}

.celebrate-item {
  text-align: center;
}

.icon-circle {
  width: 50px;
  height: 50px;
  /* background: #fff;
  color: #FC0F47; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 10px;
}

.celebrate-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 400;
}

.celebrate-item span {
  font-size: 13px;
  opacity: 0.9;
  font-weight: 400;
}

/* ---------- APP ---------- */
.celebrate-app {
  display: none;
}

.celebrate-app h2 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 700;
}

.celebrate-app-card {
  background: #fafafa;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
}

.app-item {
  text-align: center;
  position: relative;
}

.app-item p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
}

/* New badge */
.new-badge {
  position: absolute;
  top: -10px;
  right: 10px;
  left: 10px;
  background: #fc0f47;
  color: #fff;
  font-size: 11px;
  padding: 4px 14px;
  border-radius: 10px;
}

/* ================= MONTHLY MEAL (ACCURATE) ================= */
.monthly-section {
  margin-top: 48px;
}

.section-title {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #363636;
}

.monthly-card {
  position: relative;
  background: #f7f7f7;
  border-radius: 12px;
  padding: 32px;
}

/* ===== EXACT TAX BADGE ===== */
.tax-badge {
  position: absolute;
  top: -4px; /* ⬅ slightly outside card */
  right: 36px;
  background: url("../images/tax-bg.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 27px;
  width: 145px;
}

/* Heading */
.monthly-heading {
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 12px;
}

.monthly-desc {
  font-size: 15px;
  margin-bottom: 32px;
  max-width: 520px;
  font-weight: 400;
  color: #404040;
}

/* Images */
.monthly-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 45px;
}

.monthly-img {
  position: relative;
  overflow: hidden;
}

.monthly-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.monthly-img span {
  position: absolute;
  left: 16px;
  /* bottom: 28px; */
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  top: 136px;
}

/* Footer */
.monthly-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-text {
  font-size: 16px;
  color: #828282;
  font-weight: 400;
}

.price-text strong {
  font-size: 24px;
  color: #000;
  margin-left: 10px;
  font-weight: 700;
}

.monthly-btn {
  background: #fc0f47;
  color: #fff;
  padding: 17px 58px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}

.arrow-icon {
  /* width: 16px;
  height: 16px; */
  /* padding-top: 3px; */
  padding-left: 10px;
  position: absolute;
  align-self: center;
}

/* ---------book meal */
/* ================= HOW TO BOOK ================= */
.how-section {
  margin-top: 48px;
}

.how-title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 32px;
}

/* ---------- WEB ---------- */
.how-web {
  display: block;
}

.how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.how-card {
  background: #f7f7f7;
  border: 1px solid #f6c1c7;
  border-radius: 8px;
  padding: 24px;
}

.how-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.how-card h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #1c1c1c;
}

.how-card p {
  font-size: 12px;
  color: #828282;
  line-height: 1.6;
  font-weight: 400;
}

.how-btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.how-btn {
  background: #fc0f47;
  color: #fff;
  padding: 17px 58px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
  text-decoration: none;
}

/* ---------- APP ---------- */
.how-app {
  display: none;
}

.how-app-card {
  background: #fafafa;
  border-radius: 16px;
  padding: 16px;
}

.how-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.how-row img {
  width: 60px;
  height: 60px;
  /* flex-shrink: 0; */
}

.how-row div h4 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
}

.how-row p {
  font-size: 12px;
  color: #828282;
  line-height: 1.5;
}

.divider-line {
  height: 1px;
  background: #e5e5e5;
  margin: 16px 0;
}

.how-btn.full {
  width: 100%;
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  padding: 11px;
}

/* ================= DONORS ================= */
.donors-section {
  margin-top: 48px;
}

.donors-title {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 50px;
}

/* Cards wrapper */
.donors-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0px 20px;
}

/* Card */
.donor-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px 24px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  margin: 2px;
}

.donor-card-main {
  border-radius: 8px;
  text-align: center;
  margin: 2px;
}

/* Profile image */
.donor-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
}

.feed-rw-img {
  margin-bottom: -35px;
}

/* Text */
.donor-card p {
  font-size: 12px;
  line-height: 1.6;
  color: #828282;
  font-weight: 400;
}

.donor-name {
  font-size: 16px;
  color: #363636;
  font-weight: 400;
  margin-top: 13px;
}

.donor-rv-time {
  font-size: 12px;
  color: #828282;
  font-weight: 400;
  margin-top: 2px;
}

.feed-rw-p p {
  font-size: 15px;
  margin-top: 20px;
}

/* ================= FOOTER ================= */
.site-footer {
  margin-top: 70px;
}

/* Top section */
.footer-top {
  background: #f8f8f8;
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo span {
  background: #fc0f47;
  color: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  margin: 0 2px;
}

.footer-about p {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #888;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Social */
.footer-social {
  display: flex;
}

.footer-social span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
}

/* Bottom bar */
.footer-bottom {
  background: #fc0f47;
  color: #fff;
  text-align: center;
  padding: 14px 10px;
  font-size: 12px;
}

/* ================= Meal LIST ================= */
/* ================= THALI LIST ================= */

/* FULL WIDTH WRAPPER */
.page-inner-full {
  /* width: 100%; */
  /* padding: 0px; */
  margin-top: 0px;
}

/* FILTERS */
.ml-thali-filters img {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 20px;
  width: 40%;
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
  pointer-events: auto;
}

/* .ml-filter,
.ml-filter-tag {
  border: 1px solid #ddd;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: #666;
} */

/* TITLE */
.ml-thali-title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #363636;
}

/* ITEM ROW */
.ml-thali-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 0 50px 0;
  align-items: center;
}

/* LEFT INFO */
.ml-thali-info {
  max-width: 60%;
}

.ml-thali-info h4 {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #363636;
}

.ml-price {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 400;
  color: #363636;
}

.ml-thali-info p {
  font-size: 16px;
  font-weight: 400;
  color: #828282;
  line-height: 1.5;
  margin-bottom: 10px;
}

.ml-serves {
  display: inline-block;
  border: 1px solid #ddd;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 16px;
  color: #828282;
  font-weight: 400;
}

/* RIGHT IMAGE */
.ml-thali-image {
  position: relative;
  width: 192px;
}

.ml-thali-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
  height: 192px;
  object-fit: fill;
}

/* ADD BUTTON */
.ml-add-btn {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%) translateY(50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  /* background: #ffe9ed;
  color: #fc0f47; */
  /* border: 1px solid #fc0f47; */
  /* padding: 8px 24px; */
  /* border-radius: 7px;
  font-size: 14px;
  font-weight: 600; */
}

.added-cart {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%) translateY(50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 6px 0px;
  border-radius: 6.44px;
  border: 1px solid #e6e6e6;
}

.added-index-cart {
  position: absolute;
  right: 10px;
  top: 10px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0px;
  background: #fff;
  padding: 3px 0px;
  border-radius: 6.44px;
  border: 1px solid #e6e6e6;
}

/* DIVIDER */
.ml-divider {
  height: 1px;
  background: #eee;
  width: 100%;
}

/* ================= TERMS PAGE ================= */
.tm-terms-section {
  width: 100%;
  margin-top: 48px;
}

.tm-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 24px;
}

.tm-disclaimer {
  font-size: 16px;
  color: #999;
  line-height: 1.3;
  margin-bottom: 20px;
  margin-left: 30px;
}

.tm-text {
  font-size: 16px;
  color: grey;
  line-height: 1.3;
  margin-bottom: 16px;
  margin-left: 30px;
}

.tm-date {
  font-size: 16px;
  color: #363636;
  margin-bottom: 40px;
  margin-left: 30px;
}

.tm-heading {
  font-size: 30px;
  margin: 40px 0 22px;
  font-weight: 400;
}

.tm-list {
  padding-left: 12px;
  margin-bottom: 20px;
  margin-left: 30px;
}

.tm-list li {
  font-size: 16px;
  color: grey;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* =====privacy policy */
/* ================= PRIVACY POLICY ================= */
.pp-wrapper {
  width: 100%;
  margin-top: 48px;
}

.pp-main-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 24px;
}

.pp-section-title {
  font-size: 30px;
  font-weight: 400;
  margin: 40px 0 22px;
}

.pp-subtext {
  font-size: 16px;
  color: grey;
  margin-bottom: 12px;
  margin-left: 30px;
}

.pp-paragraph {
  font-size: 16px;
  color: grey;
  line-height: 1.3;
  margin-left: 30px;
}

.pp-list {
  margin-left: 50px;
  margin-bottom: 20px;
}

.pp-list li {
  font-size: 14px;
  color: #828282;
  line-height: 1.8;
}

/* =======FAQ */
/* ================= FAQ ================= */
.faq-wrapper {
  width: 100%;
  margin-top: 48px;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 32px;
}

.faq-item {
  background: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #363636;
}

/* DIVIDER */
.faq-divider {
  height: 1px;
  background: #e9e9e9;
  width: 100%;
  margin-bottom: 15px;
}

.faq-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: #828282;
  line-height: 1.7;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 16px;
}

/* =====contact us===== */
/* ================= CONTACT US ================= */
.cu-wrapper {
  width: 100%;
  margin-top: 24px;
  padding-bottom: 200px;
}

.cu-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #363636;
}

.cu-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cu-card {
  background: #eef4f7;
  border-radius: 24px;
  padding: 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cu-card-content {
  max-width: 80%;
}

.cu-card-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #1c1c1c;
}

.cu-subtitle {
  font-size: 20px;
  font-weight: 400;
  margin-top: 16px;
  margin-bottom: 4px;
  color: #1c1c1c;
}

.cu-card-text {
  font-size: 14px;
  color: #828282;
  line-height: 1.6;
  font-weight: 400;
  text-decoration: none;
}

.cu-card-icon {
  width: 62px;
  height: 62px;
}

/* ======about us */
.au-about {
  margin-top: 48px;
}

.au-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 90px;
  margin-bottom: 48px;
}

.au-reverse {
  flex-direction: row-reverse;
}

.au-content {
  flex: 1;
}

.au-title {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 32px;
}

.au-text {
  font-size: 16px;
  color: #828282;
  line-height: 1.3;
  margin-bottom: 14px;
  margin-left: 32px;
  font-weight: 400;
}

.au-subtext {
  font-size: 16px;
  color: #363636;
  margin: 16px 0 24px;
  margin-left: 32px;
  font-weight: 400;
}

.au-list {
  padding-left: 18px;
  margin-bottom: 14px;
  margin-left: 32px;
}

.au-list li {
  font-size: 16px;
  color: #828282;
  line-height: 1.5;
  margin-bottom: 8px;
  font-weight: 400;
}

.au-strong {
  font-size: 16px;
  color: #363636;
  margin-top: 10px;
  margin-left: 32px;
  font-weight: 400;
}

.au-image-wrap {
  flex: 0.65;
}

.au-image {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

/* ==========Apply for Tax Benefit================= */
/* ====== WRAPPER ====== */
.at-tax-wrapper {
  margin-top: 48px;
}

/* ====== CHECKLIST ====== */
.at-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 48px;
}

.at-checklist li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #828282;
}

.at-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #fc0f47;
  font-weight: 700;
}

/* ====== FORM OUTER ====== */
.at-form-outer {
  background: #f7f7f7;
  border-radius: 24px;
  padding: 48px 20px;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

/* ====== FORM CARD ====== */
.at-form-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 32px;
  width: 100%;
  max-width: 552px;
}

/* ====== FORM TITLE ====== */
.at-form-title {
  font-size: 16px;
  margin-bottom: 24px;
  font-weight: 500;
}

/* ====== FORM ====== */
.at-form {
  display: flex;
  flex-direction: column;
}

/* ====== INPUT ====== */
.at-input {
  border: none;
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 0px;
  margin-bottom: 6px;
  font-size: 14px;
  outline: none;
}

.at-input::placeholder {
  color: #828282;
}

/* ====== ROW (EMAIL + PAN) ====== */
.at-row {
  display: flex;
  gap: 20px;
}

.at-row .at-input {
  flex: 1;
}

/* ====== HELPER TEXT ====== */
.at-helper-text {
  font-size: 14px;
  color: #000000;
  margin: 10px 0 22px;
  font-weight: 400;
}

/* ====== SUBMIT BUTTON ====== */
.at-submit-btn {
  background: #fc0f47;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 11px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 400;
}

/* ====== NOTE SECTION ====== */

.at-note-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000000;
}

.at-note-text {
  font-size: 16px;
  color: #828282;
  margin-bottom: 24px;
  font-weight: 400;
}

.at-help-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000000;
}

.at-help-text {
  font-size: 16px;
  color: #fc0f47;
  font-weight: 400;
}

.at-help-text a {
  color: #fc0f47;
  text-decoration: none;
  font-weight: 400;
}

/* ========Families to survive=== */
.fs-hero-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.fs-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fs-hero-slide.active {
  opacity: 1;
  position: relative;
}

.fwp-hero-slide.active {
  opacity: 1;
  position: relative;
}

.fs-hero-slide img {
  width: 100%;
  height: 613px;
  object-fit: fill;
  display: block;
}

.fwp-hero-slide img {
  height: 510px;
  width: 100%;
  object-fit: fill;
  display: block;
}

/* Form absolute on WEB */
.fs-form-wrapper {
  position: absolute;
  top: 35px;
  right: 40px;
  width: 343px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  /* height: 533px; */
}

.fs-top-text {
  font-size: 12px;
  color: #828282;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 300;
}

/* Price tabs */
.fs-price-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.fs-price-tab {
  flex: 1;
  border: 1px solid #f7f7f7;
  border-radius: 8px;
  text-align: center;
  padding: 22px 6px;
  cursor: pointer;
  position: relative;
}

.fs-price-tab p {
  font-size: 16px;
  color: #363636;
  text-align: center;

  font-weight: 700;
}

.fs-price-tab span {
  font-size: 12px;
  color: #363636;
  text-align: center;
  font-weight: 400;
  margin-top: 6px;
}

.fs-price-tab.fs-active {
  border-color: #fc0f47;
}

.fs-check {
  position: absolute;
  top: -6px;
  right: -6px;
}

/* Inputs */
.fs-other-amount {
  width: 100%;
  border: 1px solid #ddd;
  padding: 11px 0;
  border-radius: 6px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 14px;
  outline-color: #fc0f47;
  /* outline: none; */
}

.fs-input-group {
  position: relative;
  border-bottom: 1px solid #ddd;
  display: flex;
  padding-top: 8px;
}

.fs-mobile-group .fs-input {
  padding-left: 6px;
}

/* Inputs */
.fs-input {
  width: 100%;
  border: none;
  padding: 8px 0;
  outline: none;
  font-size: 14px;
  font-weight: 300;
}

.fs-input::placeholder {
  color: #828282;
}

.fs-note {
  font-weight: 300;
  margin-top: 8px;
  margin-bottom: 16px;
  font-size: 12px;
  color: #828282;
}

/* Button */
.fs-donate-btn {
  width: 100%;
  background: #fc0f47;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

.fs-ok-btn {
  background: #fc0f47;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}

.fs-upi {
  /*justify-self: center;*/
  /*margin-top: 16px;*/
  /*margin-bottom: 8px;*/
  
  display: flex;              /* ✅ IMPORTANT */
  justify-content: center;    /* horizontal center */
  align-items: center;        /* vertical center */

  margin-top: 16px;
  margin-bottom: 8px;
  flex: 1;
}

.fs-terms {
  color: #363636;
  font-size: 10px;
  font-weight: 300;
  text-align: center;
}

.fs-survive-section {
  margin-top: 48px;
}

.fs-survive-box {
  background: #eef5fb;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  gap: 40px;
}

/* LEFT */
.fs-survive-left {
  flex: 0.5;
}

.fs-survive-title-web {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #363636;
  display: block;
}

.fs-survive-title-app {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #363636;
  display: none;
}

.fs-survive-desc {
  font-size: 16px;
  color: #828282;
  font-weight: 300;
}

/* RIGHT */
.fs-survive-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.fnc-survive-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 24px;
}

.fs-survive-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.fs-survive-item p {
  font-size: 15px;
  color: #363636;
  line-height: 1.4;
  font-weight: 400;
  width: 238px;
}

/* ICON */
.fs-survive-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fs-survive-icon img {
  width: 40px;
  height: 40px;
}

/* =======Partner with us======= */
.pwu-section {
  margin-top: 24px;
  margin-bottom: 48px;
}

.pwu-section-title,
.pwu-section-title-2 {
  font-size: 32px;
  font-weight: 400;
  color: #363636;
  margin-bottom: 24px;
}

.pwu-container {
  display: flex;
  align-items: flex-start;
  gap: 110px;
}

/* TEXT */
.pwu-content {
  flex: 1;
}

.pwu-text {
  font-size: 20px;
  line-height: 1.3;
  color: #828282;
  margin-bottom: 16px;
  font-weight: 300;
}

/* IMAGE */
.pwu-image-wrap {
  align-self: center;
  flex: 1.1;
}

.pwu-image {
  width: 100%;
  height: auto;
  display: block;
}

.pwu-helper-text {
  font-size: 16px;
  color: #363636;
  margin: 24px 0 10px;
  font-weight: 400;
}

/* ====== SUBMIT BUTTON ====== */
.pwu-submit-btn {
  background: #fc0f47;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 11px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 20px;
  font-weight: 400;
}

.pwu-help-title {
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #fc0f47;
}

.pwu-help-text {
  font-size: 32px;
  color: #828282;
  font-weight: 400;
}

.pwu-help-text a {
  color: #828282;
  text-decoration: none;
  font-weight: 400;
}

.pwu-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.pwu-hero-slide.active {
  opacity: 1;
  position: relative;
}

.pwu-hero-slide img {
  width: 100%;
  /* height: 556px; */
  object-fit: fill;
  display: block;
}

.pwu-flag-icon {
  position: absolute;
  align-self: center;
  margin-top: -7px;
}

.at-input.pwu-input {
  padding-left: 35px;
}

.form-error {
  font-size: 13px;
  margin-bottom: 10px;
  background: #fee2e2;
  color: #b91c1c;
  padding: 10px;
  border-radius: 6px;
  font-weight: 500;
  display: none;
}

.form-error2 {
  font-size: 13px;
  background: #fee2e2;
  color: #b91c1c;
  padding: 8px 10px;
  border-radius: 6px;
  font-weight: 500;
  display: none;
  margin-top: 10px;
}

.at-input.error {
  border-color: #e11d48;
}

.form-success {
  margin-top: 15px;
  font-size: 14px;
  color: #16a34a;
}

.btn-loader {
  font-size: 14px;
}

.pwu-submit-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.fs-donate-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

/* ====add to cart button==== */
.cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1ca672;
  color: #fff;
  padding: 7px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  z-index: 9999;
  font-weight: 300;
  /* width: 1140px;
  max-width: calc(100%);
  left: 50%;
  transform: translateX(-50%); */
}

.view-cart-btn {
  padding: 7px 18px;
  margin-top: 2px;
  text-decoration: none;
}

.view-cart-icon {
  height: 24px;
  width: 143px;
}

/* ========Cart================================== */
.ct-container {
  max-width: 552px;
  margin: auto;
  padding: 0 20px;
}

/* FOOD BOX */
.ct-food-box {
  background: #eef6f9;
  border-radius: 8px;
  padding: 10px 24px;
}

.ct-food-box2 {
  background: #eef6f9;
  border-radius: 8px;
  padding: 3px 24px;
  margin-top: 5px;
}

.ct-food-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  /* margin-bottom: 20px; */
}

.ct-food-inside-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 320px;
  /* margin-bottom: 20px; */
}

.ct-food-inside-row2 {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 315px;
  /* margin-bottom: 20px; */
}

.ct-food-type {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}
.ct-food-type.veg {
  border: 2px solid #28a745;
}
.ct-food-type.egg {
  border: 2px solid #dc3545;
}

.ct-food-name {
  flex: 1;
  font-size: 18px;
  font-weight: 400;
  color: #363636;
}

.ct-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 6px 0px;
  border-radius: 6.44px;
  border: 1px solid #e6e6e6;
}

.ct-plus {
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  color: #fc0f47;
  padding-left: 5px;
  padding-right: 10px;
}

.ct-minus {
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  color: #fc0f47;
  padding-left: 10px;
  padding-right: 5px;
}

.ct-count {
  font-size: 16px;
  font-weight: 400;
  color: #828282;
  width: 20px;
  text-align: center;
}

.ct-price {
  font-size: 18px;
  font-weight: 400;
  color: #363636;
  width: 45px;
}

/* EXTRA */
.ct-extra-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  margin-top: 16px;
  border: 1px solid #e6e6e6;
}

.ct-extra-item img {
  width: 64px;
  border-radius: 8px;
}

.ct-extra-title {
  font-size: 18px;
  font-weight: 400;
  color: #363636;
}

.ct-extra-sub {
  font-size: 15px;
  font-weight: 300;
  color: #828282;
}

.ct-add-btn {
  margin-left: auto;
  cursor: pointer;
}

/* FORM */
.ct-form {
  background: #f7f7f7;
  padding: 5px 20px 20px 24px;
  border-radius: 16px;
  margin-top: 24px;
}

.ct-form input {
  background: #f7f7f7;
}

/* MONTHLY */
.ct-monthly {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 16px 0;
  font-size: 12px;
  color: #363636;
  font-weight: 400;
}

.ct-uncheck {
  width: 18px;
  height: 18px;
  border: 2px solid #fc0f47;
  border-radius: 50%;
}

.ct-check {
  width: 20px;
  height: 20px;
}

/* PAY */
.ct-pay-btn {
  width: 100%;
  background: #fc0f47;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 400;
}

/* ============popup========== */
.payment-success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.payment-success-box {
  text-align: center;
  font-weight: 400;
  color: #363636;
  background: rgb(237, 236, 236);
  padding: 40px 100px;
  border-radius: 10px;
}

.success-icon {
  width: 90px;
  margin-bottom: 15px;
}

.redirect-text {
  opacity: 0.7;
  margin-top: 8px;
  font-weight: 400;
  color: #363636;
}

.btn-loader {
  width: 26px;
  height: 26px;
  border: 3px solid #ddd;
  border-top: 3px solid #e63946;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .page-inner {
    padding: 0 16px;
  }

  .header-box {
    height: 60px;
    border-radius: 12px;
    padding: 0 16px;
  }

  .logo {
    height: 28px;
    width: 162px;
  }

  .site-header {
    padding-top: 24px;
    padding-bottom: 1px;
  }

  .nav-menu {
    position: absolute;
    top: 90px;
    left: 16px;
    right: 16px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    flex-direction: column;
    gap: 16px;
    box-shadow: 10px 30px rgba(0, 0, 0, 0.08);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .divider {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .hero-section {
    margin-top: 20px;
  }

  .hero-slide {
    border-radius: 16px;
    height: auto;
    width: 100%;
  }

  .hero-slide img {
    height: 100%;
    width: 100%;
    object-fit: fill;
  }

  /* Dots */
  .hero-dots {
    display: flex;
    margin-top: 10px;
  }

  /* ================= MOST SUPPORTED MEALS (MOBILE) ================= */
  .meals-section {
    margin-top: 24px;
  }

  .meals-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ✅ FIXED 3 */
    gap: 12px;
    overflow: hidden; /* ❌ no scroll */
  }

  /* ❌ 4th item hide completely */
  .meal-card:nth-child(n + 4) {
    display: none;
  }

  .meal-card {
    min-width: auto; /* ❌ remove horizontal size issue */
  }

  .meal-img {
    width: 100%;
    height: 110px;
    border-radius: 12px;
  }

  .meal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .meals-header h2 {
    font-size: 16px;
    font-weight: 700;
  }

  .see-all {
    height: 16px;
    width: 58px;
  }

  /* + button */
  .add-btn {
    height: 28px;
    width: 28px;
    top: 8px;
    right: 8px;
  }

  .meal-card h4 {
    font-size: 14px;
    margin: 6px 0;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
  }

  .price {
    font-size: 14px;
    font-weight: 700;
  }

  /* ================= CELEBRATE SECTION ================= */
  .celebrate-section {
    margin-top: 24px;
  }

  .celebrate-web {
    display: none;
  }

  .celebrate-app {
    display: block;
  }

  .icon-circle {
    width: 66px;
    height: 66px;
  }

  /* ------month */

  .monthly-section {
    margin-top: 24px;
  }

  .section-title {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
  }

  .monthly-card {
    padding: 20px;
    background: #f7f7f7;
  }

  .tax-badge {
    top: -4px;
    right: 16px;
    height: 20px;
    width: 108px;
  }

  .monthly-heading {
    font-size: 16px;
    margin-top: 15px;
    font-weight: 400;
    color: #363636;
  }

  .monthly-desc {
    display: none;
  }

  .monthly-images {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    margin-bottom: 16px;
  }

  .monthly-images::-webkit-scrollbar {
    display: none;
  }

  .monthly-img {
    min-width: 192px;
  }

  .monthly-img img {
    height: 156px;
    border-radius: 8px;
  }

  .monthly-img span {
    top: 100px;
    font-weight: 400;
    font-size: 16px;
  }

  .monthly-footer {
    /* flex-direction: column;
    align-items: flex-start; */
    gap: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .price-text {
    display: block;
    font-size: 12px;
    display: grid;
    font-weight: 400;
  }

  .price-text strong {
    font-size: 18px;
    margin: 0px;
    line-height: 1.6;
    font-weight: 700;
  }

  .monthly-btn {
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
  }

  .monthly-btn img {
    display: none;
  }

  /* ------book a meal */
  .how-web {
    display: none;
  }

  .how-section {
    margin-top: 24px;
  }

  .how-app {
    display: block;
  }

  .how-title {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
  }

  .how-row h4 {
    font-size: 14px;
    font-weight: 400;
  }

  .how-row p {
    font-size: 12px;
    font-weight: 400;
  }

  /* ----donor say */
  .donors-section {
    margin-top: 24px;
  }

  .donors-title {
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 700;
  }

  .donors-list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin: 0px;
  }

  .donors-list::-webkit-scrollbar {
    display: none;
  }

  .donor-card {
    min-width: 260px;
    padding: 16px 16px;
  }

  /* ================= FOOTER ================= */
  .site-footer {
    margin-top: 40px;
  }

  .footer-logo {
    width: 162px;
    /* height: 28px; */
  }

  .footer-top {
    padding: 30px 0px 20px 0px;
  }

  .footer-grid {
    grid-template-columns: 1fr 2fr;
    gap: 22px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-col h4 {
    font-size: 16px;
    font-weight: 400;
    color: #1c1c1c;
  }

  .footer-col p {
    font-size: 12px;
    font-weight: 400;
    color: #828282;
  }

  .footer-social {
    margin-top: 10px;
    gap: 10px;
  }

  .footer-social span {
    width: 24px;
    height: 24px;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 16px 10px;
  }

  /* =========meal-list meals */
  .page-inner-full {
    /* padding: 0 0px; */
    margin-top: 24px;
  }

  /* FILTERS */
  .ml-thali-filters img {
    width: 100%;
  }

  .ml-thali-title {
    font-size: 18px;
  }

  .ml-thali-item {
    align-items: center;
  }

  .ml-thali-info {
    max-width: 45%;
  }

  .ml-serves {
    font-size: 12px;
  }

  .ml-thali-image {
    width: 160px;
  }

  .ml-thali-image img {
    border-radius: 14px;
  }

  .ml-thali-info h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .ml-price {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .ml-thali-info p {
    font-size: 12px;
    margin-bottom: 12px;
  }

  /* RIGHT IMAGE */
  .ml-thali-image {
    position: relative;
    width: 166px;
  }

  .ml-thali-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
    height: 166px;
    object-fit: fill;
  }

  /* ============Term condition */
  .tm-terms-section {
    margin-top: 24px;
  }
  .tm-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .tm-heading {
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: 12px;
  }

  .tm-disclaimer {
    font-size: 12px;
    margin-left: 12px;
    margin-bottom: 12px;
  }

  .tm-text {
    font-size: 12px;
    margin-left: 12px;
  }

  .tm-date {
    font-size: 12px;
    margin-left: 12px;
  }

  .tm-list {
    margin-left: 12px;
  }

  .tm-list li {
    font-size: 12px;
  }

  /* =====privacy policy */

  .pp-wrapper {
    margin-top: 24px;
  }

  .pp-main-title {
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: 12px;
  }

  .pp-section-title {
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: 12px;
  }

  .pp-paragraph,
  .pp-subtext {
    font-size: 12px;
    margin-left: 12px;
  }

  .pp-list {
    font-size: 12px;
    margin-left: 12px;
  }

  .pp-list li {
    font-size: 12px;
    margin-left: 12px;
  }

  /* =======FAQ */

  .faq-wrapper {
    margin-top: 24px;
  }

  .faq-title {
    font-size: 16px;
    text-align: left;
    margin-top: 24px;
    margin-bottom: 12px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px;
  }

  .faq-answer {
    font-size: 13px;
  }

  /* =====contact us===== */

  .cu-wrapper {
    margin-top: 24px;
    padding-bottom: 0px;
  }

  .cu-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .cu-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cu-card {
    padding: 20px;
    border-radius: 8px;
  }

  .cu-card-title {
    font-size: 16px;
  }

  .cu-subtitle {
    font-size: 16px;
  }

  .cu-card-text {
    font-size: 14px;
  }

  .cu-card-icon {
    width: 42px;
    height: 42px;
  }

  /* ======about us */
  .au-about {
    margin-top: 24px;
    padding-bottom: 0px;
  }

  .au-row,
  .au-reverse {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }

  .au-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .au-text,
  .au-strong {
    font-size: 12px;
    margin-left: 12px;
  }

  .au-subtext {
    font-size: 12px;
    margin-left: 12px;
    margin-bottom: 12px;
  }

  .au-list {
    margin-left: 5px;
  }
  .au-list li {
    font-size: 12px;
  }

  .au-image-wrap {
    width: 100%;
  }
  .au-image {
    width: 100%;
    height: 180px;
  }

  /* ======apply for tax benefit */
  .at-tax-wrapper {
    margin-top: 24px;
  }

  .at-checklist {
    margin-bottom: 24px;
  }

  .at-checklist li {
    font-size: 14px;
  }

  .at-form-outer {
    padding: 0px;
  }

  .at-form-card {
    background: #f7f7f7;
    padding: 24px;
  }

  .at-form-title {
    margin-bottom: 10px;
  }

  .at-row {
    flex-direction: column;
    gap: 0;
  }

  .at-input {
    padding: 10px 0px;
    margin-bottom: 6px;
    background: #f7f7f7;
  }

  .at-helper-text {
    font-size: 14px;
    color: #000000;
    margin: 16px 0 24px;
    font-weight: 400;
  }

  /* =====Families survive== */
  .fs-hero-slide,
  .fwp-hero-slide {
    border-radius: 16px;
    height: auto;
    width: 100%;
  }

  .fs-hero-slide img {
    height: 100%;
    width: 100%;
    object-fit: fill;
  }

  .fwp-hero-slide img {
    height: 100%;
    width: 100%;
    object-fit: fill;
  }

  /* Form absolute on WEB */
  .fs-form-wrapper {
    position: static;
    width: 100%;
    background: #f7f7f7;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.15);
    margin-top: 24px;
  }

  .fs-input {
    background: #f7f7f7;
  }

  .fs-price-tab {
    background-color: white;
  }

  .fs-survive-section {
    margin-top: 24px;
  }

  .fs-survive-box {
    flex-direction: column;
    padding: 16px;
    border-radius: 8px;
    gap: 0px;
  }

  .fs-survive-title-web {
    display: none;
  }

  .fs-survive-title-app {
    font-size: 18px;
    display: block;
  }

  .fs-survive-desc {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .fs-survive-right {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fnc-survive-right {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fs-survive-icon img {
    width: 36px;
    height: 36px;
  }

  .fs-survive-item {
    gap: 10px;
  }

  .fs-survive-item p {
    width: auto;
  }

  /* =====partner with us=== */
  .pwu-section {
    margin-bottom: 8px;
  }

  .pwu-section-title {
    font-size: 18px;
    font-weight: 400;
    color: #363636;
    margin-bottom: 24px;
  }
  .pwu-section-title-2 {
    display: none;
  }

  .pwu-container {
    flex-direction: column;
    gap: 0px;
  }

  .pwu-title {
    font-size: 22px;
  }

  .pwu-text {
    font-size: 12px;
    line-height: 1.3;
    color: #828282;
    margin-bottom: 16px;
    font-weight: 400;
    padding: 0 12px;
  }

  .pwu-image-wrap {
    order: -1; /* image on top */
    margin-bottom: 16px;
  }

  .pwu-hero-slide {
    border-radius: 16px;
    height: auto;
    width: 100%;
  }

  .pwu-hero-slide img {
    height: 100%;
    width: 100%;
    object-fit: fill;
  }

  .pwu-help-title {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 2px;
    color: #363636;
  }

  .pwu-help-text {
    font-size: 14px;
    color: #828282;
    font-weight: 400;
  }
  .pwu-note-section {
    display: flex;
    background: #ecf3f8;
    padding: 16px;
    border-radius: 8px;
    gap: 12px;
    align-items: center;
    margin-top: -16px;
    margin-bottom: -10px;
  }

  .pwu-flag-icon {
    position: absolute;
    left: 40px;
    /* align-self:center; */
    margin-top: 12px;
  }

  /* ====add to cart button==== */
  .cart-bar {
    padding: 8px 18px;
    font-size: 14px;
  }

  .view-cart-btn {
    color: #fff;
    padding: 8px 0px;
  }

  .view-cart-icon {
    height: 20px;
    width: 102px;
  }

  /* ========Cart================================== */
  .ct-container {
    max-width: 100%;
    padding: 0 16px;
  }

  /* FOOD BOX */
  .ct-food-box {
    background: #eef6f9;
    border-radius: 8px;
    padding: 1px 12px;
  }

  .ct-food-box2 {
    padding: 1px 12px;
    margin-top: 8px;
  }

  .ct-food-inside-row2 {
    flex: 1;
    max-width: 215px;
    /* margin-bottom: 20px; */
  }

  .ct-food-row {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 0;
    /* margin-bottom: 20px; */
  }

  .ct-food-type-icon {
    width: 15px;
    height: 15px;
  }

  .ct-food-type {
    width: 18px;
    height: 18px;
    border-radius: 4px;
  }
  .ct-food-type.veg {
    border: 2px solid #28a745;
  }
  .ct-food-type.egg {
    border: 2px solid #dc3545;
  }

  .ct-food-name {
    flex: 1;
    font-size: 14px;
    font-weight: 400;
    color: #363636;
  }

  .ct-qty {
    gap: 10px;
    padding: 4px 0px;
  }

  .added-cart {
    gap: 10px;
    padding: 4px 0px;
  }

  .ct-count {
    font-size: 12px;
  }

  .ct-price {
    font-size: 14px;
    margin-left: 5px;
    width: 37px;
  }

  /* EXTRA */
  .ct-extra-item {
    gap: 8px;
    padding: 12px;
  }

  .ct-extra-item img {
    width: 56px;
    border-radius: 8px;
  }

  .ct-extra-title {
    font-size: 14px;
    font-weight: 400;
    color: #363636;
  }

  .ct-extra-sub {
    font-size: 12px;
    font-weight: 300;
    color: #828282;
  }

  .ct-add-btn {
    margin-left: auto;
    cursor: pointer;
  }

  /* FORM */
  .ct-form {
    background: #f7f7f7;
    padding: 5px 20px 20px 24px;
    border-radius: 16px;
    margin-top: 20px;
  }

  .ct-form input {
    background: #f7f7f7;
  }

  /* MONTHLY */
  .ct-monthly {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 12px 0;
    font-size: 12px;
    color: #363636;
    font-weight: 400;
  }

  .ct-uncheck {
    width: 18px;
    height: 18px;
    border: 2px solid #fc0f47;
    border-radius: 50%;
  }

  .ct-check {
    width: 20px;
    height: 20px;
  }

  /* PAY */
  .ct-pay-btn {
    width: 100%;
    background: #fc0f47;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
  }

  .payment-success-box {
    padding: 20px 20px;
    margin: 20px;
    font-size: 12px;
  }

  .success-icon {
    width: 60px;
    margin-bottom: 10px;
  }

  .redirect-text {
    font-size: 12px;
  }

  .donor-card-main h2 {
    display: none;
  }

  .feed-rw-p p {
    font-size: 12px;
    margin-top: 26px;
  }
}
