/* ================= VIDEO HERO ================= */
/* ================= HEADER ================= */

.jk-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 999999;
}

.jk-container {
  max-width: 1180px;
  margin: auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jk-logo img {
  height: 58px;
  width: auto;
}

/* NAV DESKTOP */
.jk-nav-desktop {
  display: flex;
  gap: 34px;
  align-items: center;
}

.jk-nav-desktop a {
  color: #222;
  font-weight: 500;
  text-decoration: none;
}

.jk-cart-btn {
  background: #fff8f0;
  border: 1px solid #f6d7b5;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
}

.jk-mobile-icons { display: none; }

.jk-menu-btn,
.jk-close-btn {
  background: #fff0d9;
  border: 1px solid #f2cb9d;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 1.35rem;
  cursor: pointer;
}

/* MOBILE MENU */
.jk-mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  display: none;
  flex-direction: column;
  padding: 90px 30px;
  gap: 26px;
  font-size: 1.3rem;
  z-index: 10000;
}

/* MOBILE DIPLAY RULE */
@media(max-width: 900px) {
  .jk-nav-desktop { display: none; }
  .jk-mobile-icons { display: flex; gap: 12px; }
}

/* ================= VIDEO HERO ================= */

.jk-video-hero {
  width: 100%;
  height: 100dvh !important;
  min-height: 100vh;
  overflow: hidden;
  position: relative;

  /* 🔥 MUST ADD — prevents white flash */
  background: url('images/video-poster.webp') center/cover no-repeat;
  background-color: #000; /* fallback */
}


/* VIDEOS STACKED */
.jk-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;  /* smoother fade */
  z-index: 1;
  background: black;                      /* prevents white flash */
}

/* ACTIVE VIDEO FADES IN SMOOTHLY */
.jk-hero-video.active {
  opacity: 1;
  z-index: 2;
}



/* CONTENT */
.jk-video-content {
  position: absolute;
  z-index: 3;
  width:100%;
  text-align:center;
  top:50%;
  transform:translateY(-50%);
  color:#fff;
  padding:0 20px;
  opacity:0;
  animation: heroFadeUp 1s ease forwards .4s;
}

.jk-hero-logo {
  width: 450px;                          /* increase size safely */
  max-width: 100%;                        /* prevent oversize on small screens */
  height: auto;                          /* prevents stretching */
  margin-bottom: 18px;
  filter: drop-shadow(0 5px 18px rgba(0,0,0,0.55));
}


.jk-hero-title {
  font-size: 3.6rem;
  font-weight:900;
  text-shadow:0 5px 18px rgba(0,0,0,0.7);
}

.jk-hero-subtitle {
  font-size:1.4rem;
  font-weight:500;
  margin-top:12px;
  margin-bottom:28px;
  text-shadow:0 4px 10px rgba(0,0,0,0.6);
}

/* BUTTONS */
.jk-video-buttons {
  display:flex;
  justify-content:center;
  gap:18px;
}

/* ORDER NOW BUTTON – GRADIENT */
/* SUPER UPGRADED CTA BUTTONS */

/* ORDER NOW = Premium Orange Glossy */
/* ORDER NOW — Darker Premium Orange */
.jk-btn-primary {
  background: linear-gradient(90deg, #ff6d00, #d95400);
  color: #fff;
  padding: 17px 44px;
  border: none;
  border-radius: 14px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(255, 102, 0, 0.45);
  transition: 0.3s ease;
}
.jk-btn-primary:hover {
  transform: scale(1.07) translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 102, 0, 0.55);
}

/* VIEW MENU — Dark Solid Cream/Yellow Premium */
.jk-btn-outline {
  background: #ffe8a3; /* solid, no transparency */
  border: 2px solid #000;
  color: #2a1a00;
  padding: 17px 44px;
  border-radius: 14px;
  font-size: 1.35rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 20px rgba(255,230,150,0.45);
  transition: 0.3s ease;
}
.jk-btn-outline:hover {
  background: #ffd86a;
  border-color: #000;
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 14px 28px rgba(255,210,110,0.55);
}

/* MOBILE REFINEMENT */
@media(max-width:600px) {
  .jk-btn-primary, .jk-btn-outline {
    font-size: 1.15rem !important;
    padding: 14px 30px !important;
  }
}



/* ANIMATION */
@keyframes heroFadeUp {
  from { opacity:0; transform:translateY(calc(-50% + 40px)); }
  to   { opacity:1; transform:translateY(-50%); }
}

/* MOBILE */
@media(max-width:600px) {
  .jk-hero-logo { width:180px; }
  .jk-hero-title { font-size:2.4rem; }
  .jk-hero-subtitle { font-size:1.1rem; }
  .jk-video-buttons { flex-direction:column; gap:14px; }
  .jk-video-hero { height:90vh; }
}

/* Scroll Arrow */

/* Scroll Indicator */
.jk-scroll-indicator {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 1.4s ease forwards 1s;
  opacity: 0;
}

.jk-scroll-indicator span {
  font-size: 0.95rem;
  color: #ffffff;
  opacity: 0.85;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

/* Arrow */
.jk-arrow {
  width: 16px;
  height: 16px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  animation: bounceArrow 1.4s infinite;
  opacity: 0.9;
}

/* Arrow Animation */
@keyframes bounceArrow {
  0%   { transform: translateY(0) rotate(-45deg); }
  50%  { transform: translateY(8px) rotate(-45deg); }
  100% { transform: translateY(0) rotate(-45deg); }
}

/* Fade In Text */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* MOBILE – move scroll hint up slightly */
@media(max-width: 600px) {
  .jk-scroll-indicator {
    margin-top: 22px;
  }
}


/* New Navigation Home Style Start */

/* HEADER */
.jk-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
}

/* Container */
.jk-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 18px;   /* balanced for bigger logo */
  display: flex;
  align-items: center;  /* keeps items centered vertically */
  justify-content: space-between;
}

/* LOGO */
.jk-logo img {
  height: 58px;        /* increased size — properly visible */
  width: auto;
  object-fit: contain;
  display: block;
}

/* DESKTOP NAV */
.jk-nav-desktop {
  display: flex;
  align-items: center;
  gap: 34px;
}

.jk-nav-desktop a {
  font-size: 1rem;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.jk-nav-desktop a:hover {
  color: #d75c1e;
}

.jk-cart-btn {
  background: #fff8f0;
  border: 1px solid #f6d7b5;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
}

/* MOBILE RIGHT ICONS */
.jk-mobile-icons {
  display: none;
  gap: 12px;
}

/* Remove yellow highlight */
button:focus,
button:active {
  outline: none !important;
  box-shadow: none !important;
}

/* Hamburger & Close */
.jk-menu-btn,
.jk-close-btn {
  background: #fff0d9;
  border: 1px solid #f2cb9d;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 1.35rem;
  cursor: pointer;
  transition: 0.2s ease;
}

/* FULL-SCREEN OVERLAY MENU */
.jk-mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  display: none;
  flex-direction: column;
  padding: 90px 30px;
  gap: 28px;
  font-size: 1.3rem;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

/* Centering links */
.jk-mobile-menu a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
}

/* Close button top-right */
.jk-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .jk-nav-desktop { display: none; }
  .jk-mobile-icons { display: flex; }

  .jk-logo img {
    height: 50px;   /* slightly smaller for mobile but still big */
  }

  .jk-container {
    padding: 8px 16px;
  }
}
/* MOBILE: Push hero content downward */
@media(max-width: 600px) {

/* Chnage the content postion in Mobile on video */

  .jk-video-content {
    top: 65% !important;                  /* SHIFT DOWN */
    transform: translateY(-65%) !important;
  }

 .jk-hero-logo {
    width: 400px !important;      /* bigger mobile logo */
    max-width: 90%;
  }

  .jk-hero-title {
    font-size: 2.2rem;
    margin-bottom: 8px;
  }

  .jk-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .jk-video-buttons {
    gap: 10px;
  }
}
/* FORCE ALL ICON BUTTON BOXES TO MATCH EXACTLY */
.jk-menu-btn,
.jk-cart-btn,
.jk-home-btn,
.jk-close-btn {
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #fff0d9 !important;
    border: 1px solid #f2cb9d !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
}
/* Cart Item Count Badge */
/* Force box fixed size */
.jk-cart-btn {
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    border-radius: 10px !important;
    background: #fff0d9 !important;
    border: 1px solid #f2cb9d !important;
    box-sizing: border-box !important;
}

/* Floating count badge */
.jk-cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff4d00;
    color: #fff;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}


/* New Navigation Home Style Closed */


/*-- ======  New style Grid Menu (mk namespace) ====== */

/* ====== MK: fully namespaced menu styles (safe) ====== */
/* ================================
   MK SAFE MENU CSS (FULL)
   ================================ */

#menuContainer.mk-menu {
  padding: 14px;
  max-width: 1100px;
  margin: 0 auto;
  font-family: "Poppins", system-ui, sans-serif;
}

/* CATEGORY SECTION */
#menuContainer.mk-menu .mk-category {
  margin-bottom: 26px;
}

#menuContainer.mk-menu .mk-cat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 6px;
  cursor: pointer;
  font-size: 17px;
  gap: 12px;
}

#menuContainer.mk-menu .mk-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

#menuContainer.mk-menu .mk-right {
  font-size: 13px;
  color: #666;
}

/* Toggle arrows */
#menuContainer.mk-menu .mk-toggle {
  font-size: 22px;
  background: none;
  border: none;
  color: #444;
  cursor: pointer;
  padding: 0 6px;
}

/* GRID */
#menuContainer.mk-menu .mk-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

/* PRODUCT CARD */
#menuContainer.mk-menu .mk-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: .2s;
}

#menuContainer.mk-menu .mk-card:hover {
  transform: translateY(-3px);
}

/* IMAGE */
#menuContainer.mk-menu .mk-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
@media(max-width:500px){
  #menuContainer.mk-menu .mk-img {
    height: 300px;
  }
}

/* BODY */
#menuContainer.mk-menu .mk-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#menuContainer.mk-menu .mk-name {
  font-size: 18px;
  font-weight: 800;
  color: #111;
}

#menuContainer.mk-menu .mk-prep {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* TAGS */
#menuContainer.mk-menu .mk-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

#menuContainer.mk-menu .tag {
  padding: 4px 8px;
  border-radius: 7px;
  font-size: 11px;
  background: #f3f3f3;
  color: #444;
}

.tag.spicy { background: #ffe8e5; color: #d62800; }
.tag.noog  { background: #e8ffe8; color: #0a7a07; }
.tag.fresh { background: #e7f4ff; color: #0a6b9a; }
.tag.disc  { background: #fff1a8; color: #7c6300; font-weight: 700; }

/* DESCRIPTION */
#menuContainer.mk-menu .mk-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}

#menuContainer.mk-menu .mk-more {
  color: #0a7a07;
  margin-left: 5px;
  font-weight: 700;
  cursor: pointer;
}

/* PRICE + ADD */
#menuContainer.mk-menu .mk-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

#menuContainer.mk-menu .p-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

#menuContainer.mk-menu .p-now {
  font-weight: 800;
  font-size: 18px;
}

#menuContainer.mk-menu .p-unit {
  font-size: 12px;
  color: #666;
}

#menuContainer.mk-menu .p-old {
  text-decoration: line-through;
  color: #777;
  font-size: 13px;
}

#menuContainer.mk-menu .mk-add {
  background: #FFE300;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  font-weight: 800;
  cursor: pointer;
}

#menuContainer.mk-menu .mk-na {
  color: #c33;
  font-weight: 700;
}

/* ================================
   POPUP (BOTTOM SHEET)
   ================================ */

#menuContainer .mk-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.36);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 999999;
  padding: 18px;
}

#menuContainer .mk-popup {
  width: 100%;
  max-width: 900px;
  background: #fff;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -12px 32px rgba(0,0,0,0.25);
  padding: 16px;
  max-height: 86vh;
  overflow-y: auto;
  animation: mkPopupSlide .28s ease-out;
  position: relative;
}

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

#menuContainer .mk-popup-close {
  position: absolute;
  right: 12px;
  top: 10px;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

#menuContainer .mk-popup-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

#menuContainer .mk-popup-head img {
  width: 160px;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
}

#menuContainer .mk-popup-title {
  font-size: 20px;
  font-weight: 800;
  color: #111;
}

#menuContainer .mk-popup-sub {
  font-size: 13px;
  color: #666;
}

#menuContainer .mk-popup-desc {
  font-size: 14px;
  color: #333;
  margin-top: 8px;
  line-height: 1.45;
}

#menuContainer .mk-popup-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  gap: 12px;
}

#menuContainer .mk-popup-price {
  font-weight: 800;
  font-size: 18px;
}

#menuContainer .mk-popup-old {
  text-decoration: line-through;
  color: #777;
  font-size: 13px;
}

#menuContainer .mk-popup-add {
  background: #FFE300;
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}
/* glossy discount badge */
#menuContainer.mk-menu .tag.disc {
  background: linear-gradient(180deg, #fff7cf 0%, #fff1a8 50%, #ffe88a 100%);
  color: #7c5300;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(124,83,0,0.10), inset 0 2px 6px rgba(255,255,255,0.6);
  border: 1px solid rgba(124,83,0,0.06);
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:12px;
}

/* spicy tag — clearer red pill */
#menuContainer.mk-menu .tag.spicy {
  background: linear-gradient(180deg,#fff2f0 0%, #ffecec 100%);
  color: #c72f0f;
  font-weight:700;
  border-radius:8px;
  padding:4px 8px;
  box-shadow: 0 2px 6px rgba(199,47,15,0.06);
  display:inline-flex;
  align-items:center;
  gap:6px;
}

/* no-onion/garlic tag */
#menuContainer.mk-menu .tag.noog {
  background: linear-gradient(180deg,#f1fff3 0%, #e6ffe8 100%);
  color: #0a7a07;
  font-weight:700;
  border-radius:8px;
  padding:4px 8px;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

/* small polish for fresh */
#menuContainer.mk-menu .tag.fresh { 
  background: linear-gradient(180deg,#f0fbff 0%, #e6f6ff 100%);
  color:#0a6b9a; font-weight:700; padding:4px 8px; border-radius:8px;
  display:inline-flex; align-items:center; gap:6px;
}


  
/* New menu card style end */


/* // NEW REVAMP CSS FOR MENU PAGE PROMO OFFER, HEADING, SUB-HEADING & SEARCH STICKY - START // */

/* ============================================
   MITHORA MOBILE-FIRST PROMO + MENU + SEARCH UI
   Clean, conflict-free, safe override block
   (Pankaj Final Version)
============================================ */

/* -------------------------------
   BEAUTIFUL PROMO BANNER (MOBILE FIRST)
-------------------------------- */
.promo-banner {
   margin-top: 150px !important; /* FIX */
  padding: 16px 14px;
  background: linear-gradient(135deg, #fff7c9, #ffe8a1);
  text-align: center;
  border-radius: 16px;
  max-width: 95%;
  box-shadow: 0 4px 15px rgba(255, 200, 80, 0.25);
  border: 1px solid rgba(255, 180, 0, 0.25);
}

.promo-banner p {
  font-size: 1.1rem;
  font-weight: 700;
  color: #6d4300;
  margin: 0;
  line-height: 1.4;
}

.promo-banner span {
  color: #c25400;
  font-weight: 800;
}

.promo-subtext {
  margin-top: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #8a5f00;
}



/* -------------------------------
   OUR HOMEMADE MENU + DESCRIPTION
-------------------------------- */
.sectionw h1 {
  font-size: 1.6rem;
  font-weight: 900;
  text-align: center;
  color: #8a5f00;
  margin: 14px auto 10px;
}

.menu-intro-description {
  background: #fff9e6;
  max-width: 95%;
  margin: 0 auto 20px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #ffe7a3;
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: center;
  color: #5a4100;
  box-shadow: 0 2px 12px rgba(255, 200, 90, 0.12);
}



/* -------------------------------
   STICKY SEARCH BAR (MOBILE-FIRST)
-------------------------------- */
.sticky-search-container {
  position: sticky;
  top: 72px; /* perfect under your fixed header */
  background: #fff;
  padding: 10px 0;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.search-inner {
  max-width: 95%;
  margin: auto;
  padding: 0 8px;
}

#globalSearch {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 1rem;
  background: #fffef8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* search highlight & jump to result start */

.mk-cat-highlight .mk-cat-title {
    background: #fff7cc;
    padding: 6px 10px;
    border-radius: 8px;
    display: inline-block;
    transition: 0.2s ease;
}

.mk-highlight {
    border: 2px solid #ffcc33 !important;
    box-shadow: 0 0 10px rgba(255, 200, 60, 0.4);
    border-radius: 12px;
}
/* search highlight & jump to result end */
.search-wrapper {
  position: relative;
}

/* clear search class */ 
.clear-search {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  cursor: pointer;
  color: #999;
  display: none;
  user-select: none;
}

.clear-search:hover {
  color: #333;
}

/* -------------------------------
   DESKTOP UPGRADES (AUTO ADJUST)
-------------------------------- */
@media(min-width: 600px) {
  .promo-banner {
    max-width: 1100px;
    padding: 20px;
  }
  .promo-banner p {
    font-size: 1.3rem;
  }

  .sectionw h1 {
    font-size: 2rem;
  }

  .menu-intro-description {
    max-width: 900px;
    font-size: 1.05rem;
  }

  #globalSearch {
    padding: 14px 18px;
    font-size: 1.05rem;
  }
}

/* ============================================
   END OF MOBILE-FIRST PROMO + MENU + SEARCH BLOCK
============================================ */


/* // NEW REVAMP CSS FOR MENU PAGE PROMO OFFER, HEADING, SUB-HEADING & SEARCH STICKY - END // */


/* // SEAR BAR RESIDE IN NAVIGATION HEADER START// */

/* =============================
   MENU PAGE ONLY – HEADER SEARCH
============================= */
/* ==========================================================
   MENU PAGE ONLY — TWO-ROW HEADER WITH FULL-WIDTH SEARCH BAR
   ========================================================== */

/* Entire menu page header is double row */
.page-menu .menu-header {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
}

/* Row 1 — logo & icons */
.page-menu .menu-header .top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Row 2 — full width search bar */
.page-menu .menu-header .jk-header-search {
    width: 100%;
}

.page-menu .menu-header .jk-header-search input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    background: #fffef8;
    font-size: 0.95rem;
    outline: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ======================
   Sticky Header Fix
   ====================== */
.page-menu .jk-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* Push page content down so header doesn't overlap */
.page-menu body,
.page-menu main,
.page-menu #menuPageWrapper,
.page-menu .main-wrapper {
 
}

/* ===============================================
   Desktop behavior — search integrated horizontally
   =============================================== */
@media (min-width: 900px) {
    .page-menu .menu-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 30px;
    }

    .page-menu .menu-header .jk-header-search {
        width: auto;
        max-width: 380px;
        margin-left: 20px;
    }

    .page-menu .menu-header .jk-header-search input {
        padding: 12px 18px;
        font-size: 1rem;
    }
}

/* ===============================================
   Hide search for all NON-menu pages
   =============================================== */
.jk-header-search {
    display: none !important;
}
.page-menu .jk-header-search {
    display: block !important;
}

/* ===============================================
   REMOVE OLD STICKY SEARCH (important)
   =============================================== */
.sticky-search-container,
.search-inner {
    display: none !important;
}


/* only for dekstop*/

/* HIDE DESKTOP HEADER ON MOBILE */
.desktop-nav-wrapper {
    display: none;
}

/* SHOW MOBILE VERSION ONLY ON MOBILE */
.jk-mobile-only {
    display: flex;
}

/* DESKTOP VIEW */
@media (min-width: 900px) {

    /* Show desktop header */
    .desktop-nav-wrapper {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    /* Hide mobile layout */
    .jk-mobile-only {
        display: none !important;
    }

    /* Desktop Layout */
    .desktop-left {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .jk-nav-desktop {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .desktop-search {
        flex: 1;
        max-width: 380px;
    }

    .desktop-search input {
        width: 100%;
        padding: 10px 15px;
        border-radius: 12px;
        border: 1px solid #ddd;
        background: #fffef7;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    .desktop-right {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    /* Hide mobile search */
    #globalSearchMobile {
        display: none !important;
    }
}
*/ only for desktop */


/* // SEAR BAR RESIDE IN NAVIGATION HEADER END// */

/* ===== INDEX PAGE STYLES ===== */
:root{ --yellow:#FFD84D; --black:#000; --bg:#fff; --text:#222; }
    *{box-sizing:border-box;}
    body{margin:0;font-family:'Poppins',sans-serif;background:#fff;color:var(--text);}

    /* Header */
    header{position:sticky;top:0;z-index:1000;background:#000;box-shadow:0 2px 8px rgba(0,0,0,.08);}
    .nav-wrap{max-width:1100px;margin:0 auto;padding:12px 16px;}

    /* Navigation (desktop + mobile) */
    .menu{
      display:flex;align-items:center;justify-content:center;
      gap:24px;flex-wrap:wrap;
    }
    .menu a{
      text-decoration:none;background:linear-gradient(135deg,#FFE86B,#FFD84D);
      color:#000;padding:8px 16px;border-radius:24px;font-weight:600;border:1px solid #111;
      transition:.3s;white-space:nowrap;
    }
    .menu a:hover{transform:translateY(-2px);box-shadow:0 8px 18px rgba(255,216,77,.45);}
    
    /* Mobile scroll */
    @media(max-width:768px){
      .nav-wrap{padding:10px 8px;}
      .menu{
        flex-wrap:nowrap;overflow-x:auto;white-space:nowrap;gap:14px;-webkit-overflow-scrolling:touch;scrollbar-width:none;
      }
      .menu::-webkit-scrollbar{display:none;}
      .menu a{padding:7px 14px;font-size:.9rem;}
      .logo-box img{height:78px;}
    }

    /* Logo */
    .logo-box{text-align:center;padding:0px 0 8px;}
    .logo-box img{height:150px;width:auto;}

    /* Hero */
    .hero{position:relative;height:5vh;min-height:420px;
      background:url('images/banner.jpg') center/cover no-repeat;
      display:flex;align-items:center;justify-content:center;text-align:center;color:#fff;}
    .hero::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.45);}
    .hero-inner{position:relative;z-index:2;}
    .hero h1{color:var(--yellow);font-size:2.8rem;margin:0 0 6px;}
    .hero p{margin:0 0 18px;}
    .cta{background:linear-gradient(135deg,#FFE86B,#FFD84D);padding:12px 26px;border-radius:32px;font-weight:700;cursor:pointer;border:none;}

    /* Category Section */
    .section{max-width:1100px;margin:36px auto;padding:0 16px;}
    .section h2{border-left:6px solid var(--yellow);padding-left:10px;}

    .tabs{display:flex;gap:10px;margin-bottom:16px;}
    .tabs button{border:2px solid #111;border-radius:24px;padding:8px 16px;background:#fff;cursor:pointer;font-weight:600;}
    .tabs button.active{background:var(--yellow);}

    .grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
    @media(max-width:992px){.grid{grid-template-columns:repeat(2,1fr);}}
    @media(max-width:600px){.grid{grid-template-columns:1fr;}}

    .card{border:1px solid #eee;border-radius:16px;overflow:hidden;box-shadow:0 8px 20px rgba(0,0,0,.06);}
    .card img{width:100%;height:170px;object-fit:cover;}
    .card-body{padding:14px;}
    .mini {
  margin-top:10px;
  display:inline-block;
  background:linear-gradient(135deg,#FFE86B,#FFD84D);
  padding:10px 20px;
  border-radius:30px;
  border:1px solid #111;
  font-weight:600;
  color:#000;
  text-decoration:none;
  transition:0.35s ease;
  box-shadow:0 4px 12px rgba(0,0,0,.12);
}

.mini:hover {
  transform: translateY(-3px);
  box-shadow:0 8px 22px rgba(255,216,77,.45);
}
/* Trail offer start

/* Desktop structure with balanced horizontal layout */
.offer-wrapper {
  display: flex;
  max-width: 1100px;
  margin: 20px auto;
  padding: 16px;
  background: linear-gradient(96deg,#fffbe7,#faeab5);
  border-radius: 20px;
  box-shadow: 0 3px 20px rgba(220,177,47,0.09);
  align-items: center;
  justify-content: space-between;
}

/* Left: Title + items */
.offer-left {
  flex: 1;
  min-width: 250px;
}
.offer-left h2 {
  font-size: 2.2rem;
  color: #d8a804;
  margin-bottom: 8px;
}
.offer-left p {
  font-size: 1.1rem;
  color: #6b540b;
  margin-bottom: 12px;
}

/* Center: Images large with hover touch effect */
.offer-center {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 14px;
}
.offer-img {
  width: 90px;
  height: 90px;
  border-radius: 15px;
  object-fit: cover;
  border: 2px solid #ffd84d;
  box-shadow: 0 3px 15px rgba(224,154,28,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-img:hover {
  transform: scale(1.15);
  box-shadow: 0 0 22px #ffe065;
  z-index: 10;
}


/* Right: Connect + Trial button centered */
.offer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.connect-text {
  font-size: 1.1rem;
  font-weight: 600;
}
.trial-offer-btn {
  margin-top: 14px;
  padding: 10px 25px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  background: linear-gradient(92deg,#fff7b0 0%,#ffe065 78%,#ffd84d 100%);
  border-radius: 16px;
  box-shadow: 0 3px 20px rgba(245, 210, 74, 0.25);
  animation: shine 2s infinite linear;
}
.limited-offer {
  margin-top: 8px;
  padding: 5px 14px;
  background: linear-gradient(96deg,#ffd84d,#ffec6d);
  font-weight: 700;
  font-size: 1.1rem;
  color: #8d3900;
  border-radius: 12px;
  box-shadow: 0 1px 8px #ffd84d7c;
}

/* Responsive adjustments */
@media(max-width: 768px) {
  .offer-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 12px;
  }
  .offer-left, .offer-center, .offer-right {
    width: 100%;
    text-align: center;
  }
  .offer-center {
    justify-content: center;
  }
  .offer-img {
    width: 90px;
    height: 90px;
  }
  .trial-offer-btn {
    margin-top: 16px;
  }
}

@media (max-width: 768px) {
  /* Reduce vertical spacing for better fit */
  
  /* Trial offer block */
  .trial-offer-btn {
    margin-top: 10px !important;
    margin-bottom: 6px !important;  /* less bottom space */
    padding: 8px 20px !important;  /* slightly smaller padding to save space */
  }

  /* Logo spacing */
  .offer-left img, /* or your logo class */
  .offer-left h2 {
    margin-bottom: 8px !important; /* reduce space below logo/title */
  }
  
  /* Connect with us text */
  .connect-text {
    margin-top: 6px !important; /* reduce top space */
    margin-bottom: 8px !important; /* reduce bottom space */
  }
}

/* Trail offer end*/

/* carousel start */

.blog-carousel-wrapper {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto 30px auto;
  position: relative;
  width: 100%;
}

.blog-carousel-scroller {
  overflow: hidden;
  width: 100%;
}

.blog-carousel-group {
  display: flex;
  flex-wrap: nowrap;
  width: 200%; /* double width for 2 sets */
  animation: scroll-left 30s linear infinite;
  gap: 16px;
  will-change: transform;
}

.blog-carousel-wrapper:hover .blog-carousel-group {
  animation-play-state: paused;
}

.blog-card {
  flex: 0 0 auto;
  width: 280px;
  background: #fffbe7;
  border-radius: 16px;
  padding: 16px;
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(220,177,47,0.15);
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.blog-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  color: #d8a804;
  font-weight: 700;
}

.blog-card p {
  margin: 0 0 12px 0;
  font-size: 1rem;
  color: #444;
  flex-grow: 1;
}

.read-cta {
  background-color: #ff4d4d; /* red color */
  color: white;
  padding: 8px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease;
}

.read-cta:hover {
  background-color: #ff1a1a;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .blog-card {
    width: 220px;
  }
}


.section-heading {
  text-align: center;
  font-size: 1.8rem;
  color: #d8a804;
  margin-bottom: 18px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  display: block;
}


/* blog carousel end */

/* FAQ */

.faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-section h2 {
  font-weight: 900;
  color: #aa6a00;
  text-align: center;
  margin-bottom: 30px;
}

.faq-section .faq {
  border: 1px solid #f0c040;
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 16px;
  background: #fffdeb;
  box-shadow: 0 2px 6px rgba(240, 192, 64, 0.2);
  transition: background 0.3s ease;
}

.faq-section .faq summary {
  font-size: 18px;
  font-weight: 700;
  color: #b46900;
  cursor: pointer;
  padding-left: 28px;
  position: relative;
  list-style: none;
}

.faq-section .faq summary::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 22px;
  color: #b46900;
  transition: transform 0.3s ease;
}

.faq-section .faq[open] summary::before {
  content: "-";
  transform: rotate(180deg);
}

.faq-section .faq p {
  font-size: 16px;
  line-height: 1.6;
  color: #5a3b00;
  margin-top: 12px;
}

.faq-section .faq:hover {
  background: #fff2b2;
  border-color: #d4aa00;
}
/*FAQ*/

/* ===== INDEX PAGE STYLES ===== */
.footer {
      background: #fff9e3;
      padding: 30px 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #5a3b00;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
      gap: 20px;
    }
    .footer-left {
      flex: 1 1 400px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .footer-logo {
      max-width: 180px;
      height: auto;
      object-fit: contain;
      display: block;
    }
    .footer-tagline {
      font-weight: 600;
      font-size: 16px;
      color: #aa6a00;
      margin: 0;
    }
    .footer-timings {
      font-weight: 500;
      font-size: 14px;
      color: #aa6a00;
      margin: 4px 0 0;
    }
    .footer-right {
      flex: 1 1 200px;
      display: flex;
      justify-content: flex-end;
      gap: 20px;
      align-items: center;
    }
    .footer-icon {
      width: 30px;
      height: 30px;
      object-fit: contain;
      opacity: 0.9;
      transition: transform 0.3s ease;
      cursor: pointer;
    }
    .footer-icon:hover {
      transform: scale(1.1);
    }
    .footer-bottom {
      max-width: 1200px;
      margin: 25px auto 0;
      text-align: center;
    }
    .footer-fssai {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      margin-bottom: 10px;
      justify-content: center;
      color: #5a3b00;
    }
    .fssai-icon {
      height: 40px;
      width: auto;
    }
    .footer-copy {
      font-size: 13px;
      color: #887333;
      font-weight: 600;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-left,
      .footer-right {
        flex: 1 1 100%;
        justify-content: center;
      }
      .footer-right {
        margin-top: 15px;
        gap: 30px;
      }
      .footer-bottom {
        margin-top: 20px;
      }
      .footer-fssai {
        justify-content: center;
      }
    }

/* ===== ABOUT PAGE STYLES ===== */
:root{ --yellow:#FFD84D; --black:#000; --text:#222; }
*{box-sizing:border-box;}
body{margin:0;font-family:'Poppins',sans-serif;color:var(--text);background:#fff;}
header{position:sticky;top:0;z-index:1000;background:#000;}
.nav-wrap{max-width:1100px;margin:auto;padding:12px 16px;}
.menu{display:flex;align-items:center;justify-content:center;gap:24px;flex-wrap:wrap;}
.menu a{
text-decoration:none;background:linear-gradient(135deg,#FFE86B,#FFD84D);
color:#000;padding:8px 16px;border-radius:24px;font-weight:600;
border:1px solid #111;transition:.3s;white-space:nowrap;
}
.menu a:hover{transform:translateY(-2px);box-shadow:0 8px 18px rgba(255,216,77,.45);}

@media(max-width:768px){
.menu{
flex-wrap:nowrap;overflow-x:auto;white-space:nowrap;gap:14px;
scrollbar-width:none;-webkit-overflow-scrolling:touch;
}
.menu::-webkit-scrollbar{display:none;}
.menu a{padding:7px 14px;font-size:.9rem;}
.logo-box img{height:78px;}
}

.logo-box{text-align:center;padding:22px 0 8px;}
.logo-box img{height:90px;width:auto;}

.section{max-width:900px;margin:30px auto 40px;padding:0 16px;}
.section h1{font-size:2rem;margin-bottom:14px;font-weight:600;}
.section h2{margin-top:28px;margin-bottom:10px;font-size:1.4rem;font-weight:600;color:#000;}
.section p{margin-bottom:12px;line-height:1.7;color:#444;}
ul{padding-left:18px;margin:0 0 16px;}
ul li{margin-bottom:6px;color:#444;font-weight:500;}
.highlight-box{
background:#FFF9D7;border:1px solid #E6C751;padding:18px;border-radius:10px;margin:20px 0;
}

/* ===== ABOUT PAGE STYLES ===== */
.footer {
      background: #fff9e3;
      padding: 30px 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #5a3b00;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
      gap: 20px;
    }
    .footer-left {
      flex: 1 1 400px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .footer-logo {
      max-width: 180px;
      height: auto;
      object-fit: contain;
      display: block;
    }
    .footer-tagline {
      font-weight: 600;
      font-size: 16px;
      color: #aa6a00;
      margin: 0;
    }
    .footer-timings {
      font-weight: 500;
      font-size: 14px;
      color: #aa6a00;
      margin: 4px 0 0;
    }
    .footer-right {
      flex: 1 1 200px;
      display: flex;
      justify-content: flex-end;
      gap: 20px;
      align-items: center;
    }
    .footer-icon {
      width: 30px;
      height: 30px;
      object-fit: contain;
      opacity: 0.9;
      transition: transform 0.3s ease;
      cursor: pointer;
    }
    .footer-icon:hover {
      transform: scale(1.1);
    }
    .footer-bottom {
      max-width: 1200px;
      margin: 25px auto 0;
      text-align: center;
    }
    .footer-fssai {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      margin-bottom: 10px;
      justify-content: center;
      color: #5a3b00;
    }
    .fssai-icon {
      height: 40px;
      width: auto;
    }
    .footer-copy {
      font-size: 13px;
      color: #887333;
      font-weight: 600;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-left,
      .footer-right {
        flex: 1 1 100%;
        justify-content: center;
      }
      .footer-right {
        margin-top: 15px;
        gap: 30px;
      }
      .footer-bottom {
        margin-top: 20px;
      }
      .footer-fssai {
        justify-content: center;
      }
    }

/* ===== BLOG PAGE STYLES ===== */
:root{ --yellow:#FFD84D; --black:#000; --text:#222; }
*{box-sizing:border-box;}
body{margin:0;font-family:'Poppins',sans-serif;color:var(--text);background:#fff;}
/* HEADER */
header{position:sticky;top:0;z-index:1000;background:#000;box-shadow:0 2px 8px rgba(0,0,0,.1);}
.nav-wrap{max-width:1100px;margin:auto;padding:12px 16px;}
.menu{display:flex;align-items:center;justify-content:center;gap:24px;flex-wrap:wrap;}
.menu a{text-decoration:none;background:linear-gradient(135deg,#FFE86B,#FFD84D);color:#000;padding:8px 16px;border-radius:24px;font-weight:600;border:1px solid #111;transition:.3s;white-space:nowrap;}
.menu a:hover{transform:translateY(-2px);box-shadow:0 8px 18px rgba(255,216,77,.45);}
@media(max-width:768px){
  .menu{flex-wrap:nowrap;overflow-x:auto;white-space:nowrap;gap:14px;scrollbar-width:none;-webkit-overflow-scrolling:touch;}
  .menu::-webkit-scrollbar{display:none;}
  .menu a{padding:7px 14px;font-size:.9rem;}
  .logo-box img{height:78px;}
}
/* LOGO */
.logo-box{text-align:center;padding:22px 0 8px;}
.logo-box img{height:90px;width:auto;}
/* CONTENT */
.section{max-width:900px;margin:24px auto 40px;padding:0 16px;}
.section h1{font-size:2rem;margin-bottom:14px;}
.intro{color:#444;margin-bottom:18px;}
.story{background:#fff;border:1px solid #eee;border-radius:12px;padding:16px;margin-bottom:18px;box-shadow:0 6px 16px rgba(0,0,0,.06);}
.story h2{margin:0 0 6px;font-size:1.2rem}
.meta{font-size:.9rem;color:#666;margin-bottom:8px;}
.story p{margin:0 0 10px;color:#444;line-height:1.7;}
.story a.read{display:inline-block;margin-top:6px;background:linear-gradient(135deg,#FFE86B,#FFD84D);color:#000;text-decoration:none;font-weight:600;border-radius:10px;padding:8px 12px;border:1px solid #111;}
.story a.read:hover{transform:translateY(-2px);box-shadow:0 8px 18px rgba(255,216,77,.4);}

/* ===== BLOG PAGE STYLES ===== */
.footer {
      background: #fff9e3;
      padding: 30px 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #5a3b00;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
      gap: 20px;
    }
    .footer-left {
      flex: 1 1 400px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .footer-logo {
      max-width: 180px;
      height: auto;
      object-fit: contain;
      display: block;
    }
    .footer-tagline {
      font-weight: 600;
      font-size: 16px;
      color: #aa6a00;
      margin: 0;
    }
    .footer-timings {
      font-weight: 500;
      font-size: 14px;
      color: #aa6a00;
      margin: 4px 0 0;
    }
    .footer-right {
      flex: 1 1 200px;
      display: flex;
      justify-content: flex-end;
      gap: 20px;
      align-items: center;
    }
    .footer-icon {
      width: 30px;
      height: 30px;
      object-fit: contain;
      opacity: 0.9;
      transition: transform 0.3s ease;
      cursor: pointer;
    }
    .footer-icon:hover {
      transform: scale(1.1);
    }
    .footer-bottom {
      max-width: 1200px;
      margin: 25px auto 0;
      text-align: center;
    }
    .footer-fssai {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      margin-bottom: 10px;
      justify-content: center;
      color: #5a3b00;
    }
    .fssai-icon {
      height: 40px;
      width: auto;
    }
    .footer-copy {
      font-size: 13px;
      color: #887333;
      font-weight: 600;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-left,
      .footer-right {
        flex: 1 1 100%;
        justify-content: center;
      }
      .footer-right {
        margin-top: 15px;
        gap: 30px;
      }
      .footer-bottom {
        margin-top: 20px;
      }
      .footer-fssai {
        justify-content: center;
      }
    }

/* ===== CONTACT PAGE STYLES ===== */
:root{ --yellow:#FFD84D; --black:#000; --text:#222; }
*{box-sizing:border-box;}
body{margin:0;font-family:'Poppins',sans-serif;color:var(--text);background:#fff;}

header{position:sticky;top:0;z-index:1000;background:#000;}
.nav-wrap{max-width:1100px;margin:auto;padding:12px 16px;}
.menu{display:flex;align-items:center;justify-content:center;gap:24px;flex-wrap:wrap;}
.menu a{
text-decoration:none;background:linear-gradient(135deg,#FFE86B,#FFD84D);
color:#000;padding:8px 16px;border-radius:24px;font-weight:600;
border:1px solid #111;transition:.3s;white-space:nowrap;
}
.menu a:hover{transform:translateY(-2px);box-shadow:0 8px 18px rgba(255,216,77,.45);}

@media(max-width:768px){
.menu{
flex-wrap:nowrap;overflow-x:auto;white-space:nowrap;gap:14px;
scrollbar-width:none;-webkit-overflow-scrolling:touch;
}
.menu::-webkit-scrollbar{display:none;}
.menu a{padding:7px 14px;font-size:.9rem;}
}

.logo-box{text-align:center;padding:22px 0 12px;}
.logo-box img{height:90px;width:auto;}

.section{max-width:850px;margin:24px auto;padding:0 16px;}
.section h1{text-align:center;margin-bottom:22px;font-size:2rem;font-weight:600;}

.info-box{
background:#fff;border:1px solid #eee;border-radius:14px;padding:20px;
box-shadow:0 6px 16px rgba(0,0,0,.08);text-align:center;
}
.info-box p{margin:8px 0;font-size:1rem;color:#333;}

.whatsapp-btn{
display:inline-block;margin-top:12px;
background:#25D366;color:#fff;padding:10px 18px;border-radius:28px;
font-weight:600;text-decoration:none;transition:.3s;
}
.whatsapp-btn:hover{background:#1ebc59;}

.map-wrap{margin-top:26px;border-radius:14px;overflow:hidden;border:1px solid #ddd;}
.map-wrap iframe{width:100%;height:350px;border:0;}

/* ===== CONTACT PAGE STYLES ===== */
.footer {
      background: #fff9e3;
      padding: 30px 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #5a3b00;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
      gap: 20px;
    }
    .footer-left {
      flex: 1 1 400px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .footer-logo {
      max-width: 180px;
      height: auto;
      object-fit: contain;
      display: block;
    }
    .footer-tagline {
      font-weight: 600;
      font-size: 16px;
      color: #aa6a00;
      margin: 0;
    }
    .footer-timings {
      font-weight: 500;
      font-size: 14px;
      color: #aa6a00;
      margin: 4px 0 0;
    }
    .footer-right {
      flex: 1 1 200px;
      display: flex;
      justify-content: flex-end;
      gap: 20px;
      align-items: center;
    }
    .footer-icon {
      width: 30px;
      height: 30px;
      object-fit: contain;
      opacity: 0.9;
      transition: transform 0.3s ease;
      cursor: pointer;
    }
    .footer-icon:hover {
      transform: scale(1.1);
    }
    .footer-bottom {
      max-width: 1200px;
      margin: 25px auto 0;
      text-align: center;
    }
    .footer-fssai {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      margin-bottom: 10px;
      justify-content: center;
      color: #5a3b00;
    }
    .fssai-icon {
      height: 40px;
      width: auto;
    }
    .footer-copy {
      font-size: 13px;
      color: #887333;
      font-weight: 600;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-left,
      .footer-right {
        flex: 1 1 100%;
        justify-content: center;
      }
      .footer-right {
        margin-top: 15px;
        gap: 30px;
      }
      .footer-bottom {
        margin-top: 20px;
      }
      .footer-fssai {
        justify-content: center;
      }
    }

/* ===== MENU PAGE STYLES ===== */
:root {
      --yellow: #FFD84D;
      --black: #000;
      --text: #222;
    }
    body {
      margin: 0;
      font-family: Poppins, sans-serif;
      background: #fff;
      color: var(--text);
    }
    header {
  background: var(--black);
  padding: 12px 16px;
  text-align: center;
}
    .logo-box {
  text-align: center;
  margin: .5px 0;
  background: #fff;
}
.logo-box img {
  height: 90px;
  width: auto;
}
    nav.menu {
  display: inline-flex;
  gap: 22px;
  white-space: nowrap;
}
    nav.menu::-webkit-scrollbar {
      display: none; /* Chrome, Safari */
    }
    nav.menu a {
  text-decoration: none;
  background: linear-gradient(135deg, var(--yellow), #FFD84D);
  color: var(--black);
  padding: 8px 16px;
  border-radius: 24px;
  font-weight: 600;
  border: 1px solid #111;
}
    nav.menu a:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 18px rgba(255, 216, 77, 0.45);
    }
    .section {
      max-width: 1100px;
      margin: 36px auto;
      padding: 0 16px;
    }
    .section h1,
    .section h2 {
      color: #000;
      margin-bottom: 10px;
      text-align: center;
    }
    .section p {
      text-align: center;
      color: #555;
      margin-bottom: 20px;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
    }
    .card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid #eee;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
      text-align: center;
      padding-bottom: 36px;
      position: relative;
    }
    .card img {
      width: 100%;
      height: 170px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }
    .card-body {
      padding: 14px;
    }
    .card-body strong {
      font-size: 17px;
      display: block;
      margin-bottom: 4px;
    }
    .desc {
      font-size: 14px;
      color: #555;
      line-height: 1.4em;
      height: auto;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }
    /* Oval Coming Soon label and clock icon */
    .coming-soon-badge {
      position: absolute;
      bottom: 48px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--yellow);
      border-radius: 24px;
      padding: 6px 20px;
      font-size: 13px;
      font-weight: 600;
      color: var(--black);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      justify-content: center;
    }
    .coming svg {
      width: 14px;
      height: 14px;
      fill: var(--black);
    }
    /* Ready to Order Section */
    .ready-to-order {
      text-align: center;
      padding: 20px 16px;
      background: #fff9d9;
      border: 1px solid #f0e4a3;
      border-radius: 14px;
      margin: 30px auto;
      max-width: 600px;
    }
    .ready-to-order p {
      font-size: 18px;
      margin: 8px 0;
      color: #444;
    }
    .ready-to-order a.mini {
      display: inline-block;
      background: var(--yellow);
      color: var(--black);
      padding: 12px 26px;
      border-radius: 30px;
      font-weight: 600;
      text-decoration: none;
      border: 1px solid #111;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
      margin: 12px 0;
      cursor: pointer;
      transition: 0.3s;
    }
    .ready-to-order a.mini:hover {
      box-shadow: 0 8px 22px rgba(255, 216, 77, 0.45);
      transform: translateY(-3px);
    }
    /* Delivery Cards Section */
    .delivery-future {
      display: flex;
      justify-content: center;
      gap: 20px;
      padding: 20px 16px;
      max-width: 900px;
      margin: 0 auto 40px auto;
      flex-wrap: wrap;
    }
    .delivery-future .card {
      flex: 1 1 300px;
      background: var(--yellow);
      border: 1px solid #111;
      border-radius: 18px;
      padding: 20px;
      color: var(--black);
      box-shadow: 0 4px 12px rgba(0,0,0,0.12);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
    .delivery-future .card h3 {
      margin-top: 0;
      margin-bottom: 6px;
      font-size: 20px;
      font-weight: 700;
    }
    .delivery-future .card p {
      margin: 0;
      line-height: 1.4em;
      text-align: center;
    }
    /* Inline oval blocks for Zomato and Swiggy */
    .partners {
      display: flex;
      gap: 10px;
      margin-top: 8px;
    }
    .partner-block {
      background: #000;
      color: var(--yellow);
      padding: 6px 24px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 14px;
      cursor: default;
      user-select: none;
    }
    /* Map icon below heading */
    .map-icon {
      width: 32px;
      height: 32px;
      fill: var(--black);
      margin-top: 4px;
      margin-bottom: 4px;
    }
    /* Google Maps button style */
    .btn-google {
      display: inline-block;
      background: var(--black);
      color: var(--yellow);
      font-weight: 700;
      padding: 10px 26px;
      border-radius: 30px;
      text-decoration: none;
      margin-top: 10px;
      transition: background-color 0.3s;
    }
    .btn-google:hover {
      background: #444;
    }
	.card {
  position: relative;
  padding-bottom: 60px; /* Increase padding to make space for label */
}

.coming {
  position: absolute;
  bottom: 36px; /* Positioned a bit higher */
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  border-radius: 24px;
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  white-space: nowrap;
}

.desc {
  /* Ensure normal wrapping, no overlap */
  white-space: normal;
  line-height: 1.4em;
  overflow-wrap: break-word;
}

/* Filter */


/* Container for filter section */
/*.filter-section {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background-color: #fffbe6;
  padding: 12px 16px;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto 24px;
}
.filter-heading {
  font-size: 20px;
  font-weight: 700;
  margin-right: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
select {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  background: white;
  cursor: pointer;
}*/


/* Menu card base */
/* Menu card base */
.menu-card {
  display: flex;
  border: 2.5px solid #eee;
  border-radius: 14px;
  background: white;
  max-width: 900px;
  margin: 12px auto;
  padding: 16px;
  gap: 24px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* Text container */
.card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-left: 8px;
}

/* Category */
.category-top {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  color: #ffb400;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Product name */
.item-name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Description limited to 2 lines */
.item-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Tag row */
.item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #444;
}
.item-tags span {
  white-space: nowrap;
}

/* Image + Buttons Block */
.media-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

/* Product image */
.item-image {
  width: 160px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

/* Order buttons */
.order-cta {
  display: flex;
  gap: 12px;
}
.order-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.order-btn img {
  width: 20px;
  height: 20px;
}
.order-btn.whatsapp { background: #25d366; }
.order-btn.zomato { background: #ff2828; }
.order-btn.swiggy { background: #ff6f00; }

/* ✅ Mobile Responsive */
@media (max-width: 768px) {

  .menu-card {
    max-width: 92vw;
    padding: 14px 16px;
    gap: 12px;
  }

  .item-name {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .item-desc {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .item-tags {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .item-image {
    width: 95px;
    height: 95px;
  }

  .order-cta {
    gap: 8px;
  }

  .order-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .order-btn img {
    width: 18px;
    height: 18px;
  }
}



/* menu card based*/

/* FAQ */

.faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-section h2 {
  font-weight: 900;
  color: #aa6a00;
  text-align: center;
  margin-bottom: 30px;
}

.faq-section .faq {
  border: 1px solid #f0c040;
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 16px;
  background: #fffdeb;
  box-shadow: 0 2px 6px rgba(240, 192, 64, 0.2);
  transition: background 0.3s ease;
}

.faq-section .faq summary {
  font-size: 18px;
  font-weight: 700;
  color: #b46900;
  cursor: pointer;
  padding-left: 28px;
  position: relative;
  list-style: none;
}

.faq-section .faq summary::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 22px;
  color: #b46900;
  transition: transform 0.3s ease;
}

.faq-section .faq[open] summary::before {
  content: "-";
  transform: rotate(180deg);
}

.faq-section .faq p {
  font-size: 16px;
  line-height: 1.6;
  color: #5a3b00;
  margin-top: 12px;
}

.faq-section .faq:hover {
  background: #fff2b2;
  border-color: #d4aa00;
}
/*FAQ*/

/* ===== MENU PAGE STYLES ===== */
.footer {
      background: #fff9e3;
      padding: 30px 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #5a3b00;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
      gap: 20px;
    }
    .footer-left {
      flex: 1 1 400px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .footer-logo {
      max-width: 180px;
      height: auto;
      object-fit: contain;
      display: block;
    }
    .footer-tagline {
      font-weight: 600;
      font-size: 16px;
      color: #aa6a00;
      margin: 0;
    }
    .footer-timings {
      font-weight: 500;
      font-size: 14px;
      color: #aa6a00;
      margin: 4px 0 0;
    }
    .footer-right {
      flex: 1 1 200px;
      display: flex;
      justify-content: flex-end;
      gap: 20px;
      align-items: center;
    }
    .footer-icon {
      width: 30px;
      height: 30px;
      object-fit: contain;
      opacity: 0.9;
      transition: transform 0.3s ease;
      cursor: pointer;
    }
    .footer-icon:hover {
      transform: scale(1.1);
    }
    .footer-bottom {
      max-width: 1200px;
      margin: 25px auto 0;
      text-align: center;
    }
    .footer-fssai {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      margin-bottom: 10px;
      justify-content: center;
      color: #5a3b00;
    }
    .fssai-icon {
      height: 40px;
      width: auto;
    }
    .footer-copy {
      font-size: 13px;
      color: #887333;
      font-weight: 600;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-left,
      .footer-right {
        flex: 1 1 100%;
        justify-content: center;
      }
      .footer-right {
        margin-top: 15px;
        gap: 30px;
      }
      .footer-bottom {
        margin-top: 20px;
      }
      .footer-fssai {
        justify-content: center;
      }
    }
/* ===== Logo Transparency Fix (Force Override) ===== */
.logo-box img,
.logo img,
header img {
  background: transparent !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  border: none !important;
  box-shadow: none !important;
}

.logo-box,
.logo {
  background: transparent !important;
}
/* ===== Logo Size Fix ===== */
.logo-box img,
header .logo img {
  height: 200px;         /* adjust this if you want it bigger */
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-box img,
  header .logo img {
    height: 100px;       /* smaller for mobile */
  }
}

/* home page category image & menu images ratio */

.item-image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
}

.grid img {
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* home page category image & menu images ratio */

/* Gray out automatically when unavailable */
.menu-card.disabled {
  opacity: 0.6;
  filter: grayscale(100%);
  pointer-events: none;
  position: relative;
}

/* Add "Coming Soon" overlay on menu card*/
.menu-card[data-available="false"]::after {
  content: "Coming Soon";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 230, 150, 0.95);
  color: ;
  font-weight: 700;
  font-size: 16px;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Disable button hover when unavailable */
.menu-card[data-available="false"] .order-btn {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* New Food Block */

.promo-banner {
  margin: 20px auto;
  padding: 14px 20px;
  max-width: 900px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  background: linear-gradient(135deg, #ff9a3d, #ff5e3a);
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.promo-banner span {
  font-size: 18px;
  font-weight: 700;
}
.price-box {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.price-box .old-price {
  color: #888;
  text-decoration: line-through;
  font-size: 16px;
}
.menu-card[data-available="false"] {
  opacity: 0.45;
  pointer-events: none;
}

.menu-card[data-available="false"] .order-btn {
  display: none;
}


/* Fix WhatsApp CTA alignment on mobile */
@media (max-width: 768px) {
  .media-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }

  .order-cta {
    display: flex;
    gap: 10px;
    position: static !important;   /* prevents overlap */
    justify-content: flex-end;
    margin-top: 4px;
  }

  .order-btn {
    width: 34px !important;
    height: 34px !important;
  }

  .order-btn img {
    width: 18px !important;
    height: 18px !important;
  }
}
.item-tags {
  display: flex;
  gap: 6px 12px;
  margin-bottom: 8px;
  font-size: 16px;
  color: #444;
  align-items: center;
}

.item-tags span {
  display: flex;
  align-items: center;
  line-height: 1.2;
  white-space: nowrap;
}


/* Price on quauntity */

.price-box {
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-box .price {
  font-weight: 700;
  font-size: 18px;
  color: #000;
}

.price-box .unit {
  font-size: 14px;
  color: #666;
}

.price-box .old-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}


/* Blog Banner */
.blog-banner {
  width: 100%;
  height: 240px;
  background: url('images/banner.jpg') center/cover no-repeat; /* <-- your banner */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
}

.blog-logo {
  width: 180px;
  height: auto;
  z-index: 2;
}

@media(max-width: 768px) {
  .blog-banner {
    height: 180px;
  }
  .blog-logo {
    width: 140px;
  }
}

/* Blog List Image */

/* Blog Listing Layout */
.story {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #f2e9d8;
}

.story-content {
  flex: 1;
}

.story-thumb {
  width: 150px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
}

/* Mobile Responsive */
@media(max-width: 768px) {
  .story {
    flex-direction: column-reverse;
    gap: 15px;
  }
  .story-thumb {
    width: 100%;
    height: 180px;
  }
}
/* Prep Time */
.prep-time {
  font-size: 13px;
  font-weight: 600;
  color: #b36b00;  /* warm Mithora brown-orange */
  margin: 2px 0 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}


/* Why Us in Menu */

.why-mithora {
  background: #fffbe9;
  padding: 40px 20px;
  margin: 40px auto;
  border-radius: 16px;
  max-width: 1150px;
  text-align: center;
}

.why-mithora h2 {
  font-size: 28px;
  font-weight: 700;
  color: #7d4b0b;
  margin-bottom: 10px;
}

.why-sub {
  color: #9c6b1c;
  font-size: 16px;
  margin-bottom: 30px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.why-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  text-align: center;
  transition: transform .2s ease;
}

.why-box:hover {
  transform: translateY(-4px);
}

.why-box img {
  width: 48px;
  margin-bottom: 12px;
}

.why-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #744a0e;
}

.why-box p {
  font-size: 14px;
  color: #6d5c3b;
}

/* Popup modal menu */
/* Background overlay */
.scroll-offer-popup-center {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.55);
  display: none;
  opacity: 0;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.3s ease;
}

/* Visible */
.scroll-offer-popup-center.show {
  display: flex;
  opacity: 1;
}

/* Scroll popup glossy */

/* ---------------------------------------------
   PREMIUM SLIDE-IN GLOSSY OFFER POPUP
----------------------------------------------*/
.glossy-offer {
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.glossy-box {
  width: 90%;
  max-width: 360px;
  padding: 24px 26px;
  border-radius: 18px;
  text-align: center;
  position: relative;

  /* Premium orange gradient */
  background: linear-gradient(145deg, #ffffff, #fff3e6);
  
  /* Soft glow border */
  border: 2px solid rgba(255, 138, 76, 0.25);

  /* Premium soft shadow */
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.15),
    0 0 18px rgba(255, 138, 76, 0.18);
}

/* Slide in animation */
.slide-in {
  animation: slideInSmooth 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInSmooth {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Close button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
  color: #444;
  opacity: 0.7;
  transition: 0.2s;
}
.popup-close:hover { opacity: 1; }

/* Title */
.glossy-title {
  font-size: 20px;
  color: #ff6c1a;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Main text */
.glossy-text {
  font-size: 16px;
  color: #333;
  margin-top: 8px;
  line-height: 1.5;
}

.highlight {
  color: #e86400;
  font-weight: 700;
}

.subline {
  font-size: 13px;
  color: #666;
}

/* Free Delivery Tag */
.delivery-tag {
  background: linear-gradient(135deg, #e9ffe7, #d6ffda);
  color: #0b7a2a;
  padding: 10px 12px;
  border-radius: 10px;
  margin: 15px 0;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #b4f1b0;
}

/* Order Button */
.glossy-btn {
  background: linear-gradient(135deg, #ff7b2e, #ff6a00);
  color: white;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 16px;
  text-decoration: none;
  display: block;
  font-weight: 600;
  transition: 0.25s;
  box-shadow: 0 4px 15px rgba(255, 105, 0, 0.35);
}

.glossy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(255, 105, 0, 0.48);
}


/* Scroll popup glossy */


/* Popup box */
.popup-box {
  background: #fff7d6;
  padding: 28px 24px;
  text-align: center;
  border-radius: 18px;
  width: 85%;
  max-width: 350px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
  position: relative;
  animation: popupScale 0.25s ease-out;
  font-family: 'Poppins', sans-serif;
}

@keyframes popupScale {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Close button */
.popup-close {
  position: absolute;
  top: -6px;
  right: 10px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

/* Button */
.popup-btn {
  display: inline-block;
  margin-top: 15px;
  background: #000;
  color: #ffe300;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* floating cart */

.cart-floating-btn {
  position: fixed;
  right: 15px;
  bottom: 15px;
  padding: 12px 18px;
  background: #ffb600;
  color: black;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  z-index: 9999;
}

/* cart & auth modal */

.modal {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 350px;
}
body.modal-open *:not(#loginModal):not(#loginModal *) {
  filter: blur(3px);
  pointer-events: none;
}
/* Scrolling nav bar in mey */
/* FIX NAV BAR OVERFLOW FULLY */
.menu {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    gap: 8px;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.menu::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Ensure each item stays inside without expanding */
.nav-item, .nav-link {
    flex: 0 0 auto !important;
}


/* Prevent page horizontal scroll */
body, html {
  overflow-x: hidden;
}
/* Menu Item added toast msg on top */
/* Toast Notification */
#toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.85);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  max-width: 90%;
  text-align: center;
  opacity: 0;
  z-index: 999999;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  display: inline-block; /* FIX (prevents full-width toast) */
}

#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}


/* cart sticky without scroll*/
#cartBar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

/* Add card button menu */
.add-cart-btn {
  background: #FFD84D;
  border: none;
  padding: 7px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  transition: 0.2s ease;
}

.add-cart-btn:active {
  transform: scale(0.95);
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.add-cart-btn:hover {
  background: #ffe47b;
}
/* Cart button */

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

.qty-btn {
  background: #ffe08a;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.qty-btn:active {
  transform: scale(0.9);
}

.remove-btn {
  background: #ff4d4d;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.remove-btn:active {
  transform: scale(0.9);
}

.price-box {
  font-size: 14px;
  margin-top: 4px;
  color: #444;
}

/* Login Modal */
/* Modal background overlay */
#loginModal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

/* Modal content box */
#loginModal > div {
  background: #fff;
  padding: 20px 30px;
  max-width: 360px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Inputs styling */
#loginModal input[type="text"],
#loginModal input[type="email"],
#loginModal input[type="password"],
#loginModal input[type="tel"] {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0 20px 0;
  border: 1px solid #ccc;
  border-radius: 7px;
  box-sizing: border-box;
  font-size: 16px;
}

/* Buttons styling */
#loginModal button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 12px 20px;
  width: 100%;
  font-size: 16px;
  border-radius: 7px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}
#loginModal button:hover {
  background-color: #0056b3;
}

/* Secondary button (Cancel) */
#loginModal button.cancel-btn {
  background-color: #6c757d;
}
#loginModal button.cancel-btn:hover {
  background-color: #5a6268;
}

/* Step containers */
.login-step {
  display: none;
}
.login-step.active {
  display: block;
}

/* Header titles */
#loginModal h2 {
  margin-bottom: 20px;
  font-weight: bold;
  color: #333;
}
/* Menu New Sections */

/* General section styles */
.section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #fff8f0;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #3a1f04;
}

/* Headings */
.section h1, .section h2 {
  color: #bf5a2a;
  margin-bottom: 15px;
  font-weight: 700;
}

.section h3 {
  margin-top: 20px;
  color: #7a3f0a;
}

/* Paragraphs */
.section p {
  font-size: 16px;
  line-height: 1.5;
}

/* Ordered List */
.how-to-order-section ol {
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.6;
}

/* FAQ items */
.faq-item {
  margin-bottom: 15px;
  background: #fffbf5;
  padding: 15px;
  border-left: 4px solid #bf5a2a;
  border-radius: 4px;
}

/* Unordered list for account features */
.account-features-section ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .section {
    margin: 20px 10px;
    padding: 15px;
  }
  
  .section h1, .section h2 {
    font-size: 1.5em;
  }
}
/* ------------------------------------------------ */
/* Featured Dishes Section (Mithora's Favorites) */
/* ------------------------------------------------ */

#featured-dishes {
    /* Matches background style (like FAQ or Offer) */
    background: #fffbe7; 
    border-top: 1px solid #f0c040;
    border-bottom: 1px solid #f0c040;
    padding: 28px 16px; /* Vertical spacing */
    margin: 30px auto;
    max-width: 900px; /* Aligns with FAQ/Menu Card width */
    font-family: 'Poppins', sans-serif; 
}

/* Heading (h2) Style - Use the golden/brown accent color (high contrast) */
#featured-dishes h2 {
    font-size: 1.6rem; 
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    color: #d8a804; /* Matches Offer/Blog headings */
    padding-left: 0; /* Override any global H2 styles */
    border-left: none; 
}

/* Introduction Paragraph Style */
#featured-dishes p:first-of-type {
    font-size: 1rem; 
    color: var(--text); 
    text-align: center;
    font-style: italic;
    margin-bottom: 16px;
    padding: 0 10px; /* Add small horizontal padding for mobile */
}

/* List Container (ul) Style - Clean white background with subtle shadow */
#featured-dishes ul {
    list-style: none; 
    padding: 16px; 
    margin: 0;
    border-radius: 10px;
    background-color: white;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* List Item (li) Styling - Aligns icon/emoji and text */
#featured-dishes li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px; 
    line-height: 1.5;
}

#featured-dishes li:last-child {
    margin-bottom: 0;
}

/* Icon/Emoji Styling - Use the brand yellow color for emphasis */
#featured-dishes li span {
    color: var(--yellow); /* #FFD84D */
    font-size: 1.5rem;
    margin-right: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.2;
}

/* List Item Text Style */
#featured-dishes li p {
    color: #444; 
    text-align: left; 
    margin-top: 0; 
    font-size: 0.95rem; /* Compact text size */
    font-weight: 500;
}


/* ===== Mobile Adjustments (Compacting Further) ===== */
@media (max-width: 600px) {
    #featured-dishes {
        padding: 20px 10px; /* Reduce main section padding */
        margin: 20px auto;
    }
    #featured-dishes h2 {
        font-size: 1.4rem; /* Smaller heading on small screen */
    }
    #featured-dishes ul {
        padding: 12px; /* Reduce internal list padding */
    }
    #featured-dishes li {
        margin-bottom: 10px; /* Reduce spacing between items */
    }
    #featured-dishes li span {
        font-size: 1.3rem;
        margin-right: 0.5rem;
    }
    #featured-dishes li p {
        font-size: 0.9rem; /* Smallest font size for very compact look */
    }
}

/* no order foud on order history page*/
/* FOOTER New */
footer { background:#111; color:#ddd; padding:30px 20px; }
.footer-inner {
  max-width:var(--max-width);
  margin:auto;
  display:flex;
  gap:40px;
  flex-wrap:wrap;
  justify-content:space-between;
}

.footer-left h4 { color:var(--accent); margin:0 0 10px; }
.footer-left p { color:#ddd; margin:0 0 6px; }

.footer-social a {
  margin-right:14px;
  color:#fff;
  text-decoration:none;
  font-size:1rem;
}

.fssai {
  margin-top:12px;
  display:flex;
  align-items:center;
  gap:10px;
  color:#ddd;
}
.fssai img { height:38px; }

footer a { color:#ddd; text-decoration:none; }

.copyright {
  color:#999; margin-top:12px; font-size:0.9rem;
}
:root {
  --accent:#d8a804;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-left h4 {
  color: var(--accent);
}

.footer-social a svg {
  fill: #fff;
}
/* ===== UNIQUE BUTTON FOR RECIPE CARDS ===== */
/* --- FIX: Button for Recipe Listing Page --- */
.recipe-btn {
  display: inline-block;
  background: linear-gradient(135deg, #FFE86B, #FFD84D);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #111;
  font-weight: 600;
  color: #000 !important;
  text-decoration: none;
  margin-top: 10px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.recipe-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(255,216,77,0.45);
}
/* landing page New UI section Order Tracking & USP */
.oj-wrapper {
  padding: 40px 20px;
  text-align: center;
}

/* Flex layout */
.oj-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 25px;
}

/* ICON CIRCLE */
.oj-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 5px solid #f68426;
  background: #fff;
  position: relative;
  margin: 0 auto 18px;
}

/* LEFT + RIGHT LINES ON ICON */
.oj-icon::before,
.oj-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 4px;
  background: #f8c288;
}

/* LEFT line */
.oj-icon::before {
  left: -60px;
}

/* RIGHT line */
.oj-icon::after {
  right: -60px;
}

/* REMOVE left line on FIRST icon */
.oj-step:first-child .oj-icon::before {
  display: none;
}

/* REMOVE right line on LAST icon */
.oj-step:last-child .oj-icon::after {
  display: none;
}

/* Text formatting */
.oj-step h4 {
  margin: 8px 0 4px;
  font-weight: 700;
}

.oj-step p {
  margin: 0 0 8px;
  color: #555;
}

.oj-time {
  background: #ffe6cf;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
  .oj-steps {
    flex-direction: column;
  }
  .oj-icon::before,
  .oj-icon::after {
    display: none;
  }
}

/* Taste box new start */
/* MAIN CARD */
.tastebox-exact {
  max-width: 1250px;
  margin: 40px auto;
  padding: 55px 60px;
  background: linear-gradient(180deg, #f6efe7 0%, #ffffff 100%);
  border-radius: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 18px 40px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

/* RIGHT CIRCLE — Improved */
.tastebox-exact::after {
  content: "";
  position: absolute;
  right: -40px;   /* moved more right */
  top: -20px;     /* lifted */
  width: 200px;   /* reduced size */
  height: 200px;
  background: #f6e4cb;
  border-radius: 50%;
  z-index: 0;
}

/* LEFT TEXT */
.tastebox-exact .tb-left h2 {
  font-family: 'Georgia', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #3b2a1d;
  margin: 0;
}

.tastebox-exact .tb-left .sub {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #826c58;
}

/* CENTER IMAGES */
.tb-images {
  display: flex;
  gap: 28px;
  z-index: 2;
  margin-left: 40px;
}

.img-card {
  width: 110px;
  height: 110px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0px 10px 22px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.img-card.active {
  border: 4px solid #ffffff;
  box-shadow: 0px 0px 0px 3px #ffc977, 0px 12px 25px rgba(0,0,0,0.08);
}

/* RIGHT SECTION */
.tb-right {
  text-align: left;
  z-index: 2;
  margin-left: 30px;
}

.tb-right .offer {
  color: #d48a00;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.tb-right h3 {
  margin: 5px 0 6px 0;
  font-size: 1.9rem;
  font-weight: 700;
  font-family: 'Georgia', serif;
  color: #3b2a1d;
}

.tb-right .desc {
  color: #826c58;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

/* CTA BUTTON */
.cta-btn {
  background: #f6a330;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(246,163,48,0.30);
  transition: 0.2s ease;
}

.cta-btn:hover {
  background: #e08f22;
  transform: translateY(-2px);
}

/* MOBILE FIX – Circle hidden + spacing adjusted */
@media (max-width: 768px) {

  .tastebox-exact::after {
    display: none;   /* Hides circle on mobile */
  }

  .tastebox-exact {
    flex-direction: column;
    text-align: center;
    padding: 32px 22px;
  }

  .tb-left, .tb-right {
    text-align: center !important;
    margin: 0 !important;
  }

  .tb-images {
    margin: 22px 0;
    gap: 20px;
    margin-left: 0;
  }
}
/* Use Poppins for all text */
.tastebox-exact h2,
.tastebox-exact h3,
.tastebox-exact .sub,
.tastebox-exact .desc,
.tastebox-exact .offer,
.tastebox-exact .cta-btn {
  font-family: 'Poppins', sans-serif !important;
}

/* Optional — makes heading closer to screenshot but still Poppins */
.tastebox-exact h2 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.tastebox-exact h3 {
  font-weight: 700;
}
  
.tastebox-exact .sub,
.tastebox-exact .desc {
  font-weight: 500;
}
/* Taste box new end */


/* Explore category new */

/* SECTION */
.categories-section {
  padding: 60px 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* HEADING */
.cat-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #3b2a1d;
  margin-bottom: 20px;
}

/* TABS */
.cat-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 15px;
  margin-bottom: 20px;
}

.cat-tab {
  padding: 10px 26px;
  background: #eadccd;
  border: none;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #542c12;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.25s ease;
}

.cat-tab.active {
  background: #8a3a15;
  color: #fff;
  box-shadow: 0px 5px 14px rgba(138, 58, 21, 0.35);
}

/* CATEGORY DESCRIPTION */
.cat-desc {
  max-width: 720px;
  margin: 0 auto 35px auto;
  font-size: 1.05rem;
  color: #6e5b4c;
  line-height: 1.6;
  font-weight: 500;
  padding: 0 15px;
}

/* GRID */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

/* CARD */
.cat-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.25s ease;
  text-align: left;
}

.cat-card:hover {
  transform: translateY(-4px);
}

.cat-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.cat-card-content {
  padding: 20px 20px 26px 20px;
}

.cat-card-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #3b2a1d;
  margin-bottom: 8px;
}

.cat-card-content p {
  font-size: 0.95rem;
  color: #6e5b4c;
  line-height: 1.55;
  margin-bottom: 15px;
}

.cat-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #8a3a15;
  text-decoration: none;
}

.cat-link:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 600px) {
  .cat-heading {
    font-size: 2rem;
  }
  .cat-card img {
    height: 190px;
  }
  .cat-tab {
    padding: 9px 20px;
    font-size: 0.9rem;
  }
}
/* Explore categiry new end */


/* home made snack new start */


/* MAIN SECTION */
.snacks-section {
  padding: 60px 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* HEADING */
.snacks-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #3b2a1d;
  margin-bottom: 15px;
}

/* SUBTEXT */
.snacks-subtext {
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #6e5b4c;
  font-size: 1.05rem;
  line-height: 1.6;
  padding: 0 15px;
}

/* GRID */
.snacks-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
  padding: 0 15px;
}

/* CARD */
.snacks-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.25s ease;
  text-align: left;
}

.snacks-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.snacks-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* CARD BODY */
.snacks-card-body {
  padding: 22px 22px 28px 22px;
}

.snacks-card-body h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #3b2a1d;
  margin-bottom: 8px;
}

.snacks-card-body p {
  font-size: 0.95rem;
  color: #6e5b4c;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* LINK */
.snacks-link {
  text-decoration: none;
  font-weight: 600;
  color: #8a3a15;
  font-size: 0.95rem;
}

.snacks-link:hover {
  text-decoration: underline;
}

/* DELIVERY NOTE */
.snacks-delivery-note {
  margin-top: 30px;
  background: #f2e6d7;
  padding: 10px 22px;
  display: inline-block;
  border-radius: 28px;
  font-weight: 600;
  color: #5e3b1c;
  font-size: 0.95rem;
}

/* MOBILE */
@media (max-width: 600px) {
  .snacks-heading {
    font-size: 2.1rem;
  }
  .snacks-card img {
    height: 200px;
  }
}


/* home made snack new end */

/* Youtube new section */

/* SECTION */
.yt-section {
  padding: 60px 0;
  text-align: center;
  font-family: 'Poppins', sans-serif !important;
}

/* HANDWRITTEN (keep separate font) */
.yt-handwritten {
  font-family: 'Segoe Script', 'Brush Script MT', cursive !important;
  font-size: 22px;
  color: #c46a00;
  margin-bottom: 18px;
}

/* WHITE BOX */
.yt-box {
  background: #ffffff;
  border-radius: 22px;
  padding: 50px 28px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border: 1px solid #f1e2d0;
}

/* MAIN TITLE — POPPINS */
.yt-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 2.4rem;
  font-weight: 700;
  color: #3b2a1d;
  margin-bottom: 12px;
}

/* SUBTEXT — POPPINS */
.yt-subtext {
  font-family: 'Poppins', sans-serif !important;
  color: #555;
  max-width: 700px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* VIDEO */
.yt-video {
  width: 100%;
  max-width: 900px;
  height: 330px;
  border-radius: 16px;
  display: block;
  margin: 0 auto 40px;
}

/* SMALL TITLE — POPPINS */
.yt-small-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.4rem;
  font-weight: 600;
  color: #3b2a1d;
  margin-bottom: 6px;
}

/* SMALL DESCRIPTION — POPPINS */
.yt-small-desc {
  font-family: 'Poppins', sans-serif !important;
  color: #666;
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 22px;
  line-height: 1.5;
}

/* BUTTON — POPPINS */
.yt-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: #8a3a15;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.25s ease;
}

.yt-cta-btn img {
  width: 22px;
}

.yt-cta-btn:hover {
  background: #6f2a0b;
}

/* MOBILE */
@media (max-width: 600px) {
  .yt-title { font-size: 1.9rem; }
  .yt-video { height: 210px; }
  .yt-small-title { font-size: 1.2rem; }
}


/* You tube new section end */

/* FAQ NEW start */

/* WRAPPER */
.faq-wrapper {
  padding: 70px 0;
  background: #f8f4ef; /* Your soft beige bg */
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* MAIN HEADING */
.faq-heading {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  font-weight: 600;
  color: #3b2a1d;
  margin-bottom: 10px;
}

/* SUBTEXT */
.faq-subtext {
  font-size: 1rem;
  color: #7c6a58;
  margin-bottom: 40px;
}

/* CONTAINER */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  padding: 0 15px;
}

/* CARD STYLE */
.faq-item {
  background: #ffffff;
  padding: 22px 26px;
  margin-bottom: 18px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid #f1e6da;
  transition: 0.25s ease;
}

/* HOVER ELEVATION */
.faq-item:hover {
  transform: translateY(-3px);
}

/* SUMMARY */
.faq-item summary {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #3b2a1d;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ARROW ICON */
.faq-item summary::after {
  content: "⌄";
  font-size: 18px;
  color: #3b2a1d;
  transition: 0.2s;
}

/* ROTATE ARROW */
.faq-item[open] summary::after {
  transform: rotate(180deg);
}

/* CONTENT */
.faq-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5c4a3a;
  margin-top: 12px;
}
/* ARROW ICON */
.faq-item summary::after {
  content: "";
  width: 14px;
  height: 14px;
  border-right: 2px solid #3b2a1d;
  border-bottom: 2px solid #3b2a1d;
  transform: rotate(45deg);
  transition: 0.25s ease;
  margin-left: 10px;
}

/* ROTATE ARROW WHEN OPEN */
.faq-item[open] summary::after {
  transform: rotate(-135deg);
}


/* FAQ new end */

/* new coming soon */

/* WHOLE SECTION */
.coming-section {
  background: #fff7e6;
  padding: 60px 0;
  border-top: 1px solid #f1e0b4;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* HEADING */
.coming-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #8a3a15;
  margin-bottom: 10px;
}

/* SUBTEXT */
.coming-subtext {
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #6b5b46;
  line-height: 1.6;
}

/* GRID */
.coming-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
  padding: 0 15px;
}

/* CARD */
.coming-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform .25s ease;
  text-align: left;
}

.coming-card:hover {
  transform: translateY(-4px);
}

/* IMAGE */
.coming-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* BODY */
.coming-body {
  padding: 20px 22px 28px;
}

.coming-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3b2a1d;
  margin-bottom: 8px;
}

.coming-body p {
  font-size: 0.95rem;
  color: #6e5b4c;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* TAG */
.coming-tag {
  display: inline-block;
  background: #ffd84d;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  border: 1px solid #b28a00;
}

/* BOTTOM NOTE */
.coming-note {
  margin-top: 35px;
  font-size: 0.95rem;
  color: #7d6a55;
}


/* new coming soon end */

/* New USP Start */

/* MAIN USP BLOCK */
.usp-section {
  padding: 60px 0;
  background: #f8f4ef;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #efe3d5;
}

.usp-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
}

.usp-heading {
  font-size: 2.3rem;
  font-weight: 700;
  color: #3b2a1d;
  margin-bottom: 16px;
  line-height: 1.3;
}

.usp-text {
  font-size: 1.05rem;
  color: #64584b;
  line-height: 1.7;
  margin: 0 auto;
}


/* ORDER ON ZOMATO/SWIGGY */
.order-section {
  background: #fff9d9;
  padding: 40px 16px;
  text-align: center;
  border-top: 1px solid #f0e4a3;
  border-bottom: 1px solid #f0e4a3;
}

.order-container {
  max-width: 650px;
  margin: 0 auto;
}

.order-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #6a500d;
  margin-bottom: 12px;
}

.coming-tag {
  display: inline-block;
  background: #ffe89d;
  color: #5a4300;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid #d0b462;
  margin-left: 8px;
}

.order-text {
  font-size: 1rem;
  color: #444;
  margin-bottom: 22px;
}

/* WHATSAPP BUTTON */
.order-whatsapp-btn {
  display: inline-block;
  background: #ffd84d;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  border: 1px solid #111;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
  transition: 0.2s ease;
}

.order-whatsapp-btn:hover {
  background: #ffcd22;
  transform: translateY(-2px);
}


/* New USP end */

/* Order Journey Start */

/* Order Journey Wrapper */
.oj-wrapper {
  padding: 60px 20px;
  background: #f7f3ee;
  border-radius: 22px;
  margin-top: 40px;
  text-align: center;
}

/* Subheading */
.oj-sub {
  color: #d87b00;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

/* Title */
.oj-title {
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  color: #2d1b12;
  margin-bottom: 10px;
}

/* Description */
.oj-desc {
  max-width: 680px;
  margin: 0 auto 45px;
  color: #6e5f54;
  font-size: 17px;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
}

/* Desktop Flow */
.oj-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 10px;
}

/* Center Line */
/* CLEAN LINE — stops exactly at first/last circle */
.oj-flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 47px !important;   /* moves the center line BELOW circle border */
  height: 6px;
  background: #f3b55a;
  z-index: 1;
}


/* Step */
.oj-step {
  flex: 1;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Step Icon Circle */
.oj-icon {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #f7a544;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: #d47a00;
  margin: 0 auto 12px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.08);
}

/* Title inside step */
.oj-step h4 {
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  color: #2d1b12;
  font-weight: 600;
  margin-bottom: 6px;
}

/* Description inside step */
.oj-step p {
  font-size: 14px;
  color: #6d5f56;
}

/* Badges */
.oj-time {
  margin-top: 8px;
  padding: 6px 14px;
  background: #ffe8d1;
  color: #c76a00;
  border-radius: 16px;
  font-size: 13px;
}

/* DELIVERY BOX */
.oj-delivery-box {
  background: #fff;
  border: 1px solid #ead7c0;
  border-radius: 16px;
  max-width: 540px;
  margin: 60px auto 0;
  padding: 22px;
  text-align: left;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.08);
}

.oj-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.oj-label {
  font-size: 16px;
  font-weight: 600;
  color: #3a2a20;
}

.oj-time-large {
  font-size: 26px;
  font-weight: 700;
  color: #d87b00;
}

/* Bar */
.oj-bar {
  height: 10px;
  background: #ffeede;
  border-radius: 10px;
  overflow: hidden;
}

.oj-bar-fill {
  width: 70%;
  height: 100%;
  background: linear-gradient(to right, #faaa2c, #cb4e1a);
}

/* Small text */
.oj-small {
  margin-top: 10px;
  color: #87766b;
  font-size: 13px;
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 768px) {

  .oj-flow {
    flex-direction: column;
    gap: 60px;
  }

  .oj-flow::before {
    display: none;
  }

  .oj-step {
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }

  .oj-icon {
    width: 120px;
    height: 120px;
    font-size: 48px;
  }

  .oj-step h4 {
    font-size: 20px;
  }

  .oj-step p {
    font-size: 15px;
  }

  .oj-delivery-box {
    width: 92%;
    padding: 25px;
  }

  .oj-row {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .oj-small {
    text-align: center;
  }
}



/* Order Journey end */

/* new Footer class */

/* FOOTER MAIN */
.mk-footer {
  background: #faf6f0;
  padding: 60px 8%;
  font-family: "Poppins", sans-serif;
  color: #52463d;
}

.mk-footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* COLUMN */
.mk-footer-col {
  flex: 1;
  min-width: 240px;
}

/* Heading */
.mk-footer-title {
  font-size: 26px;
  font-weight: 700;
  color: #d87b00;
  margin-bottom: 14px;
}

/* Subheading */
.mk-footer-sub {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2d1b12;
}

/* Text */
.mk-footer-text {
  font-size: 15px;
  line-height: 1.7;
  max-width: 280px;
}

/* FSSAI Block */
.mk-fssai {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mk-fssai img {
  height: 42px;
}

.mk-fssai span {
  font-size: 14px;
  color: #5b4c42;
}

/* -------------------- QUICK LINKS (2 columns always) -------------------- */
.mk-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 2;         /* ALWAYS 2 COLUMNS */
  column-gap: 25px;
}

.mk-footer-links li {
  break-inside: avoid;     /* Prevent breaking link between columns */
  margin-bottom: 10px;
}

.mk-footer-links a {
  text-decoration: none;
  color: #52463d;
  font-size: 15px;
  display: inline-block;
  width: 100%;
  transition: 0.3s;
}

.mk-footer-links a:hover {
  color: #d87b00;
}

/* -------------------- CONTACT LIST -------------------- */
.mk-footer-contact {
  list-style: none;
  padding: 0;
}

.mk-footer-contact li {
  margin-bottom: 12px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mk-footer-contact i {
  color: #d87b00;
  font-size: 17px;
}

/* -------------------- SOCIAL ICONS -------------------- */
.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.footer-social .social-icon svg {
  width: 24px;
  height: 24px;
  color: #6a5b4e;
  transition: 0.3s ease;
}

.footer-social .social-icon:hover svg {
  color: #d87b00;
}

/* -------------------- FOOTER BOTTOM -------------------- */
.mk-footer-bottom {
  text-align: center;
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid #e5d8c9;
  font-size: 14px;
  color: #776a60;
}

/* -------------------- MOBILE -------------------- */
@media (max-width: 768px) {

  .mk-footer-container {
    flex-direction: column;
    gap: 35px;
  }

  /* Quick Links also 2 columns on mobile */
  .mk-footer-links {
    column-count: 2;
    column-gap: 20px;
  }

  .mk-footer-bottom {
    font-size: 13px;
  }
}

/* New footer class end */

/* Party Section home page - Mithora Kitchen Colors */

/* ========================================
   PARTY SECTION - COMPLETE RESPONSIVE STYLES
   ======================================== */
/* FIXED CSS - REPLACE ENTIRE PARTY STYLES */

.party-section {
  background: #fff9f0;
  padding: 40px 16px;
  border: 3px solid #c46a00;
  margin: 40px 0;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
}

.party-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.party-visual {
  flex: 0 0 300px;
}

.party-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(196,106,0,0.2);
}

.party-content {
  flex: 1;
  min-width: 300px;
}

.veg-badge {
  background: #28a745;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(40,167,69,0.3);
}

.party-content h2 {
  color: #2d1b00;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.party-content p {
  color: #6e5b4c;
  font-size: 16px;
  margin: 0 0 25px 0;
  line-height: 1.5;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex: 1 1 200px;
}

.feature-item span {
  font-size: 24px;
  line-height: 1;
}

.feature-item div {
  line-height: 1.4;
}

.feature-item small {
  color: #c46a00;
  font-size: 13px;
}

.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.package {
  flex: 1 1 250px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(196,106,0,0.1);
  border: 2px solid #fff6df;
}

.package h4 {
  color: #c46a00;
  margin: 0 0 8px 0;
  font-size: 18px;
}

.package p {
  color: #6e5b4c;
  margin: 0 0 15px 0;
  font-size: 14px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: #2d1b00;
}

.price span {
  font-size: 14px;
  color: #c46a00;
}

.cta-box {
  text-align: center;
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(196,106,0,0.15);
}

.cta-btn {
  display: block;
  background: #c46a00;
  color: white;
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  margin-bottom: 12px;
  box-shadow: 0 8px 25px rgba(196,106,0,0.3);
  transition: all 0.3s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(196,106,0,0.4);
  color: white;
}

.contact {
  color: #6e5b4c;
  font-size: 16px;
  font-weight: 600;
}

/* MOBILE - BULLETPROOF */
@media (max-width: 768px) {
  .party-container {
    flex-direction: column;
  }
  
  .party-visual {
    order: -1;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .party-image {
    height: 220px;
  }
  
  .party-content h2 {
    font-size: 24px;
  }
  
  .features-grid,
  .packages {
    flex-direction: column;
  }
  
  .package {
    flex: none;
  }
}

@media (max-width: 480px) {
  .party-section {
    padding: 30px 12px;
    margin: 20px 0;
  }
  
  .party-image {
    height: 200px;
  }
}

/* Add this to your party-section CSS */
a, a:hover, button a, button a:hover {
  text-decoration: none !important;
}
.discount {
  font-size: 14px !important;
  color: #c46a00 !important;
  background: #fff6df;
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid #c46a00;
}
/* BULLETPROOF MOBILE HORIZONTAL FEATURES */
.features-row {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-around !important;
  gap: 8px !important;
  margin: 20px 0 !important;
  padding: 12px !important;
  background: #fff8f0;
  border-radius: 16px;
  border: 2px solid #ffe8cc;
}

.feature-box {
  flex: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 8px 4px !important;
}

.feature-box span {
  font-size: 2rem !important;
  margin-bottom: 4px !important;
  line-height: 1 !important;
}

.feature-box div {
  font-size: 12px !important;
  line-height: 1.3 !important;
}

.feature-box small {
  font-size: 10px !important;
  color: #c46a00;
}

/* MOBILE - FORCE SINGLE ROW */
@media (max-width: 768px) {
  .features-row {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    gap: 12px !important;
    padding: 12px 8px !important;
  }
  
  .feature-box {
    flex: 0 0 85px !important;
    scroll-snap-align: center !important;
    padding: 6px 2px !important;
  }
  
  .feature-box div {
    font-size: 11px !important;
  }
  
  .feature-box small {
    font-size: 9px !important;
  }
}

/* EXTRA SMALL MOBILE */
@media (max-width: 360px) {
  .feature-box {
    flex: 0 0 75px !important;
  }
  
  .feature-box span {
    font-size: 1.8rem !important;
  }
}


/* Part Home section ends */

/* Live Offer Index */
/* ===== LIVE OFFERS (Taste Box Style) ===== */
.live-offers-section {
  max-width: 900px !important;
  margin: 40px auto !important;
  border-radius: 26px !important; /* same curve as Taste Box */
  padding: 40px 20px 24px !important;
}


/* floating glossy circles like Taste Box */
.live-offers-section::before,
.live-offers-section::after {
  content: "";
  position: absolute;
  background: rgba(255, 238, 170, 0.55);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(35px);
  z-index: 0;
}
.live-offers-section::before {
  top: -40px;
  left: -40px;
}
.live-offers-section::after {
  bottom: -40px;
  right: -40px;
}

/* LIVE badge */
.lo-badge {
  position: absolute;
  top: 10px;
  right: 20px;

  background: linear-gradient(145deg, #fff3c8, #ffe79e);
  padding: 5px 14px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #7a4a00;

  border: 1px solid rgba(180,120,0,0.3);
  box-shadow: 0 3px 8px rgba(200,150,0,0.25);
}


/* content */
.lo-title {
  text-align:center;
  font-size:26px;
  font-weight:800;
  color:#c46a00;
  margin:0 0 6px;
}
.lo-sub {
  text-align:center;
  color:#6b4b13;
  margin:0 0 18px;
}

/* collage */
.lo-collage {
  display:flex;
  justify-content:center;
  gap:10px;
  margin-bottom: 20px;
  z-index: 2;
}
.lo-collage img {
  width:70px;height:70px;
  border-radius:12px;
  object-fit:cover;
  box-shadow:0 4px 14px rgba(0,0,0,0.12);
}

/* OFFER CARDS – desktop */
.lo-offer-cards {
  display:flex;
  justify-content:space-between;
  gap:14px;
  z-index:2;
  position:relative;
}
.lo-card {
  background:#fff;
  border-radius:14px;
  padding:16px;
  flex:1;
  border:1px solid #f2cf8b;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
  text-align:center;
  min-width: 0;
}
.lo-tag {
  display:inline-block;
  background:linear-gradient(135deg,#ffe8a3,#ffd86b);
  padding:4px 10px;
  border-radius:8px;
  font-size:13px;
  font-weight:700;
  color:#7a5200;
  margin-bottom:6px;
  border:1px solid rgba(140,100,0,0.15);
}
.lo-card h3 {
  margin:4px 0;
  color:#c46a00;
  font-size:18px;
  font-weight:800;
}
.lo-card p {
  margin:0;
  color:#6b4b13;
  font-size:14px;
}

/* MOBILE: small cards + smooth horizontal scroll */
@media(max-width: 768px) {
  .lo-offer-cards {
    overflow-x: auto;
    gap:12px;
    padding-bottom:8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .lo-offer-cards::-webkit-scrollbar {
    display:none;
  }
  .lo-card {
    min-width: 160px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}

/* CTA button – matching theme */
.lo-btn {
  display:inline-block;
  margin:22px auto 6px;
  padding:12px 26px;
  background:linear-gradient(135deg,#ffe86b,#ffd84d);
  color:#000;
  font-weight:700;
  border-radius:30px;
  text-decoration:none;
  border:1px solid #111;
  box-shadow:0 4px 14px rgba(0,0,0,0.15);
  transition:0.3s;
}
.lo-btn:hover {
  transform:translateY(-3px);
  box-shadow:0 8px 22px rgba(255,216,77,0.45);
}
/* FIX: Match taste box width + fix live badge cut */
.live-offers-section {
  max-width: 900px !important;
  margin: 40px auto !important;
  padding: 40px 20px 24px !important;   /* extra top padding */
  border-radius: 26px !important;       /* same as taste box */
  position: relative;
  overflow: visible !important;         /* prevents clipping */
}

/* LIVE badge fix */
.lo-badge {
  position: absolute;
  top: 8px !important;                /* moved inside box */
  right: 20px;
  z-index: 20;
}
/* button design subtle */
.lo-btn {
  display: block;
  margin: 24px auto 0;
  padding: 12px 26px;
  border-radius: 30px;
text-align: center;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.40),
    rgba(255,255,255,0.15)
  );
  border: 1px solid rgba(255,255,255,0.55);
  color: #8a5b00;
  font-weight: 700;
  backdrop-filter: blur(5px);
  transition: 0.3s;
}

.lo-btn:hover {
  background: rgba(255,255,255,0.70);
}

/* Floating GLow circle behind collase start*/

/* GLOW BEHIND COLLAGE */
.lo-collage {
  position: relative;
  z-index: 2;
}

.lo-collage::before,
.lo-collage::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 230, 160, 0.55);
  filter: blur(40px);
  z-index: 1;
}

.lo-collage::before {
  left: -30px;
  top: -20px;
}

.lo-collage::after {
  right: -30px;
  bottom: -20px;
}


/* Floating GLow circle behind collase */

/* Subtle Shimmer on coupon */

/* SHIMMER EFFECT */
.lo-card {
  position: relative;
  overflow: hidden;
}

.lo-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  animation: shimmerMove 2.5s infinite ease-in-out;
}

@keyframes shimmerMove {
  0%   { left: -120%; }
  55%  { left: 120%; }
  100% { left: 120%; }
}


/* Subtl Shimmer on coupon */


/* Live Offer Index */