/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: #FFFFFF; color: #1A1A1A; overflow-x: hidden; }

/* ===== VARIABLES ===== */
:root {
  --bg: #FFFFFF;
  --bg-alt: #F7FDF4;
  --green: #2E7D32;
  --green-light: #4CAF50;
  --green-mint: #E8F5E9;
  --gold: #D4AF37;
  --text: #1A1A1A;
  --gray: #F5F5F5;
  --gray-text: #666666;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(46,125,50,0.1);
  --shadow-hover: 0 14px 40px rgba(46,125,50,0.2);
  --transition: all 0.3s ease;
  --radius: 16px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem); color: var(--text); margin-bottom: 0.5rem;
  position: relative; display: inline-block;
}
.section-title::after {
  content: ''; display: block; width: 60px; height: 3px;
  background: var(--gold); border-radius: 2px;
  margin: 0.5rem auto 0;
}
.section-subtitle { font-size: 0.95rem; color: var(--gray-text); line-height: 1.7; max-width: 600px; margin: 0.75rem auto 0; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--green); color: var(--white);
  padding: 0.75rem 1.75rem; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; transition: var(--transition);
}
.btn-primary:hover { background: #1b5e20; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,125,50,0.35); }
.btn-primary:active { transform: scale(0.97); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: transparent; color: var(--green);
  padding: 0.75rem 1.75rem; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem;
  border: 2px solid var(--green); cursor: pointer; transition: var(--transition);
}
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: transparent; color: var(--white);
  padding: 0.75rem 1.75rem; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.8); cursor: pointer; transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* ===== HEARTBEAT ===== */
@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  14% { transform: scale(1.1); }
  28% { transform: scale(1); }
  42% { transform: scale(1.06); }
  70% { transform: scale(1); }
}
.hero-logo { animation: heartbeat 2s ease-in-out infinite !important; display: block !important; opacity: 1 !important; visibility: visible !important; filter: drop-shadow(0 0 20px rgba(255,255,255,0.3)) !important; }
@media(max-width:768px) { .hero-logo { width:110px!important;max-width:110px!important;height:110px!important; } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.7rem 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(46,125,50,0.1);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(46,125,50,0.12); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo img { height: 50px; object-fit: contain; }
.nav-menu { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
.nav-link { padding: 0.45rem 0.9rem; color: #444; font-size: 0.88rem; font-weight: 500; border-radius: 8px; transition: var(--transition); }
.nav-link:hover { color: var(--green); background: var(--green-mint); }
.nav-actions { display: flex; align-items: center; gap: 0.6rem; }
.btn-nav-order {
  background: var(--green); color: var(--white);
  padding: 0.45rem 1.1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; border: none; cursor: pointer;
  transition: var(--transition); font-family: 'Poppins', sans-serif; white-space: nowrap;
}
.btn-nav-order:hover { background: #1b5e20; }
.cart-btn {
  position: relative;
  background: var(--green-mint); border: 1.5px solid rgba(46,125,50,0.25);
  color: var(--green); width: 42px; height: 42px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.cart-btn:hover { background: var(--green); color: var(--white); }
.cart-btn.bounce { animation: cartBounce 0.4s ease; }
@keyframes cartBounce {
  0%,100%{transform:scale(1);} 30%{transform:scale(1.3) rotate(-10deg);} 60%{transform:scale(0.9);}
}
.cart-count {
  position: absolute; top: -5px; right: -5px;
  background: var(--green); color: var(--white); font-size: 0.62rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; padding: 0 3px; border: 2px solid #fff;
}
.cart-count.hidden { display: none; }
.lang-toggle {
  background: transparent; border: 1.5px solid var(--green); color: var(--green);
  padding: 0.38rem 0.85rem; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 700; cursor: pointer; transition: var(--transition);
}
.lang-toggle:hover { background: var(--green); color: var(--white); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #1A1A1A; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: url('img/hero.png') center center / cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.50); }
.hero-content { position: relative; z-index: 1; padding: 6rem 1.5rem 3rem; max-width: 860px; margin: 0 auto; }
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(46,125,50,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(46,125,50,0); }
}
.hero-badge {
  display: inline-block;
  background: rgba(46,125,50,0.12); border: 1px solid rgba(46,125,50,0.4);
  color: #FFFFFF !important; padding: 0.4rem 1.3rem; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600; margin-bottom: 1.25rem;
  animation: badgePulse 2.5s ease-in-out infinite;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6) !important;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem); color: #FFFFFF !important; line-height: 1.05; margin-bottom: 0.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.5) !important;
}
.hero-eat-fresh { font-size: clamp(1.1rem, 3vw, 1.6rem); color: #FFFFFF !important; font-weight: 700; letter-spacing: 2px; margin-bottom: 0.5rem; text-shadow: 1px 1px 6px rgba(0,0,0,0.8) !important; }
.hero-tagline { font-size: clamp(0.9rem, 2vw, 1.1rem); color: #FFFFFF !important; margin-bottom: 2rem; font-weight: 400; font-style: italic; text-shadow: 1px 1px 6px rgba(0,0,0,0.8) !important; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; font-size: 0.82rem; color: #FFFFFF !important; font-weight: 500; opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; text-shadow: 1px 1px 4px rgba(0,0,0,0.6) !important; }
.stat.animated { opacity: 1; transform: translateY(0); }
.stat span:first-child { font-size: 1.5rem; }

/* ===== INFO BAR ===== */
.info-bar { background: var(--green); padding: 0.85rem 0; }
.info-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.info-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: rgba(255,255,255,0.92); white-space: nowrap; }
.info-item a { color: #fff; font-weight: 700; }
.info-item a:hover { text-decoration: underline; }

/* ===== MENU SECTION ===== */
.menu-section { padding: 5rem 0; background: var(--bg); }

/* Tabs */
.tabs-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 0.5rem; margin-bottom: 2.5rem; scrollbar-width: none; }
.tabs-wrapper::-webkit-scrollbar { display: none; }
.tabs { display: flex; gap: 0.5rem; width: max-content; padding: 0 0.25rem; }
.tab-btn {
  background: var(--gray); color: var(--gray-text);
  border: none; padding: 0.5rem 1.2rem; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.tab-btn:hover { background: var(--green-mint); color: var(--green); }
.tab-btn.active { background: var(--green); color: var(--white); }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media(max-width: 1024px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width: 768px)  { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 480px)  { .menu-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem; } }

/* Cards */
.menu-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(46,125,50,0.12); transition: var(--transition);
  box-shadow: var(--shadow);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(46,125,50,0.3); }
.menu-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; }
.menu-card:hover img { transform: scale(1.04); }
.card-body { padding: 0.85rem 1rem 1rem; }
.card-body h3 { font-size: 0.92rem; color: var(--text); margin-bottom: 0.3rem; line-height: 1.3; }
.card-price { color: var(--green); font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; }
.card-desc { font-size: 0.73rem; color: var(--gray-text); line-height: 1.5; margin-bottom: 0.75rem; }
.btn-add-cart {
  width: 100%; background: var(--green); color: var(--white); border: none;
  padding: 0.5rem 1rem; border-radius: 10px;
  font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.btn-add-cart:hover { background: #1b5e20; transform: translateY(-1px); }
.btn-add-cart:active { transform: scale(0.97); }
.btn-ask-price {
  width: 100%; background: transparent; color: var(--green); border: 1.5px solid var(--green);
  padding: 0.5rem 1rem; border-radius: 10px;
  font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.btn-ask-price:hover { background: var(--green); color: var(--white); }

/* List items */
.menu-list { list-style: none; border: 1px solid rgba(46,125,50,0.1); border-radius: 14px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.menu-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.8rem 1.25rem; border-bottom: 1px solid rgba(46,125,50,0.06);
  font-size: 0.88rem; color: var(--text); gap: 1rem; transition: background 0.2s;
}
.menu-list li:last-child { border-bottom: none; }
.menu-list li:hover { background: var(--bg-alt); }
.list-right { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.list-price { color: var(--green); font-weight: 700; font-size: 0.9rem; }
.btn-add-list {
  background: var(--green); color: var(--white); border: none;
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 1.1rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.btn-add-list:hover { background: #1b5e20; transform: scale(1.1); }
.btn-ask-sm {
  background: transparent; color: var(--green); border: 1.5px solid var(--green);
  padding: 0.2rem 0.65rem; border-radius: 20px;
  font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 700; cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-ask-sm:hover { background: var(--green); color: var(--white); }
.list-label-ask { color: var(--gray-text); font-size: 0.78rem; font-style: italic; }

/* ===== ABOUT ===== */
.about-section { padding: 5rem 0; background: var(--bg-alt); }
.about-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3.5rem; }
.feature-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.5rem;
  text-align: center; border: 1px solid rgba(46,125,50,0.1); transition: var(--transition);
  box-shadow: var(--shadow);
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: var(--shadow-hover); }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; transition: transform 0.3s ease; }
.feature-card:hover .feature-icon { transform: translateY(-4px); }
.feature-card h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.83rem; color: var(--gray-text); line-height: 1.6; }
.about-text { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.about-text p { font-size: 1rem; color: var(--gray-text); line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-card { background: var(--green); border-radius: var(--radius); padding: 1.75rem 1rem; text-align: center; color: var(--white); }
.stat-card .stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; display: block; }
.stat-card .stat-label { font-size: 0.8rem; opacity: 0.85; margin-top: 0.25rem; }

/* ===== RESERVATIONS ===== */
.reservations-section {
  padding: 5rem 0;
  background: linear-gradient(160deg, var(--white) 0%, var(--bg-alt) 100%);
}
.reservation-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  max-width: 750px; margin: 0 auto; background: var(--white);
  padding: 2.5rem; border-radius: 20px; box-shadow: 0 8px 40px rgba(46,125,50,0.12);
  border: 1px solid rgba(46,125,50,0.1);
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-full { grid-column: 1 / -1; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--green); letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg-alt); border: 1.5px solid rgba(46,125,50,0.15);
  border-radius: 10px; padding: 0.75rem 1rem; color: var(--text);
  font-family: 'Poppins', sans-serif; font-size: 0.88rem; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green); background: #fff; box-shadow: 0 0 0 3px rgba(46,125,50,0.08);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }
.form-group select option { background: var(--white); }
.form-group textarea { resize: vertical; }
.form-submit { grid-column: 1/-1; margin-top: 0.5rem; }
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator { opacity: 0.6; cursor: pointer; }

/* ===== DELIVERY ===== */
.delivery-section { padding: 5rem 0; background: var(--white); }
.delivery-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.delivery-card {
  background: var(--white); border-radius: var(--radius); padding: 2.5rem 1.5rem;
  text-align: center; border: 2px solid rgba(46,125,50,0.12); transition: var(--transition); box-shadow: var(--shadow);
}
.delivery-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--green); }
.delivery-logo { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.delivery-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--text); margin-bottom: 0.5rem; }
.delivery-card p { font-size: 0.83rem; color: var(--gray-text); margin-bottom: 1.25rem; line-height: 1.5; }
.delivery-center { text-align: center; }

/* ===== REVIEWS ===== */
.reviews-section { padding: 5rem 0; background: var(--bg-alt); }
.google-rating { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.rating-row { display: flex; align-items: center; gap: 0.75rem; }
.rating-score { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--text); }
.stars { font-size: 1.4rem; color: #F4B400; letter-spacing: 2px; }
.rating-count { font-size: 0.82rem; color: var(--gray-text); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.review-card {
  background: var(--white); border: 1px solid rgba(46,125,50,0.1);
  border-radius: var(--radius); padding: 1.75rem; transition: var(--transition); box-shadow: var(--shadow);
}
.review-card:hover { border-color: rgba(46,125,50,0.3); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.reviewer-avatar { width: 52px; height: 52px; border-radius: 50%; border: 2.5px solid var(--green); margin-bottom: 0.75rem; }
.reviewer-info { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.reviewer-info strong { color: var(--text); font-size: 0.95rem; }
.review-card p { color: var(--gray-text); font-size: 0.88rem; line-height: 1.7; font-style: italic; }

/* ===== CONTACT ===== */
.contact-section { padding: 5rem 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-info-item span:first-child { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-info-item strong { display: block; color: var(--text); font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-info-item a, .contact-info-item p { color: var(--gray-text); font-size: 0.88rem; }
.contact-info-item a:hover { color: var(--green); }
.map-wrapper { border-radius: var(--radius); overflow: hidden; border: 2px solid rgba(46,125,50,0.15); box-shadow: var(--shadow); }

/* ===== FOOTER ===== */
.footer { background: #1A1A1A; padding: 3rem 0 1.5rem; }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; align-items: start; }
.footer-brand img { height: 55px; object-fit: contain; margin-bottom: 0.5rem; filter: brightness(10); }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); }
.footer-brand-sub { color: var(--green-light); font-size: 0.88rem; font-weight: 600; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.8rem; margin-top: 0.75rem; line-height: 1.6; max-width: 220px; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--green-light); }
.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact p, .footer-contact a { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.footer-contact a:hover { color: var(--green-light); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-link {
  width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.social-link:hover { background: var(--green); color: var(--white); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.78rem; }
.footer-bottom a { color: var(--gold); font-weight: 700; }
.footer-bottom a:hover { text-decoration: underline; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: #25D366; width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: waPulse 2s infinite; transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); animation: none; }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== CART ===== */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1100; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: 390px;
  background: var(--white); border-left: 2px solid rgba(46,125,50,0.2);
  z-index: 1200; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.cart-panel.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(46,125,50,0.12); flex-shrink: 0; background: var(--bg-alt); }
.cart-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text); font-weight: 700; }
.cart-close { background: var(--gray); border: none; color: var(--text); width: 34px; height: 34px; border-radius: 50%; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.cart-close:hover { background: #e53e3e; color: var(--white); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-thumb { background: rgba(46,125,50,0.2); border-radius: 4px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 200px; gap: 0.75rem; color: var(--gray-text); }
.cart-empty span { font-size: 2.5rem; }
.cart-empty p { font-size: 0.88rem; }
.cart-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.9rem 0; border-bottom: 1px solid rgba(46,125,50,0.08); animation: slideIn 0.25s ease; }
@keyframes slideIn { from{opacity:0;transform:translateX(20px);} to{opacity:1;transform:translateX(0);} }
.cart-item-name { flex: 1; font-size: 0.85rem; color: var(--text); line-height: 1.4; }
.cart-item-qty { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }
.cart-item-qty button { background: var(--bg-alt); border: 1px solid rgba(46,125,50,0.2); color: var(--text); width: 26px; height: 26px; border-radius: 6px; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.cart-item-qty button:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.cart-item-qty span { min-width: 22px; text-align: center; font-weight: 700; font-size: 0.9rem; color: var(--green); }
.cart-item-price { font-weight: 700; color: var(--green); font-size: 0.88rem; min-width: 52px; text-align: right; flex-shrink: 0; }
.cart-item-remove { background: none; border: none; color: #bbb; cursor: pointer; font-size: 1rem; padding: 2px 4px; border-radius: 4px; transition: var(--transition); }
.cart-item-remove:hover { color: #e53e3e; }
.cart-footer { padding: 1.25rem 1.5rem; border-top: 1px solid rgba(46,125,50,0.12); flex-shrink: 0; background: var(--bg-alt); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; font-size: 0.95rem; font-weight: 600; color: var(--text); }
.cart-total-amount { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--green); font-weight: 700; }
.btn-order-wa { width: 100%; background: #25D366; color: var(--white); border: none; padding: 1rem; border-radius: 12px; font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: var(--transition); }
.btn-order-wa:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98); flex-direction: column;
    justify-content: center; align-items: center; gap: 1.5rem;
    transform: translateX(-100%); transition: transform 0.35s ease; z-index: 900; list-style: none;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1.2rem; padding: 0.6rem 1.5rem; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .delivery-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { margin: 0 auto 0.5rem; }
  .footer-brand p { max-width: 100%; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cart-panel { width: 95vw; }
  .reservation-form { grid-template-columns: 1fr; }
  .contact-form-row { grid-template-columns: 1fr; }
}
@media(max-width: 480px) {
  .menu-card img { height: 160px; }
  .hero-stats { gap: 1rem; }
  .about-features { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .cart-panel { width: 100vw; border-left: none; border-top: 2px solid rgba(46,125,50,0.2); }
  .info-container { gap: 0.75rem; flex-direction: column; align-items: flex-start; padding-left: 1.5rem; }
}
