/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ROOT COLORS */
:root {
  --primary: #2e7d32;
  --secondary: #8d4b2b;
  --accent: #f4b400;
  --accent-dark: #e09e00;
  --bg-light: #fffaf3;
  --text-dark: #1a1a1a;
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
}




/* =========================
   TOPBAR
========================= */
.site-topbar {
  width: 100%;
  background: linear-gradient(90deg, #2c6e7a, #245c66);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 18px;
  font-size: 13.5px;
  overflow: hidden;
  position: relative;
}

/* =========================
   SCROLL AREA
========================= */
.scroll-container {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

/* =========================
   SCROLL TEXT (SMOOTH LOOP)
========================= */
.scroll-text {
  display: flex;
  width: max-content;
  animation: scrollLoop 20s linear infinite;
}

.scroll-text span {
  padding-right: 50px;
  white-space: nowrap;
}

/* LOOP ANIMATION */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================
   PHONE BUTTON
========================= */
.top-contact {
  margin-left: 15px;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,0.2);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

/* ICON */
.top-contact::before {
  content: "";
}

/* HOVER */
.top-contact:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.05);
}

/* =========================
   BOTTOM GLOW LINE
========================= */
.site-topbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #f4b400, transparent);
}

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

  .site-topbar {
    flex-direction: column;
    gap: 4px;
    padding: 8px 10px;
    text-align: center;
  }

  .scroll-container {
    width: 100%;
  }

  .scroll-text {
    animation-duration: 14s;
    font-size: 13px;
  }

  /* HIDE PHONE IN MOBILE */
  .top-contact {
    display: none;
  }
}
***
.scroll-text i {
  margin-right: 6px;
  color: #f4b400;
}
.scroll-text span i {
  background: rgba(255,255,255,0.2);
  padding: 4px;
  border-radius: 50%;
  margin-right: 6px;
  font-size: 12px;
}

.fa-leaf { color: #4ade80; }        /* green */
.fa-bowl-food { color: #f4b400; }   /* yellow */
.fa-heart-pulse { color: #ef4444; } /* red */
.fa-truck { color: #60a5fa; }       /* blue */
.fa-truck {
  color: #fb923c;
}

***
/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* =========================
   GLASS HEADER
========================= */
.glass-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 25px;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* =========================
   LEFT MENU
========================= */
.left {
  display: flex;
  align-items: center;
}

.left i {
  font-size: 20px;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}

.left i:hover {
  transform: scale(1.1);
}

/* =========================
   CENTER LOGO
========================= */
.center-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.center-logo img {
  height: 55px;
}

/* =========================
   RIGHT ICONS
========================= */
.right-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =========================
   ICON BOX
========================= */
.icon {
  width: 42px;
  height: 42px;
  background: rgba(0,0,0,0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}

/* ICON SIZE */
.icon i {
  font-size: 18px;
}

/* =========================
   ICON COLORS
========================= */
.wishlist i {
  color: #ef4444;
}

.cart i {
  color: #2e7d32;
}

.user i {
  color: #444;
}

/* =========================
   BADGE
========================= */
.badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 50%;
  font-weight: 600;
}

/* =========================
   HOVER EFFECT
========================= */
.icon:hover {
  transform: scale(1.1);
  background: rgba(0,0,0,0.1);
}

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

  .glass-header {
    padding: 10px 15px;
  }

  .center-logo img {
    height: 45px;
  }

  .icon {
    width: 36px;
    height: 36px;
  }

  .icon i {
    font-size: 16px;
  }

}

.glass-header {
  border-bottom: 1px solid #e5e5e5;
}
.glass-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #f4b400, transparent);
}


***
/* DEFAULT HEADER */
.glass-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

/* SCROLL AFTER */
.glass-header.scrolled {
  background: rgba(44, 110, 122, 0.95); /* teal */
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ICON COLOR CHANGE */
.glass-header.scrolled i {
  color: #fff;
}

/* LOGO थोड़ा adjust */
.glass-header.scrolled .center-logo img {
  transform: scale(0.9);
}

/* SMOOTH */
.center-logo img {
  transition: 0.3s;
}
.main-nav {
  background: #2c6e7a;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* UL */
.main-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px; /* 👈 more space */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* LINKS */
.main-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  transition: 0.3s ease;
}

/* ICON STYLE 🔥 */
.main-nav i {
  font-size: 15px;
  color: #f4b400;
}

/* HOVER */
.main-nav a:hover {
  color: #ffd54f;
  transform: translateY(-2px);
}

/* UNDERLINE */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #f4b400;
  transition: 0.3s;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ACTIVE */
.main-nav a.active {
  color: #ffd54f;
}

.main-nav a.active::after {
  width: 100%;
}
.main-nav i {
  color: #f4b400;
  font-size: 15px;
  transition: 0.3s;
}

.main-nav a:hover i {
  color: #ffd54f;
  transform: scale(1.2);
}
/* MENU BUTTON */
.menu-btn {
  font-size: 22px;
  cursor: pointer;
  padding: 10px;
  color: #fff;
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

/* SIDE MENU (MAIN FIX 🔥) */
.side-menu {
  position: fixed;
  top: 0;
  left: -100%; /* ❌ important fix */
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: 4px 0 12px rgba(0,0,0,0.15);
  transition: 0.3s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

/* ACTIVE */
.side-menu.active {
  left: 0;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* HEADER */
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.menu-header img {
  height: 45px;
}

.close-btn {
  font-size: 18px;
  cursor: pointer;
  color: red;
}

/* MENU LIST */
.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-links li {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: 0.3s;
}

.menu-links li:hover {
  background: #f5f5f5;
}

.menu-links i {
  color: #2c6e7a;
}

/* CONTACT */
.menu-contact {
  margin-top: auto;
  padding: 15px;
  border-top: 1px solid #eee;
  background: #fafafa;
}

.menu-contact h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #2c6e7a;
}

.menu-contact p {
  font-size: 13px;
  margin: 8px 0;
  display: flex;
  gap: 8px;
}

.menu-contact i {
  color: #2c6e7a;
}
.side-menu {
  z-index: 9999;
}
/* ===== OVERLAY ===== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== SIDE MENU ===== */
.side-menu {
  position: fixed;
  top: 0;
  left: -280px; /* ✅ correct */
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: 4px 0 12px rgba(0,0,0,0.15);
  transition: 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

/* ===== OPEN ===== */
.side-menu.active {
  left: 0;
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
}
/* ===== SIDE MENU PREMIUM ===== */
.side-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: linear-gradient(180deg, #ffffff, #f9f9f9);
  box-shadow: 6px 0 20px rgba(0,0,0,0.15);
  transition: 0.35s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* OPEN */
.side-menu.active {
  left: 0;
}

/* ===== HEADER ===== */
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  background: #2c6e7a;
  border-top-right-radius: 20px;
}

.menu-header img {
  height: 45px;
}

.close-btn {
  font-size: 18px;
  cursor: pointer;
  color: #fff;
}

/* ===== MENU LINKS ===== */
.menu-links {
  list-style: none;
  margin-top: 10px;
}

.menu-links li {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: 0.3s;
  border-left: 3px solid transparent;
}

/* ICON */
.menu-links i {
  color: #2c6e7a;
  font-size: 16px;
}

/* TEXT */
.menu-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  width: 100%;
}

/* HOVER EFFECT 🔥 */
.menu-links li:hover {
  background: #f1f7f8;
  border-left: 3px solid #f4b400;
  transform: translateX(5px);
}

/* ===== CONTACT ===== */
.menu-contact {
  margin-top: auto;
  padding: 16px;
  background: #f4f7f8;
  border-top: 1px solid #eee;
  border-bottom-right-radius: 20px;
}

.menu-contact h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #2c6e7a;
}

/* CONTACT ITEMS */
.menu-contact p {
  font-size: 13px;
  margin: 8px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #444;
}

/* ICON STYLE */
.menu-contact i {
  color: #f4b400;
}

/* ===== OVERLAY ===== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}
.menu-links li:hover i {
  color: #f4b400;
}
}
.close-btn {
  font-size: 20px;
  color: #fff;
  background: rgba(255,255,255,0.2);
  padding: 4px 8px;
  border-radius: 6px;
}
.menu-contact {
  background: linear-gradient(180deg, #f9f9f9, #eef5f6);
}
.side-menu {
  box-shadow: 8px 0 25px rgba(0,0,0,0.2);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
  background: #fff;
}

/* HOVER 🔥 */
.contact-item:hover {
  background: #e8f4f5;
  transform: scale(1.02);
}

/* ICON */
.contact-item i {
  background: #2c6e7a;
  color: #fff;
  padding: 8px;
  border-radius: 50%;
  font-size: 13px;
}

/* TEXT */
.contact-item span {
  font-size: 13px;
  color: #333;
}
.contact-item:hover {
  background: #e3f0f2;
  transform: translateX(4px);
}
.contact-item i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-contact {
  margin-top: 10px;
}
.brand-name {
  font-size: 14px;
  color: #f4b400;
  letter-spacing: 1px;
  margin-bottom: 5px;
}





/* HERO TEXT SECTION */
.hero-section {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(135deg, #fffaf3, #f7fdf8);
  overflow: hidden;
}

/* BOX */
.hero-box {
  max-width: 700px;
  margin: auto;
  animation: fadeUp 1s ease forwards;
}

/* TITLE */
.hero-title {
  font-size: 38px;
  color: #1a1a1a;
  line-height: 1.3;
  animation: slideDown 1s ease forwards;
}

/* BRAND */
.brand-name {
  display: block;
  color: #2e7d32;
  font-size: 20px;
  margin-top: 8px;
  animation: fadeIn 1.5s ease forwards;
}

/* TAGLINE */
.tagline {
  margin: 15px 0;
  font-size: 16px;
  color: #555;
  animation: fadeIn 2s ease forwards;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 25px;
  animation: fadeUp 2.5s ease forwards;
}

/* BUTTON BASE */
.btn {
  padding: 11px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin: 6px;
  display: inline-block;
  transition: 0.3s;
}

/* PRIMARY */
.primary {
  background: #f4b400;
  color: #000;
}

.primary:hover {
  background: #e09e00;
  transform: translateY(-2px);
}

/* SECONDARY */
.secondary {
  border: 2px solid #2e7d32;
  color: #2e7d32;
}

.secondary:hover {
  background: #2e7d32;
  color: #fff;
  transform: translateY(-2px);
}

/* 🔥 ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* MOBILE */
@media(max-width:768px){
  .hero-title {
    font-size: 24px;
  }

  .brand-name {
    font-size: 16px;
  }
}
/* TITLE */
.hero-title {
  font-size: 38px;
  color: #2e7d32; /* green 🔥 */
  line-height: 1.3;
  animation: slideDown 1s ease forwards;
}

/* BRAND */
.brand-name {
  display: block;
  color: #f4b400; /* gold/yellow */
  font-size: 20px;
  margin-top: 8px;
}

/* TAGLINE */
.tagline {
  margin: 15px 0;
  font-size: 16px;
  color: #6b7280; /* soft grey (premium look) */
}
/* PRIMARY BUTTON FIX */
.primary {
  background: #f4b400;
  color: #fff; /* ❌ black remove → white add */
  border: none;
}

.primary:hover {
  background: #e09e00;
  color: #fff;
}
.hero-section {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(135deg, #fffaf3, #eef7f0);
}
.hero-title {
  font-size: 38px;
  color: #2e7d32;
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* PRIMARY */
.primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 18px rgba(244,180,0,0.4);
}

/* SECONDARY */
.secondary:hover {
  transform: translateY(-3px) scale(1.03);
}





.pastel-categories-section {
  padding: 30px 0;
  background: #f9f6f1;
  overflow: hidden;
}

.pastel-carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.pastel-categories {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scrollLoop 20s linear infinite;
}

/* Pause on hover */
.pastel-carousel-wrapper:hover .pastel-categories {
  animation-play-state: paused;
}

.pastel-item {
  text-align: center;
  min-width: 110px;
  flex-shrink: 0;
}

.pastel-item a {
  text-decoration: none;
  color: #333;
}

.pastel-circle {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.pastel-circle img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

/* Hover effect */
.pastel-item:hover .pastel-circle {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.pastel-item p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

/* Auto Scroll Animation */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .pastel-circle {
    width: 70px;
    height: 70px;
  }

  .pastel-circle img {
    width: 38px;
    height: 38px;
  }

  .pastel-item {
    min-width: 90px;
  }

  .pastel-item p {
    font-size: 12px;
  }
}
.pastel-item p {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: #2e7d32; /* rich green */
  transition: 0.3s ease;
}

/* Hover effect */
.pastel-item:hover p {
  color: #ff9800; /* highlight orange */
}
.pastel-item {
  transition: 0.3s ease;
}

.pastel-item:hover {
  transform: translateY(-5px);
}
.pastel-carousel-wrapper {
  overflow: visible; /* hidden → visible */
}




.mm-heritage-v2 {
  padding: 80px 20px;
  background: #f5efe6;
}

/* MAIN CARD */
.mm-hv2-wrap {
  max-width: 1200px;
  margin: auto;
  background: #174c4f;
  border-radius: 30px;
  padding: 50px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* LEFT */
.mm-hv2-left {
  flex: 1;
  color: #fff;
}

.mm-tag {
  display: inline-block;
  background: #e0f2f1;
  color: #174c4f;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.mm-hv2-left h2 {
  font-size: 38px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.mm-hv2-left h2 span {
  color: #22c55e;
}

.mm-hv2-tamil {
  font-size: 16px;
  color: #c8e6c9;
  margin-bottom: 12px;
}

.mm-hv2-desc {
  font-size: 15px;
  color: #d0e7e5;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* BUTTONS */
.mm-hv2-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mm-btn-solid {
  background: #22c55e;
  color: #0f2e2f;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 6px 18px rgba(34,197,94,0.4);
}

.mm-btn-solid:hover {
  transform: translateY(-2px);
  background: #16a34a;
}

.mm-btn-link {
  color: #a7f3d0;
  text-decoration: none;
  font-weight: 500;
}

.mm-btn-link:hover {
  text-decoration: underline;
}

/* RIGHT CARDS */
.mm-hv2-right {
  flex: 1;
}

.mm-hv2-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.08);
  padding: 18px 20px;
  border-radius: 18px;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.08);
}

.mm-hv2-card:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,0.12);
}

/* ICON */
.mm-hv2-icon {
  font-size: 22px;
  background: #ffffff;
  color: #174c4f;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* TEXT */
.mm-hv2-card h4 {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.mm-hv2-card p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #cde7e5;
}

/* REMOVE OLD LINE */
.mm-hv2-line {
  display: none;
}

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

@media (max-width: 992px) {
  .mm-hv2-wrap {
    flex-direction: column;
    padding: 40px 25px;
  }

  .mm-hv2-left h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .mm-hv2 {
    padding: 50px 15px;
  }

  .mm-hv2-left h2 {
    font-size: 24px;
  }

  .mm-hv2-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .mm-btn-solid {
    width: 100%;
    text-align: center;
  }
}
.mm-hv2-icon i {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.mm-hv2-icon {
  background: #ffffff;
  color: #174c4f;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {

  .mm-hv2-wrap {
    flex-direction: column;
    padding: 25px 15px;
    border-radius: 20px;
  }

  /* CENTER TEXT */
  .mm-hv2-left {
    text-align: center;
  }

  .mm-hv2-left h2 {
    font-size: 24px;
  }

  .mm-hv2-desc {
    font-size: 14px;
  }

  /* BUTTON FULL WIDTH */
  .mm-hv2-actions {
    flex-direction: column;
    gap: 12px;
  }

  .mm-btn-solid {
    width: 100%;
    text-align: center;
  }

  .mm-btn-link {
    margin-left: 0;
  }

  /* CLEAN STACK CARDS */
  .mm-hv2-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
  }

  .mm-hv2-card {
    width: 100%;
    border-radius: 16px;
    padding: 15px;
  }

}

***




.products {
  padding: 70px 20px;
  background: #f9f6f1;
  text-align: center;
}

.section-title {
  font-size: 32px;
}

.subtitle {
  color: #777;
  margin-bottom: 40px;
}

/* GRID */
.product-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.product-card {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.3s;
}

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

/* IMAGE */
.product-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

/* SELECT */
.weight-select {
  width: 100%;
  padding: 8px;
  margin: 10px 0;
}

/* PRICE */
.price {
  font-weight: bold;
  color: #2e7d32;
  margin-bottom: 10px;
}

/* BUTTON */
.cart-btn {
  width: 100%;
  padding: 10px;
  background: #2e7d32;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
.section-title {
  font-size: 34px;
  text-align: center;
  color: #2e7d32; /* green brand color */
  font-weight: 700;
}

.subtitle {
  text-align: center;
  color: #8d6e63; /* soft brown */
  font-size: 15px;
  margin-bottom: 35px;
}
.product-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f1f1f1;
  position: relative;
}

/* HOVER WOW */
.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.product-card img {
  height: 170px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* TITLE */
.product-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* PRICE */
.price {
  font-size: 18px;
  color: #2e7d32;
  font-weight: 700;
}

/* BUTTON */
.cart-btn {
  background: linear-gradient(135deg, #2e7d32, #43a047);
  color: #fff;
  border-radius: 30px;
  padding: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.cart-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(46,125,50,0.4);
}
.products {
  background: linear-gradient(to bottom, #f9f6f1, #f1ede6);
}
.price {
  color: #2e7d32; /* brand green */
  font-size: 18px;
  font-weight: 700;
}
.products {
  background: linear-gradient(to bottom, #f8f5ef, #efe9df);
  padding: 80px 20px;
}
.weight-select {
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  transition: 0.3s;
}

.weight-select:focus {
  border-color: #2e7d32;
  outline: none;
}.cart-btn {
  background: linear-gradient(135deg, #2e7d32, #43a047);
  border-radius: 30px;
  font-weight: 600;
}

.cart-btn:hover {
  background: linear-gradient(135deg, #1b5e20, #388e3c);
}
.product-card h3 {
  color: #2e7d32;
  font-weight: 600;
}
.cart-btn {
  width: 100%;
  padding: 9px 16px;
  border-radius: 20px;
  font-size: 14px;
  height: auto;
}.cart-btn {
  background: linear-gradient(135deg, #2e7d32, #43a047);
  border-radius: 20px;
  padding: 10px;
  transition: 0.3s;
}

.cart-btn:hover {
  transform: scale(1.03);
}
.cart-btn {
  background: linear-gradient(135deg, #2e7d32, #43a047);
  box-shadow: 0 6px 15px rgba(46,125,50,0.3);
}
.product-card::before {
  content: "Ready to Cook";
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff9800;
  color: white;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
}




.product-card {
  position: relative;
}

.product-card::before {
  content: "Ready to Cook";
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ff9800, #ffb74d);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(255,152,0,0.3);
}
.product-card::before {
  animation: pop 0.4s ease;
}

@keyframes pop {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* CARD relative */
.product-card {
  position: relative;
}

/* WISHLIST BUTTON */
.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER */
.wishlist-btn:hover {
  transform: scale(1.1);
  background: #ffecec;
}

/* ACTIVE (liked) */
.wishlist-btn.active {
  color: red;
}
.badge {
  position: absolute;
  top: -6px;
  right: -6px;

  background: #ff3b3b;
  color: #fff;

  min-width: 18px;
  height: 18px;

  font-size: 11px;
  font-weight: 600;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 4px;
}
.icon {
  position: relative;
}
.badge {
  transition: 0.3s ease;
}

.icon:hover .badge {
  transform: scale(1.1);
}




/* OVERLAY */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 999;
}

/* POPUP */
.cart-popup {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
}

/* OPEN STATE */
.cart-popup.active {
  right: 0;
}

.cart-overlay.active {
  display: block;
}

/* HEADER */
.cart-header {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  border-bottom: 1px solid #eee;
}

/* ITEMS */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  background: #f9f9f9;
  padding: 10px;
  border-radius: 8px;
}

/* FOOTER */
.cart-footer {
  padding: 15px;
  border-top: 1px solid #eee;
}

.checkout-btn {
  width: 100%;
  padding: 10px;
  background: #2e7d32;
  color: #fff;
  border: none;
  border-radius: 8px;
}



.cart-item {
  display: flex;
  gap: 12px;
  background: #f9f9f9;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 12px;
  align-items: center;
}

.cart-img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 5px;
}

.cart-details {
  flex: 1;
}

.cart-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.cart-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-row span {
  color: #2e7d32;
  font-weight: bold;
}

/* QTY */
.qty-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.qty-box button {
  background: #eee;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
}

.qty-box input {
  width: 30px;
  text-align: center;
  border: none;
}

/* REMOVE */
.remove-btn {
  background: #c89b3c;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
}

/* TOTAL */
.cart-total {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

/* CHECKOUT */
.checkout-btn {
  width: 100%;
  background: #2e7d32;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 10px;
  margin-top: 10px;
  font-weight: bold;
  cursor: pointer;
}

.remove-btn {
  background: #fff0f0;
  color: #e53935;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-btn:hover {
  background: #ffe0e0;
}



.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}


/* WISHLIST POPUP */
.wishlist-popup {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100%;
  background: #fff;
  z-index: 1000;
  transition: 0.4s;
  display: flex;
  flex-direction: column;
}

.wishlist-popup.active {
  right: 0;
}

.wishlist-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 999;
}

.wishlist-overlay.active {
  display: block;
}

/* ITEM */
.wishlist-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.wishlist-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.wishlist-details {
  flex: 1;
}

.wishlist-name {
  font-size: 14px;
  font-weight: 600;
}

.wishlist-price {
  color: #2e7d32;
  font-size: 13px;
}

.move-btn {
  background: #2e7d32;
  color: #fff;
  border: none;
  padding: 5px 8px;
  border-radius: 6px;
  cursor: pointer;
}

.remove-btn {
  background: #fff0f0;
  color: #e53935;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
}









/* ===== SECTION BG ===== */
.mm-stack-hero {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #f3efe7, #ffffff);
}

/* ===== MAIN CARD ===== */
.mm-stack-box {
  max-width: 1100px;
  margin: auto;
  background: linear-gradient(135deg, #0f4c5c, #155e63);
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  position: relative;
}

/* ===== TOP TAG ===== */
.mm-stack-ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #f1efe8;
  color: #333;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* ===== FLEX ===== */
.mm-stack-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ===== TEXT ===== */
.mm-stack-text {
  flex: 1;
}

.mm-stack-text h2 {
  font-size: 42px;
  color: #fff;
  line-height: 1.3;
}

.mm-stack-text h2 span {
  color: #4ade80;
}

.mm-stack-tag {
  margin-top: 12px;
  color: #a7f3d0;
  font-size: 15px;
}

.mm-stack-desc {
  margin-top: 15px;
  color: #d1fae5;
  font-size: 15px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.mm-stack-actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.mm-stack-btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

/* PRIMARY */
.mm-stack-btn.primary {
  background: #22c55e;
  color: #fff;
}

.mm-stack-btn.primary:hover {
  background: #16a34a;
}

/* SECONDARY */
.mm-stack-btn.secondary {
  border: 2px solid #22c55e;
  color: #22c55e;
}

.mm-stack-btn.secondary:hover {
  background: #22c55e;
  color: #fff;
}

/* ===== RIGHT SIDE CARDS ===== */
.mm-stack-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* CARD STYLE */
.mm-stack-card {
  background: rgba(255,255,255,0.08);
  padding: 18px 20px;
  border-radius: 15px;
  color: #fff;
  font-size: 15px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

/* HOVER EFFECT */
.mm-stack-card:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,0.15);
}

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

  .mm-stack-box {
    padding: 30px 20px;
  }

  .mm-stack-inner {
    flex-direction: column;
    text-align: center;
  }

  .mm-stack-text h2 {
    font-size: 28px;
  }

  .mm-stack-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .mm-stack-cards {
    width: 100%;
    margin-top: 20px;
  }

  .mm-stack-card {
    text-align: left;
  }
}



.mm-stack-box {
  animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* FIXED RIBBON */
.mm-stack-ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);

  background: linear-gradient(45deg, #22c55e, #4ade80); /* GREEN */
  color: #ffffff; /* ❗ WHITE TEXT */

  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;

  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {

  .mm-stack-ribbon {
    font-size: 12px;
    padding: 6px 14px;
    top: -12px;
  }

}
.mm-stack-ribbon {
  letter-spacing: 0.5px;
}


/* ===== RIBBON FIX ===== */
.mm-stack-ribbon {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);

  background: linear-gradient(45deg, #22c55e, #4ade80);
  color: #fff;

  padding: 10px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;

  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  white-space: nowrap; /* ❗ prevent break */
}
@media (max-width: 768px) {

  .mm-stack-ribbon {
    top: -14px;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 20px;
  }

}
.mm-stack-ribbon {
  box-shadow:
    0 8px 20px rgba(0,0,0,0.15),
    0 0 15px rgba(34,197,94,0.5);
}






.mm-why {
  background: #2e7d4f; /* green background */
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

/* Heading */
.mm-why h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
}

.mm-why-sub {
  font-size: 15px;
  color: #e6e6e6;
  margin-bottom: 50px;
}

/* Grid */
.mm-why-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* Item */
.mm-why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Circle Icon */
.mm-why-item img {
  width: 90px;
  height: 90px;
  background: #fff;
  padding: 18px;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  margin-bottom: 15px;
  transition: 0.3s ease;
}

/* Hover effect */
.mm-why-item img:hover {
  transform: scale(1.1);
}

/* Pill Text */
.mm-why-item h4 {
  font-size: 13px;
  background: rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 500;
}
@media (max-width: 768px) {

  .mm-why {
    padding: 60px 15px;
  }

  .mm-why h2 {
    font-size: 24px;
  }

  .mm-why-sub {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .mm-why-grid {
    gap: 25px;
  }

  .mm-why-item img {
    width: 70px;
    height: 70px;
    padding: 14px;
  }

  .mm-why-item h4 {
    font-size: 12px;
    padding: 5px 12px;
  }
}
.mm-why {
  background: linear-gradient(135deg, #2e7d4f, #1b5e20);
  padding: 90px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* subtle pattern overlay */
.mm-why::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  top: 0;
  left: 0;
  opacity: 0.4;
}.mm-why-item img {
  width: 95px;
  height: 95px;
  background: #fff;
  padding: 18px;
  border-radius: 50%;
  margin-bottom: 15px;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.25),
    inset 0 0 10px rgba(0,0,0,0.05);

  border: 6px solid rgba(255,255,255,0.25);
  transition: all 0.4s ease;
}

/* Hover Glow */
.mm-why-item:hover img {
  transform: translateY(-8px) scale(1.1);
  box-shadow:
    0 15px 35px rgba(0,0,0,0.35),
    0 0 20px rgba(255,255,255,0.4);
}.mm-why-item h4 {
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 500;

  background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
  backdrop-filter: blur(5px);

  border: 1px solid rgba(255,255,255,0.2);
}
.mm-why h2 {
  font-size: 36px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.mm-why h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #a5d6a7;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}.mm-why-item {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.mm-why-item:nth-child(1){ animation-delay: 0.1s; }
.mm-why-item:nth-child(2){ animation-delay: 0.2s; }
.mm-why-item:nth-child(3){ animation-delay: 0.3s; }
.mm-why-item:nth-child(4){ animation-delay: 0.4s; }
.mm-why-item:nth-child(5){ animation-delay: 0.5s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}.mm-why-item:hover img {
  transform: translateY(-8px) scale(1.1) rotate(5deg);
}
.mm-why-item img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  padding: 0; /* remove padding */
  object-fit: cover; /* 🔥 important */
}







/* Container */
.footer-features {
  max-width: 1200px;
  margin: 50px auto;
  padding: 25px 20px;
  border: 1px solid #c7e6d2;
  border-radius: 12px;
  background: #f9fdfb;
}

/* Row */
.features-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

/* Each Feature */
.feature {
  flex: 1 1 20%;
  min-width: 180px;
  text-align: center;
  padding: 15px 10px;
  position: relative;
}

/* Divider (desktop only) */
.feature:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    #d9e6df,
    #d9e6df 4px,
    transparent 4px,
    transparent 8px
  );
}

/* Icon */
.feature img {
  height: 50px;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

/* Hover */
.feature:hover img {
  transform: scale(1.1);
}

/* Title */
.feature h4 {
  font-size: 16px;
  color: #1b7a47;
  margin-bottom: 5px;
}

/* Text */
.feature p {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}
@media (max-width: 768px) {

  .features-row {
    gap: 15px;
  }

  .feature {
    flex: 1 1 45%;
    min-width: unset;
    border: 1px solid #e0efe7;
    border-radius: 10px;
    background: #fff;
    padding: 15px;
  }

  /* remove vertical divider */
  .feature::before {
    display: none;
  }

  .feature img {
    height: 40px;
  }

  .feature h4 {
    font-size: 14px;
  }

  .feature p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .feature {
    flex: 1 1 100%;
  }
}
.feature {
  transition: 0.3s ease;
}

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




.mm-fssai {
  padding: 60px 20px;
  background: #e9dfcf;
}

/* Card */
.mm-fssai-card {
  max-width: 900px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  background: #ffffff;
  border-radius: 16px;
  padding: 30px 40px;

  border: 1px solid #e2c89f;
}

/* Left (Logo + Text) */
.mm-fssai-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.mm-fssai-logo {
  width: 70px;
}

/* Title */
.mm-fssai-text h3 {
  font-size: 22px;
  color: #1b7a47;
  margin-bottom: 4px;
}

/* Subtitle */
.mm-fssai-text p {
  font-size: 13px;
  color: #777;
}

/* Button */
.mm-fssai-number {
  background: #1b7a47;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

/* Hover */
.mm-fssai-number:hover {
  background: #145c34;
}
@media (max-width: 768px) {

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

  .mm-fssai-left {
    flex-direction: column;
  }

  .mm-fssai-number {
    margin-top: 10px;
  }
}




/* Footer */
.mm-footer {
  background: #2f6f73; /* same navbar color */
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

/* Container */
.mm-footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* Logo */
.mm-footer-logo img {
  width: 90px;
  margin-bottom: 15px;
}

/* Text */
.mm-footer-logo p {
  font-size: 14px;
  color: #e0f2f1;
}

/* Headings */
.mm-footer-card h4 {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

/* Yellow underline */
.mm-footer-card h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #ffcc00;
  display: block;
  margin-top: 6px;
  border-radius: 5px;
}

/* Links */
.mm-footer-card ul {
  list-style: none;
  padding: 0;
}

.mm-footer-card ul li {
  margin-bottom: 10px;
}

.mm-footer-card ul li a {
  color: #e0f2f1;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.mm-footer-card ul li a:hover {
  color: #ffcc00;
  padding-left: 5px;
}

/* Contact */
.mm-contact {
  font-size: 14px;
  margin-bottom: 10px;
  color: #e0f2f1;
}

/* Bottom */
.mm-footer-bottom {
  text-align: center;
  margin-top: 40px;
}

.mm-footer-bottom .line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, #ffcc00, transparent);
  margin-bottom: 15px;
}

.mm-footer-bottom p {
  font-size: 13px;
  color: #d0e0df;
}



/* Tablet */
@media (max-width: 900px) {

  .mm-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

/* Mobile */
@media (max-width: 600px) {

  .mm-footer {
    padding: 40px 15px 20px;
  }

  .mm-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }

  /* Logo */
  .mm-footer-logo img {
    margin: auto;
    width: 75px;
  }

  .mm-footer-logo p {
    font-size: 13px;
    padding: 0 10px;
  }

  /* Social */
  .mm-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .mm-social a {
    margin: 6px;
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  /* Headings */
  .mm-footer-card h4 {
    font-size: 16px;
  }

  .mm-footer-card h4::after {
    margin: 6px auto;
  }

  /* Links */
  .mm-footer-card ul li a {
    font-size: 13px;
  }

  /* Contact */
  .mm-contact {
    font-size: 13px;
    text-align: center;
  }

  /* Bottom */
  .mm-footer-bottom {
    margin-top: 25px;
  }

  .mm-footer-bottom p {
    font-size: 12px;
  }

  /* WhatsApp */
  .mm-whatsapp {
    width: 45px;
    height: 45px;
    font-size: 18px;
    bottom: 15px;
    left: 15px;
  }
}
.mm-footer {
  background: linear-gradient(135deg, #2f6f73, #1e4f52);
  position: relative;
  overflow: hidden;
}

/* subtle pattern */
.mm-footer::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  top: 0;
  left: 0;
  opacity: 0.3;
}
.mm-footer-card {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.mm-footer-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}
.mm-footer-card i {
  color: #ffcc00;
  margin-right: 6px;
}

.mm-footer-card ul li a i {
  transition: 0.3s;
}

.mm-footer-card ul li a:hover i {
  transform: scale(1.2);
  color: #fff;
}
.mm-footer-logo img {
  box-shadow: 0 0 20px rgba(255,204,0,0.3);
  border-radius: 12px;
}
.mm-social a {
  background: rgba(255,255,255,0.1);
  transition: 0.3s;
}

.mm-social a:hover {
  background: #ffcc00;
  color: #000;
  transform: scale(1.1);
}


.mm-footer-bottom .line {
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffcc00, transparent);
  animation: glowLine 2s infinite;
}

@keyframes glowLine {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}
.mm-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

/* Brand colors */
.mm-social .fb { background: #1877f2; }
.mm-social .ig { 
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #4f5bd5);
}
.mm-social .li { background: #0077b5; }
.mm-social .tw { background: #000; }

/* Hover */
.mm-social a:hover {
  transform: scale(1.15);
}
.mm-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;

  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: #ffcc00;

  border: 1px solid rgba(255,255,255,0.2);
  transition: 0.3s;
}

.mm-social a:hover {
  background: #ffcc00;
  color: #000;
  transform: scale(1.15);
}
.mm-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;

  border: 1px solid #ffcc00;
  color: #ffcc00;
  background: transparent;
  transition: 0.3s;
}

.mm-social a:hover {
  background: #ffcc00;
  color: #000;
  transform: scale(1.1);
}
.mm-social a {
  animation: float 3s infinite ease-in-out;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.mm-footer-card h4 {
  font-weight: 600;
  letter-spacing: 0.5px;
}












/* 🔥 FOOTER TOP LINE (CENTER GLOW STYLE) */
.mm-footer {
  position: relative;
  overflow: visible;
}

.mm-footer::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);

  width: 85%; /* 👈 center focus */
  height: 3px;
  border-radius: 50px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 213, 79, 0.2),
    #ffd54f,
    #f4b400,
    #ffd54f,
    rgba(255, 213, 79, 0.2),
    transparent
  );

  box-shadow: 
    0 0 10px rgba(244,180,0,0.6),
    0 0 20px rgba(244,180,0,0.4);
}

.mm-footer::before {
  animation: smoothGlow 3s ease-in-out infinite;
}

@keyframes smoothGlow {
  0%,100% { opacity: 0.7; }
  50% { opacity: 1; }
}




























/* =========================
   FSSAI CREATIVE CARD
========================= */

.mm-certification {
  padding: 70px 20px;
  background: linear-gradient(to bottom, #efe9df, #f8f5ef);
}

/* MAIN BOX */
.mm-cert-box {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  border-radius: 25px;
  padding: 30px 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  position: relative;
  overflow: hidden;

  /* 🔥 glass + shadow */
  box-shadow: 
    0 15px 40px rgba(0,0,0,0.1),
    inset 0 0 0 1px rgba(255,255,255,0.4);

  transition: 0.4s ease;
}

/* 🔥 GLOW BORDER EFFECT */
.mm-cert-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 2px;

  background: linear-gradient(135deg, #f4b400, transparent, #2e7d32);
  
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* HOVER 🔥 */
.mm-cert-box:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 
    0 25px 60px rgba(0,0,0,0.15),
    0 0 20px rgba(244,180,0,0.25);
}

/* LEFT */
.mm-cert-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ICON BOX 🔥 */
.mm-cert-left img {
  width: 60px;
  height: 60px;
  object-fit: contain;

  background: linear-gradient(135deg, #fff, #f5f5f5);
  padding: 10px;
  border-radius: 15px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* TEXT */
.mm-cert-text h3 {
  font-size: 22px;
  color: #2e7d32;
  font-weight: 700;
}

.mm-cert-text p {
  font-size: 14px;
  color: #777;
}

/* RIGHT BUTTON 🔥 */
.mm-cert-btn {
  background: linear-gradient(135deg, #2e7d32, #43a047);
  color: #fff;

  padding: 14px 26px;
  border-radius: 30px;

  font-weight: 600;
  font-size: 14px;

  box-shadow: 0 8px 25px rgba(46,125,50,0.4);

  transition: 0.3s;
}

/* BUTTON HOVER */
.mm-cert-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(46,125,50,0.6);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .mm-cert-box {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  .mm-cert-left {
    flex-direction: column;
  }

  .mm-cert-btn {
    width: 100%;
    text-align: center;
  }
}.mm-cert-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.6s;
}

.mm-cert-box:hover::after {
  left: 100%;
}









/* ===== FLOATING SOCIAL BAR (LEFT SIDE) ===== */
.floating-social {
  position: fixed;
  left: 18px;
  right: auto;

  top: 50%;
  transform: translateY(-50%);

  display: flex;
  flex-direction: column;
  gap: 14px;

  z-index: 9999;
}

/* ICON BASE */
.floating-social a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

/* HOVER EFFECT 🔥 (direction fixed) */
.floating-social a:hover {
  transform: scale(1.12) translateX(4px); /* 👈 correct for left side */
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* COLORS */
.floating-social .wa { background: #25D366; }
.floating-social .mail { background: #EA4335; }
.floating-social .yt { background: #FF0000; }
.floating-social .ig { background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4); }
.floating-social .fb { background: #3b5998; }
.floating-social .call { background: #4CAF50; }
.floating-social .top { background: #666; font-size: 18px; }

/* CLICK EFFECT */
.floating-social a:active {
  transform: scale(0.95);
}

/* MOBILE */
@media (max-width: 768px) {
  .floating-social {
    display: none !important;
  }
}












/* =========================
   MOBILE BOTTOM BAR (FINAL CLEAN)
========================= */

.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  background: #ffffff;
  display: none;

  justify-content: space-between;
  align-items: center;

  height: 55px;
  padding: 4px 0;

  border-top: 1px solid #eee;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);

  z-index: 9999;
}

/* NAV ITEMS */
.mobile-bottom-bar .nav-item {
  flex: 1; /* 🔥 equal width */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  font-size: 10px;
  gap: 2px;

  color: #666;
  background: transparent; /* ❌ no white box */
  transition: 0.3s ease;
}

/* ICON */
.mobile-bottom-bar .nav-item i {
  font-size: 16px;
}

/* TEXT */
.mobile-bottom-bar .nav-item span {
  line-height: 1;
}

/* ===== COLORS ===== */

/* HOME */
.mobile-bottom-bar .nav-item.home {
  color: #666;
}

/* PRODUCTS */
.mobile-bottom-bar .nav-item.products {
  color: #2e7d32;
}

/* CALL */
.mobile-bottom-bar .nav-item.call {
  color: #25D366;
  font-weight: 600;
}

/* CALL ICON */
.mobile-bottom-bar .nav-item.call i {
  background: #25D366;
  color: #fff;
  padding: 6px;
  border-radius: 50%;
  font-size: 14px;
}

/* HOVER */
.mobile-bottom-bar .nav-item:hover {
  opacity: 0.8;
}

/* ACTIVE (optional) */
.mobile-bottom-bar .nav-item.active {
  color: #2e7d32;
}

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

  .mobile-bottom-bar {
    display: flex;
  }

  body {
    padding-bottom: 60px; /* prevent overlap */
  }

}

/* EXTRA SMALL */
@media (max-width: 480px) {

  .mobile-bottom-bar .nav-item i {
    font-size: 15px;
  }

  .mobile-bottom-bar .nav-item span {
    font-size: 10px;
  }

}
/* TOP LINE (PREMIUM LOOK) */
.mobile-bottom-bar {
border-top: 2px solid #f4b400;
}




/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;

  width: 60px;
  height: 60px;

  background: #25D366;
  color: #fff;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 9999;

  transition: 0.3s ease;
}

/* HOVER */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0,0,0,0.35);
}

/* CLICK EFFECT */
.whatsapp-float:active {
  transform: scale(0.95);
}

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

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 24px;
    right: 15px;
    bottom: 70px; /* 🔥 bottom bar mela overlap aagatha */
  }

}









.floating-btn {
  position: fixed;
  right: 0;   /* 👈 change */
  left: auto; /* 👈 add */

  top: 50%;
  transform: translateY(-50%);

  display: flex;
  align-items: center;
  gap: 8px;

  background: linear-gradient(135deg, #2e7d32, #43a047);
  color: #fff;

  padding: 12px 18px;
  border-radius: 30px 0 0 30px; /* 👈 reverse border */

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 9999;

  transition: all 0.3s ease;
  overflow: hidden;
}





















@media (max-width: 768px) {

  .cart-popup {
    padding-bottom: 90px; /* konjam extra safe space */
  }

  .cart-footer {
    position: sticky;
    bottom: 65px; /* mobile bar height + gap */
    background: #fff;
    z-index: 10; /* konjam increase pannunga */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08); /* premium feel 🔥 */
  }

}
