/* ==========================================================================
   PROTEINFUEL - MAIN STYLES (Figma Precise Implementation)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. SITE HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  top: 0;
  padding: 14px 0;
  transform: translateY(0);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.25s ease,
    box-shadow 0.25s ease,
    padding 0.25s ease;
  will-change: transform;
}

.site-header.scrolled {
  background: var(--overlay-header);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.brand img {
  object-fit: contain;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--overlay-nav-pill);
  backdrop-filter: blur(13px);
  border-radius: var(--radius-xl);
  padding: 4px;
}

.nav-link {
  font-family: var(--font-serif);
  color: var(--ink-dark) !important;
  font-size: 16px;
  line-height: 1.2;
  padding: 12px 20px !important;
  border-radius: var(--radius-xl);
  white-space: nowrap;
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  background: var(--green-subtle);
  color: var(--green) !important;
}

.btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--ink);
  background: linear-gradient(90deg, var(--lime), var(--pale));
  border-radius: var(--radius-full);
  padding: 12px 20px;
  font-family: var(--font-serif);
  transition: var(--transition-fast);
  box-shadow: var(--shadow-glow);
}

.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--ink);
}

.navbar-toggler {
  border: none;
  padding: 8px;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* Responsive Header Mobile Menu Breakpoint (< 1200px / xl) */
@media (max-width: 1199.98px) {
  .site-header .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    margin-top: 15px;
    max-height: 80dvh;
    overflow-y: auto;
  }

  .nav-pill {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    gap: 8px;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px 16px !important;
  }

  .btn-brand {
    width: 100%;
    margin-top: 8px;
    margin-left: 0 !important;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   2. HERO SECTION (The Formula of Perfect Meal - Bowl Image BG)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 170px;
  padding-bottom: 38%;
  background-color: var(--white);
}
@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 40%;
  }
}
@media (max-width: 576px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 70%;
  }
}
.hero-art {
  position: absolute;
  inset: 0;
  background: url("../assets/images/hero-bg.webp") center -30px / 150% auto
    no-repeat;
  opacity: 0.18;
  filter: brightness(1.12) contrast(0.95);
  pointer-events: none;
  transform: scale(1.22);
  transform-origin: center top;
  top: -40%;
}

@media (max-width: 768px) {
  .hero-art {
    top: -5%;
    transform: scale(2.22);
  }
}

.hero-inner {
  position: relative;
  text-align: center;
  padding-top: 50px;
  z-index: 2;
}

.eyebrow-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.hero-title {
  font-size: clamp(40px, 3.2vw, 60px);
  letter-spacing: -2.4px;
  color: var(--ink);
  font-family: var(--font-primary);
  font-weight: 300;
}

.hero-title em {
  font-family: var(--font-serif);
  font-size: 0.82em;
  font-style: italic;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: var(--fs-hero-title);
  font-weight: 400;
  letter-spacing: -5px;
  line-height: var(--lh-tight);
  margin: 5px 0 40px;
  color: var(--ink);
}

.hero-copy {
  font-size: var(--fs-body-lg);
  font-weight: 300;
  letter-spacing: -0.8px;
  max-width: 1120px;
  margin: 0 auto 48px;
  line-height: var(--lh-body-lg);
  color: var(--ink);
}

.feature-pills {
  font-family: var(--font-serif);
  font-size: var(--fs-body-lg);
  letter-spacing: -0.8px;
  max-width: 950px;
  margin: auto;
}

.feature-pill-item {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  text-align: left;
}

.icon-bubble {
  width: 48px;
  height: 48px;
  border: 1px solid #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-primary);
  background: transparent;
  flex-shrink: 0;
}

/* Hero Bottom Vegetables Strip */
.hero-vegetables {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  text-align: center;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .hero-vegetables {
    position: absolute;
    bottom: 8%;
  }
}
@media (max-width: 768px) {
  .hero-vegetables {
    position: absolute;
    bottom: 7.5%;
  }
}

@media (max-width: 576px) {
  .hero-vegetables {
    position: absolute;
    bottom: 15%;
  }
}

.hero-vegetables img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.08));
}

/* Partner Logo Strip */
.brand-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 60px 0;
  background: var(--overlay-brand-strip);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6vw;
  flex-wrap: wrap;
}
@media (max-width: 1199.98px) {
  .brand-logos .btn-brand {
    width: auto;
    margin-top: 8px;
    margin-left: 0 !important;
    text-align: center;
  }
}

.brand-logos img {
  max-width: 300px;
  max-height: 100px;
  object-fit: contain;
  transition: var(--transition-fast);
}

.brand-logos img:hover {
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   3. MARKET OPPORTUNITY (4 Cards)
   -------------------------------------------------------------------------- */
.market {
  position: relative;
  background-color: var(--dark);
  padding-top: 110px;
  padding-bottom: 20px;
  z-index: 5;
}

.market .container {
  max-width: 1380px;
}
.market .container .section-head {
  max-width: 1000px;
}

.cards-4 {
  display: grid;
  padding: 0 20px;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: -50px;
  position: relative;
  z-index: 10;
}

.cards-4 article {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid #ffffff;
  border-radius: 24px;
  padding: 100px 35px 80px;
  /* min-height: 320px; */
  display: flex;
  flex-direction: column;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: var(--transition-normal);
}

@media (max-width: 768px) {
  .cards-4 article {
    padding: 40px 20px;
  }
}

.cards-4 article:hover {
  transform: translateY(-8px);
  border-color: var(--lime);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(184, 230, 48, 0.2);
}

.cards-4 h3 {
  font-weight: 400;
}
.cards-4 p {
  color: var(--white);
  margin-bottom: 0;
}

@media (max-width: 1199.98px) {
  .market {
    padding-bottom: 50px;
  }
  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: -60px;
  }
}

@media (max-width: 767.98px) {
  .market {
    padding-bottom: 40px;
  }
  .cards-4 {
    grid-template-columns: 1fr;
    margin-bottom: -40px;
    gap: 20px;
  }
}

/* --------------------------------------------------------------------------
   4. THE BIG PROMISE (6 Cards - 3 Columns x 2 Rows Layout)
   -------------------------------------------------------------------------- */
#promise {
  padding-top: 180px;
}
#promise .section-head {
  max-width: 800px;
}

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

.promise-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: var(--transition-normal);
  border: none;
  backdrop-filter: blur(24px) saturate(180%) brightness(110%);
}

.promise-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    33deg,
    rgba(255, 255, 255, 0.42) 0%,
    rgba(255, 255, 255, 0.16) 30%,
    rgba(255, 255, 255, 0.04) 52%,
    rgba(170, 180, 195, 0.12) 100%
  );

  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}
.promise-card::after {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: inherit;

  background: linear-gradient(
    33deg,
    rgba(255, 255, 255, 0.18),
    transparent 35%,
    rgba(210, 220, 235, 0.12) 70%,
    rgba(180, 190, 205, 0.18)
  );

  box-shadow: inset 0 0 35px rgba(255, 255, 255, 0.18);

  pointer-events: none;
  z-index: 2;
}

.promise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--lime);
}
.promise-card:hover .promise-num img {
  filter: brightness(0) invert(1);
}

.promise-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.promise-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
  border: 1px solid var(--black);
}
.promise-num img {
  width: 45px;
  height: 45px;
}

.promise-card:hover .promise-num {
  background: var(--green);
  color: var(--white);
  border: 1px solid var(--green);
}

.promise-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-playfair);
  font-weight: 400;
}

.promise-card p {
  color: var(--gray-text);
  margin-bottom: 0;
  text-align: center;
}

@media (max-width: 1199.98px) {
  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 767.98px) {
  .promise-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 575.98px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   5. OUR TARGET AUDIENCE
   -------------------------------------------------------------------------- */
.audience {
  background: var(--white);
  padding-bottom: 0;
  position: relative;
}

.audience .section-head {
  max-width: 1200px;
}
.audience .section-head h2 {
  color: var(--ink);
}

.audience .section-head p {
  color: var(--ink-light);
}

.audience-full-width {
  width: 100%;
  padding: 0;
  margin: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  width: 100%;
}

.audience-card {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: var(--black);
  border: 1px solid #fff;
}

.audience-card:last-child {
  border-right: none;
}

.audience-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    filter 0.6s ease;
}

.audience-card:hover .audience-card-img {
  transform: scale(1.08);
  filter: brightness(0.95);
}

/* Glassmorphism Liquid Water Card Data Overlay */
.audience-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 26px;
  border-radius: 24px;
  z-index: 2;

  /* Transparent Liquid Water Base & Frost Blur (43.99) */
  background: #00000033 !important;
  backdrop-filter: blur(14px) saturate(190%) brightness(108%);
  -webkit-backdrop-filter: blur(44px) saturate(190%) brightness(108%);

  /* Light 33° Refraction & Glass Border */
  border: 1px solid rgba(255, 255, 255, 0.35);

  /* Depth (59.33), Dispersion & Splay Glow (100) */
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.65),
    inset 0 -1px 25px rgba(255, 255, 255, 0.12),
    0 0 30px rgba(255, 255, 255, 0.1);

  color: var(--white);
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

/* Directional Liquid Light Refraction Highlight (Light 33° 90%) */
.audience-card-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    33deg,
    rgba(255, 255, 255, 0.45) 0%,
    transparent 45%,
    rgba(255, 255, 255, 0.2) 100%
  );
  pointer-events: none;
  z-index: -1;
}

.audience-card:hover .audience-card-content {
  transform: translateY(-6px);
  background: linear-gradient(
    33deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.22) 100%
  );
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.85),
    inset 0 -1px 30px rgba(255, 255, 255, 0.25),
    0 0 25px rgba(255, 255, 255, 0.25);
}

.audience-card h3 {
  font-family: var(--playfair);
}

.audience-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  max-width: 60%;
}

@media (max-width: 1199.98px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .audience-card {
    height: 460px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 575.98px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .audience-card {
    height: 380px;
  }
  .audience-card-content {
    padding: 30px 24px 60px;
  }

  .audience-card p {
    max-width: 100%;
  }
}

/* --------------------------------------------------------------------------
   6. OUR OFFERINGS (Meals Catalog - Figma Node 1-154)
   -------------------------------------------------------------------------- */
.offerings-figma-section {
  background: var(--white);
  padding-bottom: 0;
}

.offerings-radar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto 40px;
}

.radar-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.radar-wrapper svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* --------------------------------------------------------------------------
   Radar SVG Drawing & High-Tech Animations
   -------------------------------------------------------------------------- */

/* 1. Rotating Radar Scanner Sweeper Beam */
.radar-scanner-group {
  transform-origin: 432px 364.1px;
  animation: rotateRadarSweep 6s linear infinite;
}

@keyframes rotateRadarSweep {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* 2. Self-Drawing Radar Polygon Stroke Animation */
.radar-polygon-stroke {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawRadarPolygon 5s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes drawRadarPolygon {
  0% {
    stroke-dashoffset: 1000;
    opacity: 0.3;
  }
  45%,
  85% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

/* 3. Filled Polygon Area Breathe Animation */
.radar-polygon-fill {
  animation: radarFillBreathe 5s ease-in-out infinite alternate;
  transform-origin: 432px 364.1px;
}

@keyframes radarFillBreathe {
  0% {
    opacity: 0.25;
    transform: scale(0.97);
  }
  50% {
    opacity: 0.85;
    transform: scale(1);
  }
  100% {
    opacity: 0.95;
    transform: scale(1.02);
  }
}

/* 4. Vertex Target Points Pulsing Rings */
.vertex-pulse {
  animation: vertexRingPing 2.2s ease-out infinite;
}

@keyframes vertexRingPing {
  0% {
    r: 4px;
    opacity: 1;
  }
  100% {
    r: 18px;
    opacity: 0;
  }
}

.vertex-dot {
  animation: vertexDotGlow 2s ease-in-out infinite alternate;
}

@keyframes vertexDotGlow {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.35);
    opacity: 1;
  }
}

/* 5. Glowing Drawing Pen Spark Tracer Dot */
.radar-drawing-spark {
  offset-path: path("M241.5 365.5L432 602L620 365.5L432 263Z");
  animation: tracePenSpark 8s linear infinite;
}

@keyframes tracePenSpark {
  0% {
    offset-distance: 0%;
    opacity: 0.3;
  }
  10%,
  90% {
    opacity: 1;
  }
  100% {
    offset-distance: 100%;
    opacity: 0.3;
  }
}

.radar-tag {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line-dark);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: pillFloat 4s ease-in-out infinite alternate;
}

@keyframes pillFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-4px);
  }
}

.tag-fats {
  top: 15px;
  left: 30px;
}
.tag-fibres {
  top: 150px;
  right: 10px;
}
.tag-carbs {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Meal Cards matching Figma node 1-154 */
.figma-meal-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.figma-meal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.meal-card-img-wrap {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: hidden;
}

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

.draft-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  border: 1px solid #cbd5e1;
}

.meal-icon-btn {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 60px;
  height: 30px;
  border-radius: 98px;
  background: #ffffff4d;
  backdrop-filter: blur(60px);
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
}

.meal-icon-btn img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(0%);
}
.meal-card-content {
  padding: 20px;
}

.meal-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}

.macro-pills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.macro-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 6px 12px;
  font-size: 0.8rem;
  color: #475569;
  background: #f8fafc;
}

.macro-pill b {
  color: var(--ink);
}

.pill-icon {
  font-size: 0.85rem;
}

.macro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.macro-grid span {
  border: 1px solid var(--ink);
  border-radius: 90px;
  padding: 14px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1rem;
}

.macro-grid b {
  font-size: 22px;
  margin-left: 8px;
  color: var(--green);
}

@media (max-width: 991.98px) {
  .meal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .meal-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   8. OUR OFFERINGS WITH THE TABLE (Ingredients) - Figma Node 1-201
   -------------------------------------------------------------------------- */
.ingredients-section {
  position: relative;
  background-color: var(--white);
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}
.ingredients-section .section-head {
  max-width: 800px;
}

.ingredients-section .container {
  max-width: 1700px;
}

/* Decorative leaf overlays matching Figma depth effect */
.ingredients-section .leaf-bg-overlay {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  /* filter: blur(10px) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1)); */
  transition: transform 0.5s ease;
}

.ingredients-section .leaf-left {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ingredients-section .leaf-right {
  bottom: 5%;
  right: -80px;
  width: 340px;
  transform: rotate(35deg) scaleX(-1);
}

.ingredients-section .leaf-bg-overlay img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Controls: Search Bar & Filter Buttons */
.ingredients-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.search-pill-wrapper {
  position: relative;
  flex: 1;
  max-width: 60%;
  min-width: 280px;
}

.search-pill-input {
  width: 100%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 9999px;
  padding: 12px 48px 12px 24px;
  font-size: 0.95rem;
  color: #1e293b;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.search-pill-input:focus {
  outline: none;
  border-color: #65a30d;
  box-shadow: 0 0 0 3px rgba(101, 163, 13, 0.15);
}

.search-icon-span {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.filter-pill-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ingredient-filter-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 9999px;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e293b;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.ingredient-filter-btn:hover {
  border-color: #65a30d;
  color: #65a30d;
}

.ingredient-filter-btn.active {
  background: #1e293b;
  border-color: #1e293b;
  color: #ffffff;
}

/* Table Shell & Custom Table Styling */
.ingredients-table-shell {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.ingredients-custom-table {
  width: 100%;
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.ingredients-custom-table thead th {
  background-color: #edf5e3;
  color: #527926;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 18px 24px;
  border-bottom: 1px solid #e2e8f0;
  white-space: nowrap;
}

.ingredients-custom-table thead th .sort-icon {
  font-size: 0.8rem;
  margin-left: 4px;
  opacity: 0.8;
  color: #65a30d;
}

.ingredients-custom-table tbody tr {
  transition: background-color 0.15s ease;
}

.ingredients-custom-table tbody tr:hover {
  background-color: #f8fafc;
}

.ingredients-custom-table tbody td {
  padding: 18px 24px;
  font-size: 0.95rem;
  color: #1e293b;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.ingredients-custom-table tbody tr:last-child td {
  border-bottom: none;
}

/* Ingredient Cell: Name & SKU */
.ingredient-cell {
  display: flex;
  flex-direction: column;
}

.ingredient-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}

.sku-tag {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

/* Category & Allergen Oval Badges */
.category-badge-pill,
.allergen-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid #2e2e2e;
  border-radius: 9999px;
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1e293b;
  white-space: nowrap;
}

.category-badge-pill svg,
.allergen-badge-pill svg {
  color: #2e2e2e;
  flex-shrink: 0;
}

/* Stock Cell */
.stock-cell {
  min-width: 180px;
}

.stock-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.stock-ratio {
  font-size: 0.95rem;
  font-weight: 600;
}

.stock-ratio.low {
  color: #dc2626;
}

.stock-ratio.high {
  color: #64748b;
}

.stock-status-pill {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 9999px;
  line-height: 1;
}

.stock-status-pill.low {
  background-color: #fee2e2;
  color: #ef4444;
}

.stock-status-pill.high {
  background-color: #ecfdf5;
  color: #10b981;
}

.stock-progress-bar {
  height: 6px;
  background-color: #e2e8f0;
  border-radius: 9999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 0.4s ease;
}

.progress-fill.low {
  background-color: #ef4444;
}

.progress-fill.high {
  background-color: #84cc16;
}

/* Price Cell */
.price-cell {
  font-family: var(--font-playfair);
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
}

/* Empty Cell indicator (-) */
.empty-cell {
  color: #94a3b8;
  font-size: 1.1rem;
}

/* Medical Tag Badges */
.medical-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.medical-tag-pill {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 9999px;
  background-color: #ffffff;
  font-size: 0.8rem;
  font-weight: 400;
  color: #475569;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   9. OUR OFFERINGS (Meal Calendar)
   -------------------------------------------------------------------------- */

#calendar {
  position: relative;
  padding-bottom: 200px;
}
#calendar::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: url("../assets/images/calender-bg-img.webp");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.1;
}

#calendar .container {
  position: relative;
  z-index: 3;
}

#calendar .container .section-head {
  max-width: 900px;
}

#calendar .meal-calendar-image {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
}

#calendar .meal-calendar-image img {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  #calendar {
    padding-bottom: 100px;
  }
}

/* --------------------------------------------------------------------------
   11. OUR OFFERINGS (Range and 6 Image Captions - Lifestyle)
   -------------------------------------------------------------------------- */
.lifestyle-section {
  position: relative;
  background-color: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

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

/* Range Slider Wrapper (Placed Above Cards) */
.lifestyle-range-wrapper {
  margin-bottom: 50px;
  text-align: center;
  background: #ffffff;
}

.range-question-label {
  font-family: var(--font-playfair);
  font-size: 1.25rem;
  font-style: italic;
  color: #1e293b;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: left;
}

.range-input-box {
  position: relative;
  width: 100%;
  margin-bottom: 12px;
}

.range-input-box input[type="range"] {
  --range-progress: 55%;

  -webkit-appearance: none;
  appearance: none;

  width: 100%;
  height: 10px;
  border-radius: 9999px;
  outline: none;
  cursor: pointer;

  /* Filled + unfilled */
  background:
    linear-gradient(88.94deg, #4b8106 -130.57%, #daebc3 -5.45%, #5d9f00 110.4%)
      0 / var(--range-progress) 100% no-repeat,
    #e5e5e5;
}

.range-input-box input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #65a30d;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(101, 163, 13, 0.4);
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background-color 0.15s ease;
}

.range-input-box input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: #4d7c0f;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-family: var(--font-playfair);
  color: #64748b;
  font-weight: 500;
}

/* 6 Lifestyle Cards Grid (3 Columns x 2 Rows - Borderless Cards matching Figma) */
.lifestyle-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;
  margin-bottom: 20px;
}

.lifestyle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
}

.lifestyle-card:hover {
  transform: translateY(-6px);
}

.lifestyle-card.active {
  background: transparent;
  box-shadow: none;
}

/* Circular Image Container & ::before Pseudo-Element Background (Smaller circle behind image) */
.circle-image-container {
  width: 100%;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto 16px auto;
}

.circle-image-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: #eef0f3;
  border-radius: 50%;
  z-index: 0;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.lifestyle-card.active .circle-image-container::before,
.lifestyle-card:hover .circle-image-container::before {
  background: #e4ebe0;
  transform: translate(-50%, -50%) scale(1.05);
}

.circle-image-container img.activity-img {
  position: relative;
  z-index: 1;
  max-width: 90%;
  max-height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lifestyle-card:hover img.activity-img {
  transform: scale(1.08);
}

/* Activity Label Row below Circle: Small Circle Icon Badge + Serif Title */
.activity-label-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.icon-circle-badge {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1.5px solid #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1e293b;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.icon-circle-badge img,
.icon-circle-badge svg {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.activity-name-text {
  font-family: var(--font-playfair);
  font-size: 1.1rem;
  font-weight: 500;
  color: #1e293b;
  transition: color 0.25s ease;
}

.lifestyle-card.active .icon-circle-badge,
.lifestyle-card:hover .icon-circle-badge {
  background: #1e293b;
  color: #ffffff;
  border-color: #1e293b;
}

.lifestyle-card:hover .icon-circle-badge img {
  filter: brightness(0) invert(1);
}

.lifestyle-card.active .activity-name-text,
.lifestyle-card:hover .activity-name-text {
  color: #1e293b;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .lifestyle-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .lifestyle-cards-grid {
    grid-template-columns: 1fr;
  }
  .lifestyle-range-wrapper {
    padding: 20px 16px;
  }
}

/* --------------------------------------------------------------------------
   12. OUR OFFERINGS (Left Map & Right Content - Delivery)
   -------------------------------------------------------------------------- */
.delivery-section {
  background-color: #ffffff;
  position: relative;
}
.delivery-section .container {
  max-width: 1700px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Column: Map Box & Overlay Pins */
.delivery-map-wrapper {
  width: 100%;
  height: 100%;
}

.map-container-box {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  /* border: 1px solid #e2e8f0; */
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
}

.map-container-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: contrast(1.03) saturate(1.1);
}

/* Zone Overlay Label Tags on Map */
.zone-overlay-pin {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.zone-a-overlay {
  top: 12%;
  left: 8%;
}
.zone-b-overlay {
  top: 40%;
  left: 52%;
}
.zone-c-overlay {
  top: 82%;
  left: 38%;
}

.zone-tag-label {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 9999px;
  font-family: var(--font-playfair);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.red-tag {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fca5a5;
}
.orange-tag {
  background: #ffedd5;
  color: #ea580c;
  border: 1px solid #fdba74;
}
.blue-tag {
  background: #dbeafe;
  color: #2563eb;
  border: 1px solid #93c5fd;
}

/* Right Column: Accordions & Rule Controls */
.delivery-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.delivery-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-item {
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.3s ease;
}

.accordion-header {
  width: 100%;
  background: #eef7e5;
  color: #527926;
  padding: 14px 28px;
  border: none;
  border-radius: 9999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-playfair);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.accordion-header:hover {
  background: #e4f1d8;
  color: #3b5a19;
}

.chevron-icon {
  transition: transform 0.3s ease;
  color: #527926;
}

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

.accordion-body {
  opacity: 0;
  visibility: hidden;
  padding: 0;
}

.accordion-item.active .accordion-body {
  opacity: 1;
  visibility: visible;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
}

.fee-row:last-child {
  border-bottom: none;
}

.fee-info {
  display: flex;
  flex-direction: column;
}

.zone-title {
  font-family: var(--font-playfair);
  font-size: 1.08rem;
  font-weight: 600;
  color: #1e293b;
}

.zone-sub {
  font-size: 0.88rem;
  color: #94a3b8;
  font-style: italic;
  margin-top: 2px;
}

.fee-amount {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
}

.fee-detail {
  font-size: 1rem;
  font-weight: 500;
  color: #1e293b;
}

/* Rule Toggle Controls */
.delivery-toggles-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.toggle-control-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
}

.toggle-text {
  display: flex;
  flex-direction: column;
}

.toggle-title {
  font-family: var(--font-playfair);
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
}

.toggle-sub {
  font-size: 0.88rem;
  color: #94a3b8;
  font-style: italic;
  margin-top: 2px;
}

.toggle-switch {
  width: 48px;
  height: 26px;
  border-radius: 9999px;
  background: #cbd5e1;
  border: none;
  position: relative;
  cursor: pointer;
  transition: background-color 0.25s ease;
  flex-shrink: 0;
}

.toggle-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-switch.active {
  background: #65a30d;
}

.toggle-switch.active::after {
  transform: translateX(22px);
}

@media (max-width: 991.98px) {
  .delivery-grid {
    grid-template-columns: 1fr;
  }
  .map-container-box {
    height: 400px;
  }
}

/* --------------------------------------------------------------------------
   13. OUR OFFERINGS (5-Step Interactive Pricing Wizard)
   -------------------------------------------------------------------------- */
.pricing-section {
  background-color: #ffffff;
}

.steps-wizard {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}

.step-item {
  background: transparent;
  border: none;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  border-radius: 9999px;
  transition: all 0.25s ease;
  text-align: left;
}

.step-num {
  font-family: var(--font-playfair);
  font-size: 1.3rem;
  font-weight: 600;
  color: #94a3b8;
  transition: color 0.25s ease;
}

.step-titles {
  display: flex;
  flex-direction: column;
}

.step-name {
  font-family: var(--font-playfair);
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
  transition: color 0.25s ease;
}

.step-sub {
  font-size: 0.82rem;
  color: #94a3b8;
  font-style: italic;
}

.step-item:hover .step-name,
.step-item:hover .step-num {
  color: #65a30d;
}

/* .step-item.active {
  background: #eef7e5;
  padding: 10px 22px;
  box-shadow: 0 4px 14px rgba(101, 163, 13, 0.12);
} */

.step-item.active .step-num {
  color: #65a30d;
  font-weight: 700;
}

.step-item.active .step-name {
  color: #527926;
  font-weight: 700;
}

.step-item.active .step-sub {
  color: #65a30d;
}

.step-divider {
  height: 1px;
  width: 6%;
  background: #e2e8f0;
  flex-shrink: 0;
}

/* Step Tab Panels */
.step-tab-panel {
  display: none;
  animation: fadeInStep 0.35s ease forwards;
}

.step-tab-panel.active {
  display: block;
}

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

.max-w-600 {
  max-width: 600px;
}

.steps-content-wrapper .step-tab-panel img,
.steps-content-wrapper .step-tab-panel {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  object-position: center;
}

/* --------------------------------------------------------------------------
   14. VIDEO SECTION
   -------------------------------------------------------------------------- */
.video-section {
  background-color: #ffffff;
  position: relative;
  padding-top: 0;
}

.video-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  background-color: #0f172a;
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   15. SIMPLE TO LAUNCH (3 Cards - Figma Node 1-857)
   -------------------------------------------------------------------------- */
.launch-section {
  padding: 100px 0;
  position: relative;
  background: url("../assets/images/veggies-image.webp") center/cover no-repeat;
  isolation: isolate;
}

.launch-section .container {
  max-width: 1450px;
}

.launch-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(248, 250, 252, 0.75);
  backdrop-filter: blur(8px);
  z-index: -1;
}

.launch-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.launch-glass-card {
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  padding: 28px 45px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.launch-glass-card:hover {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.card-left-header {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.card-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.card-icon-circle img,
.card-icon-circle svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.launch-glass-card:hover .card-icon-circle {
  background: #1e293b;
  color: #ffffff;
}

.launch-glass-card:hover .card-icon-circle img {
  filter: invert(1);
}

.card-serif-title {
  font-family: var(--font-playfair);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
  color: #1e293b;
  margin: 0;
  white-space: nowrap;
}

.card-right-desc p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #475569;
  margin: 0;
}

@media (max-width: 1199.98px) {
  .launch-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .launch-glass-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991.98px) {
  .launch-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   15. OUR UNIQUE SELLING POINT (2 Cards Comparison)
   -------------------------------------------------------------------------- */
.usp {
  min-height: 1200px;
  background-color: var(--dark);
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

.comparison article {
  border: 1.2px solid rgba(255, 255, 255, 0.8);
  background: var(--overlay-card-dark);
  border-radius: 22px;
  padding: 50px;
}

.comparison h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  margin: 0 0 28px;
  color: var(--white);
}

.comparison ul {
  padding-left: 20px;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

.comparison li {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body-lg);
  margin-bottom: 15px;
  opacity: 0.9;
  color: var(--white);
}

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

/* --------------------------------------------------------------------------
   17. FAQS (Accordion - Figma Node 1-736)
   -------------------------------------------------------------------------- */
.faq-section {
  background-color: #ffffff;
  padding: 100px 0;
}

.faq-accordion {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-accordion .accordion-item {
  border: none;
  background: transparent;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 12px;
}

.faq-accordion .accordion-item h3 {
  margin-bottom: 0;
}

.faq-accordion .accordion-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-accordion .accordion-button {
  background: #eef7e5;
  color: #527926;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 9999px !important;
  padding: 16px 32px;
  box-shadow: none !important;
  outline: none !important;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-raleway);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #eef7e5;
  color: #527926;
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23527926'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: 1.2rem;
  transition: transform 0.25s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.faq-accordion .accordion-body {
  font-size: 1.05rem;
  line-height: 1.65;
  padding: 20px 32px 10px;
  color: #334155;
  background: transparent;
}
.faq-accordion .accordion-collapse.show .accordion-body {
  opacity: 1;
  visibility: visible;
}
/* --------------------------------------------------------------------------
   18. OUR OFFERINGS (Vegetable Background CTA Section)
   -------------------------------------------------------------------------- */
.cta-section {
  position: relative;
  padding: 160px 0 30%;
  background-color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

/* Background Bowl Image Wrapper */
.cta-bg-image-wrapper {
  position: absolute;
  bottom: -8%;
  left: 50%;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  transform: scale(2.2) translateX(-23%);
}

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.06));
}

/* Bottom Veggies Overlay Image (Position Absolute) */
.cta-veggies-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  max-height: 380px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.cta-veggies-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  display: block;
}

/* Content Container & Text Styling */
.cta-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-section .section-head {
  max-width: 820px;
  margin: 0 auto 28px;
}

@media (max-width: 1199.98px) {
  .cta-section .btn-brand {
    width: auto;
  }
}

@media (max-width: 991.98px) {
  .cta-section {
    padding: 120px 0 30%;
  }
  .cta-bg-image-wrapper {
    max-width: 90%;
  }
  .cta-veggies-wrapper {
    max-height: 180px;
  }
}

@media (max-width: 575.98px) {
  .cta-section {
    padding: 90px 16px 45%;
  }
  .btn-large {
    width: 100%;
    padding: 14px 28px;
    font-size: 1.05rem;
  }
}

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  padding: 100px 25px 30px;
  overflow: hidden;
  isolation: isolate;
  background-color: #ffffff;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: url(../assets/images/footer-bg-img.webp) center / cover no-repeat;
  filter: blur(14px);
  opacity: 0.67;
  z-index: -2;
  transform: scale(1.67);
}

.footer-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  max-width: 1600px;
  margin: auto;
  gap: 70px;
}

.footer-script {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-body-lead);
  line-height: var(--lh-body-lead);
  color: var(--black);
  margin-top: 15px;
}

.footer-grid h2 {
  font-family: var(--font-serif);
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  margin-bottom: 25px;
  color: var(--ink);
}

.footer-grid a {
  display: block;
  color: var(--ink);
  font-size: 20px;
  margin-bottom: 15px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-grid a:hover {
  color: var(--green);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid var(--black);
  margin-top: 60px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--ink);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom a {
  color: var(--ink);
}

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

/* ==========================================================================
   OFFERINGS SLICK SLIDER STYLES
   ========================================================================== */
.offerings-slider {
  /* margin: 20px 0 0 0; */
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
}

.offerings-slider:not(.slick-initialized) {
  display: flex;
  overflow: hidden;
}

.offerings-slider:not(.slick-initialized) .offerings-slider-item {
  flex: 0 0 25%;
  max-width: 25%;
}

.offerings-slider .slick-list {
  padding: 24px 0 !important;
  overflow: hidden;
}

.offerings-slider .slick-track {
  display: flex !important;
  align-items: stretch;
}

.offerings-slider-item {
  padding: 0 12px;
  outline: none !important;
}

.offerings-slider-item .figma-meal-card {
  height: 100%;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    box-shadow 0.4s ease;
  transform: scale(0.92);
  opacity: 0.75;
}

.offerings-slider-item.slick-active .figma-meal-card,
.offerings-slider-item.slick-center .figma-meal-card {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}
