/* === HERO SECTION STYLES === */
.hero {
  position: fixed; /* Changed from relative to fixed */
  top: 0; /* Added for fixed positioning */
  left: 0; /* Added for fixed positioning */
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background: #0f172a; /* fallback background color */
  z-index: -1; /* Ensures it stays behind other content */
}

.hero::before {
  content: '';
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
  position: absolute;
  z-index: 2;
  inset: 0;
}

.hero iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 70vw;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

html, body {
  overflow-x: hidden; /* Prevents horizontal scrolling on the entire page */
}

/* fallback image for mobile or low bandwidth */
@media (max-width: 768px) {
  .hero iframe {
    display: none;
  }
  .hero {
    background: url('../img/hero-fallback.jpg') center/cover no-repeat;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 1rem 2rem;
  animation: fadeUp 1.2s ease-out;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 6rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.hero-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 2rem;
}

.hero-btn {
  display: inline-block;
  background: #ff5e57;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  transition: background 0.3s;
}

.hero-btn:hover {
  background: #ea580c;
}

.hero-mobile-bg {
  display: none;
}

/* Simple fadeUp animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .hero iframe {
    display: none !important;
  }

  .hero-mobile-bg {
    display: block;
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
  }

  .hero-img-mobile {
    display: block;
    object-fit: cover;
  }

  .hero::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.6));
  }
}

@media (max-width: 380px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-btn {
    margin-top: 0;
  }
}

.hero-video-desktop,
.hero-video-mobile {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 50vw;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

/* Show desktop video only on larger screens */
.hero-video-desktop {
  display: block;
}
.hero-video-mobile {
  display: none;
}

/* On small screens show mobile video instead */
@media (max-width: 768px) {
  .hero-video-desktop {
    display: none;
  }
  .hero-video-mobile {
    display: block;
    width: 100vw;
    height: 100vh;
  }
}

/* about */
.about-shree {
  background: linear-gradient(145deg, #fffdf9, #fff3e8);
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
  margin-top: 100vh; /* Added to push this section below the fixed hero section */
  position: relative; /* Ensure it creates a new stacking context */
  z-index: 1; /* Ensure it scrolls on top of the hero section */
}

.about-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.about-image {
  flex: 1 1 45%;
  text-align: center;
}
.about-image img {
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about-content {
  flex: 1 1 50%;
}

.about-heading {
  font-family: 'Baloo 2', cursive;
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 1rem;
}

.about-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f44336;
  margin-bottom: 1.2rem;
}

.about-text {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  color: #333;
}
.about-text .highlight {
  color: #ff5e57;
  font-weight: 600;
}

.about-list {
  margin: 1.5rem 0;
  padding-left: 1.2rem;
  list-style: none;
}
.about-list li {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #444;
}
.about-list li i {
  color: #ff5e57;
  font-size: 1.1rem;
}

.about-cta {
  display: inline-block;
  background: #ff5e57;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  transition: background 0.3s;
}
.about-cta:hover {
  background: #e84242;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-content {
    flex: 1 1 100%;
  }
  .about-heading {
    font-size: 2.2rem;
  }
}

/* momo flavors section */
.momo-flavors {
  position: relative;
  background-color: #ffffff;
  padding: 100px 20px 120px;
  overflow: hidden;
}

.momo-shape-bg {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  z-index: 0;
}

.momo-flavors .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: 'Baloo 2', cursive;
  font-size: 3rem;
  color: #DC143C;
  margin-bottom: 10px;
  text-align: center;
}

.section-subtext {
  font-family: 'Poppins', sans-serif;
  color: #003893;
  font-size: 1.2rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.momo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.momo-card {
  background: #f4f7fb;
  border-radius: 20px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 56, 147, 0.08);
  text-decoration: none;
  color: inherit;
  position: relative;
}

.momo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 56, 147, 0.15);
}

.momo-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 56, 147, 0.1);
}

.momo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.momo-card h3 {
  font-family: 'Baloo 2', cursive;
  color: #DC143C;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.momo-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* Badge styles */
.momo-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #003893;
  color: #fff;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  z-index: 2;
}

.momo-badge.red { background-color: #DC143C; }
.momo-badge.green { background-color: #28a745; }
.momo-badge.blue { background-color: #003893; }

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .section-subtext {
    font-size: 1rem;
  }

  .momo-image {
    height: 160px;
  }
}

.find-us-section {
  background: linear-gradient(180deg, #fdf9f3 0%, #fff 100%);
  padding: 100px 0;
  position: relative;
  text-align: center;
}

.find-us-section .main-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #d62828;
  margin-bottom: 20px;
}

.find-us-section .section-header p {
  font-family: 'Poppins', sans-serif;
  color: #444;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.locations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.location-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  width: 300px;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.location-card i {
  font-size: 1.3rem;
  color: #d62828;
  margin-right: 8px;
}

.location-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #333;
}

.location-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 6px;
}

.view-all-btn {
  display: inline-block;
  background: #d62828;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.view-all-btn:hover {
  background-color: #b31f1f;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .locations-grid {
    flex-direction: column;
    align-items: center;
  }

  .find-us-section .main-heading {
    font-size: 2rem;
  }

  .location-card {
    width: 90%;
  }
}

/* how to prep */
.momo-section {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    padding: 60px 20px;
  }

  .momo-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
  }

  .momo-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
  }

  .momo-tab {
    padding: 12px 24px;
    border: 1px solid #ff5e57;
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .momo-tab.active {
    background: #ff5e57;
    color: #fff;
  }

  .momo-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
  }

  .momo-content.active {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    justify-content: space-between;
  }

  .momo-card {
    flex: 1 1 100%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
  }

  .momo-text {
    flex: 1 1 55%;
  }

  .momo-text h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .momo-text ul {
    padding-left: 20px;
  }

  .momo-text li {
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .momo-image {
    flex: 1 1 40%;
    text-align: center;
  }

  .momo-image img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .momo-image img:hover {
    transform: scale(1.05);
  }

  @media (max-width: 768px) {
    .momo-content.active {
      flex-direction: column;
    }

    .momo-card {
      flex-direction: column;
      text-align: center;
    }
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

/* testimonial */
.testimonials {
  background-color: #f8f9ff;
  padding: 4rem 1.5rem;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials h2 {
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  color: #4f46e5;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1rem;
  color: #6b7280;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.quote {
  font-size: 1.125rem;
  color: #374151;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
}
.quote::before {
  content: "“";
  font-size: 2rem;
  color: #4f46e5;
  position: absolute;
  left: 0;
  top: 0;
}
.author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 2px solid #4f46e5;
}
.author h4 {
  font-size: 1rem;
  margin: 0;
  color: #111827;
}
.author span {
  font-size: 0.875rem;
  color: #6b7280;
}
/* Responsive tweaks */
@media (max-width: 500px) {
  .section-header h2 {
    font-size: 1.5rem;
  }
  .quote {
    font-size: 1rem;
  }
}
/* why choose us */
.why-choose-us {
  background: #f0f4ff;
  padding: 4rem 1.5rem;
}
.choose-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}
.choose-header h2 {
  font-size: 2.25rem;
  color: #4f46e5;
  font-weight: 700;
  margin-bottom: 1rem;
}
.choose-header p {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.6;
}
.choose-container {
  display: flex;
  flex-direction: column-reverse;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media(min-width: 768px) {
  .choose-container {
    flex-direction: row;
    align-items: flex-start;
  }
}
.choose-text {
  flex: 1;
}
.feature {
  display: grid;
  background-color: none;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media(min-width: 600px) {
.feature {
    grid-template-columns: 1fr 1fr;
  }
}
.feature {
  display: flex;
  gap: 1rem;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  align-items: flex-start;
  margin-bottom: 20px;
}
.feature:last-child {
    margin-bottom: 0;
}
.feature:hover {
  transform: translateY(-4px);
}
.feature img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.feature h4 {
  font-size: 1.1rem;
  color: #1f2937;
  margin: 0 0 0.4rem;
  font-weight: 600;
}
.feature p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.5;
}

.choose-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.choose-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Our Story Section Styles */
.our-story-upgraded {
  padding: 100px 20px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  color: #4d2c1d;
}

.story-container {
  max-width: 1300px;
  margin: 0 auto;
}

.story-header {
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  color: #ff5e57;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.main-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.3;
  color: #1f0e05;
  margin-bottom: 20px;
}

.story-intro {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 60px;
  color: #5f3a28;
}

.founders-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 100px;
}

.founder-box {
  flex: 1 1 30%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.founder-box:hover {
  transform: translateY(-10px);
}

.founder-box .blob {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: #ffd3ba;
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}

.founder-box h3 {
  font-size: 1.4rem;
  color: #ff5e57;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.founder-box p {
  color: #5e4635;
  position: relative;
  z-index: 1;
}

.fusion-box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.fusion-text {
  flex: 1;
  max-width: 600px;
}

.fusion-text h3 {
  font-size: 2rem;
  color: #ff5e57;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.fusion-text p {
  color: #4e2f1c;
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.7;
}

.promise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 600;
}

.promise-list li {
  margin-bottom: 10px;
  color: #2f1c0e;
  font-size: 1rem;
}

.fusion-visual {
  flex: 1;
}

.fusion-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

@media (max-width: 1024px) {
  .founders-grid {
    flex-direction: column;
    gap: 30px;
  }
  .fusion-box {
    flex-direction: column-reverse;
  }
}

/* OUR STORY SECTION STYLING */
.our-story-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff, #f9f9f9);
  text-align: center;
}

.our-story-section .section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #d62828;
  margin-bottom: 40px;
}

.our-story-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 80px;
}

.story-card {
  width: 350px;
  height: 350px;
  perspective: 1000px;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.4s ease-in-out;
  transform-style: preserve-3d;
}

.story-card:hover {
  transform: scale(1.03);
}

.story-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s ease-in-out;
  transform-style: preserve-3d;
  border-radius: 20px;
}

.story-card:hover .story-card-inner {
  transform: rotateY(180deg);
}

.story-card-front,
.story-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: opacity 0.5s ease-in-out;
}

.story-card-front {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #fff;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.3);
  transition: opacity 0.5s ease-in-out;
}

.story-card-front h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.5rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.story-card:hover .story-card-front {
  opacity: 0;
}

.story-card-back {
  background: #fff;
  transform: rotateY(180deg);
  font-family: 'Poppins', sans-serif;
  opacity: 1;
}

.story-card-back .story-back {
  background-image: url('http://209.38.90.212/wp-content/themes/storefront/assets/img/eastern2.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #fff;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.3);
  transition: opacity 0.5s ease-in-out;
  width: 100%;
  height: 100%;
}

.story-card-back p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  transition: opacity 0.5s ease-in-out;
}

.story-card:hover .story-card-inner {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Specific Region Images */
/* .story-east {
  background-image: url('https://unsplash.com/photos/gray-temple-scenery-Wj9ELwGXa6c');
}

.story-central {
  background-image: url('https://unsplash.com/photos/gray-temple-scenery-Wj9ELwGXa6c');
}

.story-west {
  background-image: url('https://unsplash.com/photos/gray-temple-scenery-Wj9ELwGXa6c');
} */

/* Responsive */
@media (max-width: 768px) {
  .our-story-cards {
    flex-direction: column;
    align-items: center;
  }
  .story-card {
    width: 90%;
    height: 300px;
  }
}

/* What Sets Us Apart Section */
.what-sets-us-apart {
  background: #fff7f2;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.what-sets-us-apart .container {
  max-width: 1200px;
  margin: 0 auto;
}

.apart-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.apart-text {
  flex: 1 1 600px;
  animation: fadeInUp 1s ease-in-out;
}

.apart-text .section-heading {
  font-family: 'Lobster Two', cursive;
  font-size: 36px;
  color: #e63946;
  margin-bottom: 20px;
}

.apart-text .intro-text {
  background: #ffebd6;
  padding: 15px 20px;
  border-left: 5px solid #ff8c42;
  border-radius: 6px;
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 18px;
  color: #1d3557;
}

.apart-text p {
  font-size: 16.5px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 16px;
}

.apart-features {
  flex: 1 1 400px;
  animation: fadeInRight 1.2s ease-in-out;
}

.apart-features .feature-heading {
  font-size: 24px;
  color: #1d3557;
  margin-bottom: 20px;
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 30px;
}

.feature-list li {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #444;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
}

.feature-list li:hover {
  transform: translateY(-2px);
  background: #fdf0e5;
}

.feature-list li span {
  font-size: 22px;
  margin-right: 12px;
}

.momo-img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .apart-grid {
    flex-direction: column;
  }

  .apart-text, .apart-features {
    flex: 1 1 100%;
  }

  .apart-text .section-heading {
    font-size: 28px;
    text-align: center;
  }

  .apart-features .feature-heading {
    text-align: center;
  }

  .momo-img {
    margin-top: 20px;
  }
}

.faq-section {
  background-color: #fefefe;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: #1f1f1f;
}

.faq-section .container {
  max-width: 900px;
  margin: auto;
}

.faq-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #e53935;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.faq-subtext {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.faq-accordion {
  border-top: 1px solid #eee;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  background: none;
  width: 100%;
  padding: 20px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #e53935;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background-color: #fafafa;
  padding: 0 20px;
}

.faq-answer p {
  margin: 0;
  padding: 15px 0;
  color: #444;
  font-size: 1rem;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.price-tag {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  margin-top: 10px;
}
.price-tag small {
  display: block;
  font-size: 0.8rem;
  color: #888;
}

.momo-note {
  margin-top: 30px;
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  font-family: 'Poppins', sans-serif;
  background: #fff8f2;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.delivery-box {
  background: #f3f4f6;
  border-left: 6px solid #e53935;
  padding: 30px;
  margin-top: 50px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.delivery-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #e53935;
  margin-bottom: 20px;
}

.delivery-box ul {
  padding-left: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #333;
}

.delivery-box li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.delivery-box .note {
  font-size: 0.85rem;
  color: #777;
  margin-top: 15px;
  font-style: italic;
}

.flavors-heading {
  text-align: center;
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.flavor-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  position: relative;
  text-align: center;
}

.flavor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.flavor-image img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.flavor-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}

.flavor-content p {
  font-size: 0.95rem;
  color: #666;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}

.price-tag {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
}
.price-tag small {
  display: block;
  font-size: 0.8rem;
  color: #888;
}

/* ✨ Styled Badge */
.flavor-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 20px;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

.badge-red {
  background: linear-gradient(135deg, #e53935, #f44336);
}

.badge-blue {
  background: linear-gradient(135deg, #2196f3, #1e88e5);
}

.badge-yellow {
  background: linear-gradient(135deg, #ffca28, #fbc02d);
  color: #333;
}

.badge-green {
  background: linear-gradient(135deg, #43a047, #2e7d32);
}