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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  color: #2c2c2c;
  background: #fff;
  overflow-x: hidden;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 60px;
  background: #fdfaf5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: navDrop 0.7s ease both;
  backdrop-filter: blur(10px);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo img {
  display: block;
  height: 80px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

nav ul a {
  text-decoration: none;
  color: #2c2c2c;
  font-size: 0.92rem;
  position: relative;
  transition: color 0.2s;
}

nav ul a:hover,
nav ul a.active {
  color: #b5451b;
}

nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: #b5451b;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

nav ul a:hover::after,
nav ul a.active::after {
  transform: scaleX(1);
}

nav ul a.active {
  font-weight: bold;
}

.nav-actions,
.drawer-nav,
.mobile-nav-drawer {
  display: none;
}

/* SHIPPING BANNER */
.shipping-banner {
  background: #b5451b;
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-size: 0.88rem;
  letter-spacing: 1px;
  animation: bannerSlide 0.7s ease both;
}

.shipping-banner span { color: #f5d5c5; font-weight: bold; }

/* HERO */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #3d1f0a 100%);
  color: #fff;
  text-align: center;
  padding: 130px 20px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "🌿";
  position: absolute;
  font-size: 12rem;
  opacity: 0.05;
  top: 10px;
  left: -30px;
  animation: herbFloat 9s ease-in-out infinite;
}

.hero::after {
  content: "🌿";
  position: absolute;
  font-size: 12rem;
  opacity: 0.05;
  bottom: 10px;
  right: -30px;
  animation: herbFloat 10s ease-in-out infinite reverse;
}

.hero-food {
  position: absolute;
  z-index: -1;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.28));
  opacity: 0.42;
  pointer-events: none;
}

.hero-food-one {
  top: 24%;
  left: 11%;
  font-size: 4.2rem;
  animation: floatFood 7s ease-in-out infinite;
}

.hero-food-two {
  right: 13%;
  top: 20%;
  font-size: 4.6rem;
  animation: floatFood 8s ease-in-out 0.7s infinite reverse;
}

.hero-food-three {
  bottom: 15%;
  left: 20%;
  font-size: 3.5rem;
  animation: floatFood 6.5s ease-in-out 0.3s infinite;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #e0c9b5;
  font-size: 0.78rem;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 22px;
  text-transform: uppercase;
  animation: fadeUp 0.75s ease 0.15s both;
}

.hero h1 {
  font-size: 3.4rem;
  margin-bottom: 10px;
  letter-spacing: 4px;
  color: #fff;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero .tagline {
  font-size: 1rem;
  color: #e0c9b5;
  margin-bottom: 14px;
  font-style: italic;
  letter-spacing: 1px;
  animation: fadeUp 0.8s ease 0.45s both;
}

.hero p {
  font-size: 1.05rem;
  color: #ccc;
  margin-bottom: 38px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.8s ease 0.6s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.75s both;
}

.btn {
  background: #b5451b;
  color: #fff;
  padding: 14px 36px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.btn:hover {
  background: #8f3415;
  box-shadow: 0 10px 24px rgba(181,69,27,0.22);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #e0c9b5;
  color: #e0c9b5;
  padding: 12px 34px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: #e0c9b5;
  color: #1a1a1a;
  transform: translateY(-2px);
}

/* PILLARS */
.pillars {
  background: #fdf6f0;
  padding: 50px 60px;
}

.pillars-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.pillar {
  text-align: center;
  max-width: 200px;
  animation: fadeUp 0.7s ease both;
}

.pillar:nth-child(2) { animation-delay: 0.1s; }
.pillar:nth-child(3) { animation-delay: 0.2s; }
.pillar:nth-child(4) { animation-delay: 0.3s; }
.pillar .icon { font-size: 2.2rem; margin-bottom: 10px; transition: transform 0.25s ease; }
.pillar:hover .icon { transform: translateY(-5px) scale(1.08); }
.pillar h4 { color: #b5451b; font-size: 1rem; margin-bottom: 6px; letter-spacing: 1px; }
.pillar p { color: #777; font-size: 0.82rem; line-height: 1.6; }

/* SECTION SHARED */
section { padding: 80px 60px; }

section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 8px;
  color: #b5451b;
  letter-spacing: 1px;
}

.section-sub {
  text-align: center;
  color: #999;
  margin-bottom: 50px;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.divider {
  width: 60px;
  height: 3px;
  background: #b5451b;
  margin: 0 auto 14px;
  border-radius: 2px;
  transform-origin: center;
  animation: dividerGrow 0.8s ease both;
}

.reveal-section {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* MENU */
.menu-section { background: #fff; }

.mobile-menu-toggle,
.mobile-cart-toggle,
.menu-close {
  display: none;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.menu-column {
  display: grid;
  gap: 24px;
}

.offering-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  background: #faf7f4;
  border: 1px solid #ead9ce;
  border-radius: 10px;
  padding: 8px;
}

.offering-tab {
  background: #fff;
  border: 1px solid #ead9ce;
  border-radius: 6px;
  color: #7a3a14;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: bold;
  min-height: 44px;
  padding: 10px 14px;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.download-menu-wrapper {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 20px 0;
}

.download-btn {
    text-decoration: none;
    display: inline-block;
}
.offering-tab.active,
.offering-tab:hover {
  background: #b5451b;
  border-color: #b5451b;
  color: #fff;
  transform: translateY(-1px);
}

.offering-panel {
  display: none;
}

.offering-panel.active {
  display: block;
}

.menu-panel,
.cart-summary {
  background: #faf7f4;
  border: 1px solid #ead9ce;
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(61,31,10,0.06);
}

.menu-panel-head,
.cart-summary-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid #ead9ce;
  margin-bottom: 16px;
}

.menu-kicker {
  display: block;
  color: #b5451b;
  font-size: 0.76rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.menu-panel h3 {
  color: #2c2c2c;
  font-size: 1.25rem;
  line-height: 1.25;
}

.menu-pill {
  background: #fff;
  color: #7a3a14;
  border: 1px solid #ead9ce;
  border-radius: 999px;
  flex-shrink: 0;
  font-size: 0.72rem;
  padding: 6px 10px;
  white-space: nowrap;
}

.cart-item-list,
.sub-menu-panel,
.gurgaon-menu-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.cart-menu-item {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  align-items: start;
  background: #fff;
  border: 1px solid #ead9ce;
  border-radius: 8px;
  padding: 16px;
  min-height: 190px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cart-menu-item:hover {
  border-color: rgba(181,69,27,0.35);
  box-shadow: 0 14px 30px rgba(181,69,27,0.12);
  transform: translateY(-5px);
}

.item-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdf0e8;
  border-radius: 8px;
  font-size: 1.85rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.item-icon.item-photo {
  padding: 0;
  overflow: hidden;
}

.item-icon.item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-menu-item:hover .item-icon {
  background: #fae5d3;
  transform: rotate(-4deg) scale(1.08);
}

.item-info h4 {
  color: #2c2c2c;
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.item-info p {
  color: #777;
  font-size: 0.82rem;
  line-height: 1.45;
}

.item-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.price { color: #b5451b; font-weight: bold; font-size: 1rem; }
.price.muted { color: #777; font-size: 0.78rem; white-space: nowrap; }

.order-btn {
  background: #b5451b;
  color: #fff;
  border: none;
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.2s;
}

.order-btn:disabled {
  background: #d8c8be;
  color: #7f716a;
  cursor: not-allowed;
  box-shadow: none;
}

.order-btn.has-items {
  background: #fff;
  color: #b5451b;
  border: 1px solid #b5451b;
  min-width: 94px;
  padding: 0;
}

.order-btn:hover {
  background: #8f3415;
  transform: translateY(-1px);
}

.order-btn.has-items:hover {
  background: #fff7f2;
}

.qty-control {
  display: grid;
  grid-template-columns: 30px 34px 30px;
  align-items: center;
  min-height: 32px;
}

.qty-control span,
.qty-control strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.qty-control span {
  color: #b5451b;
  font-size: 1rem;
  font-weight: bold;
}

.qty-control strong {
  background: #b5451b;
  color: #fff;
  min-height: 32px;
  font-size: 0.84rem;
}

.gurgaon-panel {
  background: #fffdfb;
}
.menu-tabs {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 44px;
      flex-wrap: wrap;
}
.sub-menu-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.gurgaon-main-tabs {
  margin-bottom: 18px;
}

.sub-tab {
  background: #fff;
  border: 1px solid #ead9ce;
  border-radius: 999px;
  color: #b5451b;
  cursor: pointer;
  flex-shrink: 0;
  font-family: inherit;
  font-size: 0.8rem;
  padding: 8px 14px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.sub-tab.active,
.sub-tab:hover {
  background: #b5451b;
  border-color: #b5451b;
  color: #fff;
  transform: translateY(-1px);
}

.sub-menu-panel { display: none; }
.sub-menu-panel.active { display: grid; }

.gurgaon-menu-panel {
  display: none;
}

.gurgaon-menu-panel.active {
  display: grid;
}

.gurgaon-menu-panel > .sub-menu-tabs,
.gurgaon-menu-panel > .sub-menu-panel {
  grid-column: 1 / -1;
}

.cart-summary {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 120px);
  overflow: hidden;
}

.cart-close {
  display: none;
}

.cart-summary-head strong {
  color: #b5451b;
  font-size: 0.9rem;
  white-space: nowrap;
}

.cart-summary-head,
.cart-empty,
.cart-total,
.cart-checkout {
  flex-shrink: 0;
}

.cart-empty {
  color: #777;
  font-size: 0.88rem;
  line-height: 1.55;
  padding: 16px 0;
}

.cart-list {
  display: grid;
  gap: 10px;
  list-style: none;
  overflow-y: auto;
  padding-right: 4px;
  min-height: 0;
}

.cart-list:not(:empty) {
  flex: 1;
}

.cart-list li {
  background: #fff;
  border: 1px solid #ead9ce;
  border-radius: 8px;
  padding: 10px;
  animation: fadeUp 0.25s ease both;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #2c2c2c;
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.cart-line small {
  color: #888;
  display: block;
  font-size: 0.75rem;
  line-height: 1.35;
}

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

.cart-qty-actions {
  display: inline-grid;
  grid-template-columns: 28px 34px 28px;
  align-items: center;
  border: 1px solid #ead9ce;
  border-radius: 4px;
  overflow: hidden;
}

.cart-qty-actions strong {
  align-items: center;
  background: #faf7f4;
  color: #b5451b;
  display: inline-flex;
  font-size: 0.8rem;
  justify-content: center;
  min-height: 28px;
}

.cart-qty-btn {
  background: #fff;
  border: none;
  color: #b5451b;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: bold;
  min-height: 28px;
  transition: background 0.2s;
}

.cart-qty-btn:hover {
  background: #fff7f2;
}

.cart-remove-btn {
  background: transparent;
  border: none;
  color: #b5451b;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: bold;
  padding: 6px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-remove-btn:hover {
  color: #8f3415;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #555;
  font-size: 0.9rem;
  border-top: 1px solid #ead9ce;
  margin-top: 16px;
  padding-top: 16px;
}

.cart-total strong { color: #b5451b; }

.cart-error {
  display: none;
  color: #b5451b;
  font-size: 0.82rem;
  font-weight: bold;
  line-height: 1.45;
  margin-top: 12px;
}

.cart-error.show {
  display: block;
}

.cart-checkout {
  display: block;
  margin-top: 16px;
  text-align: center;
}

.menu-overlay,
.cart-overlay {
  display: none;
}

.service-note {
  text-align: center;
  margin-top: 36px;
  color: #888;
  font-size: 0.88rem;
}

.accent {
  color: #b5451b;
}

/* ABOUT */
.about { background: #fdf6f0; }

.about-inner {
  display: flex;
  gap: 70px;
  align-items: center;
  max-width: 950px;
  margin: 0 auto;
}

.about-img {
  font-size: 8rem;
  flex-shrink: 0;
  text-align: center;
  animation: chefBob 5s ease-in-out infinite;
}

.about-text h2 { text-align: left; color: #b5451b; margin-bottom: 6px; }
.about-text .divider { margin: 0 0 18px; }
.about-text p { color: #666; line-height: 1.9; margin-bottom: 14px; font-size: 0.95rem; }

.values-list { list-style: none; margin-top: 10px; }

.values-list li {
  padding: 6px 0;
  color: #555;
  font-size: 0.9rem;
}

.values-list li::before {
  content: "✓  ";
  font-weight: bold;
  color: #b5451b;
}

/* FEEDBACK */
.feedback { background: #fff; }

.feedback-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.feedback-form,
.feedback-card {
  background: #faf7f4;
  border: 1px solid #ead9ce;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(61,31,10,0.05);
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.feedback-form input,
.feedback-form textarea,
.feedback-form select {
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  background: #fff;
  transition: border-color 0.2s;
}

.feedback-form input:focus,
.feedback-form textarea:focus,
.feedback-form select:focus {
  border-color: #b5451b;
}

.feedback-form textarea {
  height: 130px;
  resize: vertical;
}

.feedback-form .btn {
  align-self: flex-start;
}

.feedback-scroll {
  max-height: 360px;
  overflow: hidden;
  position: relative;
}

.feedback-scroll::before,
.feedback-scroll::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 34px;
  pointer-events: none;
  z-index: 1;
}

.feedback-scroll::before {
  top: 0;
  background: linear-gradient(#fff, rgba(255,255,255,0));
}

.feedback-scroll::after {
  bottom: 0;
  background: linear-gradient(rgba(255,255,255,0), #fff);
}

.feedback-cards {
  display: grid;
  gap: 14px;
  animation: feedbackScroll 18s linear infinite;
  padding-bottom: 14px;
}

.feedback-scroll:hover .feedback-cards {
  animation-play-state: paused;
}

.feedback-card {
  padding: 20px;
  min-height: 128px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feedback-card:hover {
  border-color: rgba(181,69,27,0.3);
  transform: translateX(4px);
}

.feedback-card .stars {
  color: #b5451b;
  font-size: 0.95rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.feedback-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.feedback-card strong {
  color: #2c2c2c;
  font-size: 0.85rem;
}

@keyframes feedbackScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(calc(-50% - 7px)); }
}

@keyframes bannerSlide {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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

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

@keyframes dividerGrow {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes herbFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(14px) rotate(5deg); }
}

@keyframes floatFood {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(0,-18px,0) rotate(6deg); }
}

@keyframes chefBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* CONTACT */
.contact { background: #fdf6f0; }

.contact-inner {
  max-width: 650px;
  margin: 0 auto;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 46px;
}

.form-row { display: flex; gap: 14px; }
.form-row input { flex: 1; }

.contact input,
.contact textarea,
.contact select {
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact input:focus,
.contact textarea:focus,
.contact select:focus {
  border-color: #b5451b;
  box-shadow: 0 0 0 3px rgba(181,69,27,0.1);
}

.contact textarea { height: 120px; resize: vertical; }
.contact .btn { align-self: flex-start; }

/* INFO CARDS */
.info-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  background: #fff;
  border: 1px solid #ead9ce;
  border-radius: 10px;
  padding: 22px 18px;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.info-card:hover {
  box-shadow: 0 12px 26px rgba(181,69,27,0.12);
  transform: translateY(-4px);
}

.info-card .ic-icon { font-size: 1.8rem; margin-bottom: 10px; transition: transform 0.22s ease; }
.info-card:hover .ic-icon { transform: scale(1.12); }
.info-card strong {
  display: block;
  color: #b5451b;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.info-card span { color: #666; font-size: 0.85rem; line-height: 1.6; }

.contact-link {
  color: #b5451b;
  text-decoration: none;
  overflow-wrap: break-word;
}

/* FOOTER */
footer {
  background: #1a1a1a;
  color: #aaa;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.85rem;
}

footer .footer-logo {
  font-size: 1.5rem;
  color: #e0c9b5;
  letter-spacing: 3px;
  margin-bottom: 6px;
  font-weight: bold;
}

footer .footer-tag {
  color: #b5451b;
  font-style: italic;
  font-size: 0.8rem;
  margin-bottom: 20px;
}

footer p { color: #666; }
footer span { color: #b5451b; }

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 9999;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  animation: wapulse 2.2s infinite;
  z-index: -1;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #1a1a1a;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes wapulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .logo img {
    height: 44px;
    max-width: 136px;
  }
  nav ul { display: none; }
  nav ul a { font-size: 0.82rem; }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }
  .hero h1 { font-size: 2.2rem; }
  section { padding: 60px 20px; }
  .pillars { padding: 40px 20px; }
  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-float::before {
    width: 54px;
    height: 54px;
  }
  .whatsapp-tooltip {
    display: none;
  }
  .mobile-menu-toggle,
  .mobile-cart-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #b5451b;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    min-height: 40px;
    padding: 9px 13px;
  }
  .mobile-cart-toggle {
    min-width: 58px;
    padding: 7px 9px;
  }
  .mobile-cart-toggle strong {
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #b5451b;
    border-radius: 50%;
    font-size: 0.75rem;
  }
  .order-layout { grid-template-columns: 1fr; }
  .mobile-nav-drawer {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(82vw, 300px);
    z-index: 10001;
    overflow-y: auto;
    background: #fff;
    padding: 16px;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }
  .mobile-nav-drawer.open {
    transform: translateX(0);
  }
  .menu-close {
    display: block;
    margin-left: auto;
    margin-bottom: 10px;
    background: transparent;
    border: none;
    color: #b5451b;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
  }
  .drawer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
  }
  .drawer-nav a {
    background: #faf7f4;
    border: 1px solid #ead9ce;
    border-radius: 8px;
    color: #2c2c2c;
    font-size: 0.9rem;
    padding: 12px;
    text-align: center;
    text-decoration: none;
  }
  .drawer-nav a:hover {
    color: #b5451b;
  }
  .drawer-nav a.active {
    background: #b5451b;
    border-color: #b5451b;
    color: #fff;
  }
  .cart-item-list,
  .sub-menu-panel { grid-template-columns: 1fr; }
  .offering-tabs { grid-template-columns: 1fr; }
  .menu-section.reveal-section,
  .menu-section.reveal-section.is-visible {
    transform: none;
  }
  .menu-panel,
  .cart-summary { padding: 16px; }
  .cart-summary {
    position: fixed;
    top: 74px;
    right: 12px;
    width: min(calc(100vw - 24px), 360px);
    max-height: calc(100vh - 90px);
    z-index: 10001;
    overflow: hidden;
    border-radius: 10px;
    transform: translateY(-10px) scale(0.98);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    visibility: hidden;
    pointer-events: none;
  }
  .cart-summary.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .cart-close {
    display: block;
    margin-left: auto;
    margin-bottom: 10px;
    background: transparent;
    border: none;
    color: #b5451b;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
  }
  .menu-overlay,
  .cart-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 10000;
  }
  .menu-overlay.open,
  .cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }
  .menu-panel-head { flex-direction: column; }
  .cart-menu-item {
    grid-template-rows: auto;
    min-height: 0;
  }
  .item-action {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
  }
  .order-btn {
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(181,69,27,0.24);
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.8px;
    min-height: 44px;
    min-width: 104px;
    padding: 12px 20px;
    text-transform: uppercase;
  }
  .order-btn.has-items {
    border: 1px solid rgba(181,69,27,0.42);
    box-shadow: 0 8px 18px rgba(181,69,27,0.14);
    min-width: 138px;
  }
  .qty-control {
    grid-template-columns: 44px 48px 44px;
    min-height: 44px;
  }
  .qty-control span {
    font-size: 1.18rem;
  }
  .qty-control strong {
    font-size: 0.98rem;
    min-height: 44px;
  }
  .about-inner { flex-direction: column; text-align: center; }
  .about-text h2 { text-align: center; }
  .about-text .divider { margin: 0 auto 18px; }
  .form-row { flex-direction: column; }
  .feedback-inner { grid-template-columns: 1fr; }
  .feedback-form { padding: 18px; }
  .info-cards { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-section {
    opacity: 1;
    transform: none;
  }
}

.cart-menu-item.image-card{
    max-width:350px;
    margin:auto;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    transition:0.3s ease;
}

.cart-menu-item.image-card:hover{
    transform:translateY(-4px);
}

/* IMAGE */

.item-image{
    width:100%;
    height:240px;
    overflow:hidden;
}

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

/* CONTENT */

.item-content{
    padding:18px;
}

.item-info h4{
    margin:0 0 10px;
    font-size:22px;
    color:#222;
}

.item-info p{
    margin:0;
    color:#666;
    font-size:14px;
    line-height:1.5;
}

/* ACTION */

.item-action{
    margin-top:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

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

/* BUTTON */

.order-btn{
    border:none;
    background:#b5451b;
    color:#fff;
    padding:10px 22px;
    border-radius:10px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s ease;
}

.order-btn:hover{
    background:#963815;
}

.order-btn:disabled,
.order-btn:disabled:hover {
    background:#d8c8be;
    color:#7f716a;
    cursor:not-allowed;
    transform:none;
}
