/* ===== CSS Variables & Reset ===== */
:root {
  --green-dark: #1a3a17;
  --green: #2d5a27;
  --green-light: #3d7a35;
  --green-accent: #4a9e3f;
  --gold: #c5a55a;
  --gold-light: #d4b96e;
  --gold-dark: #a8893d;
  --cream: #faf8f2;
  --cream-dark: #f0ece0;
  --white: #ffffff;
  --text-dark: #2c2c2c;
  --text-medium: #555555;
  --text-light: #888888;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--green-dark);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-title p {
  color: var(--text-medium);
  font-size: 1.05rem;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--green);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 58, 23, 0.7) 0%,
    rgba(26, 58, 23, 0.5) 50%,
    rgba(26, 58, 23, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 700px;
}

.hero-content .hero-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content .tagline {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 2px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 165, 90, 0.4);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--green-dark);
  transform: translateY(-2px);
}

/* ===== Section Padding ===== */
section {
  padding: 80px 20px;
}

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

/* ===== About Section ===== */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-text h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin-top: 12px;
  border-radius: 2px;
}

.about-text p {
  color: var(--text-medium);
  margin-bottom: 12px;
  font-size: 1.02rem;
}

/* ===== Food Cards Grid ===== */
.favorites-section {
  background: var(--cream);
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.food-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.food-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.food-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.food-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.food-card:hover .food-card-image img {
  transform: scale(1.08);
}

.food-card-image .food-emoji {
  font-size: 4rem;
}

.food-card-body {
  padding: 20px;
}

.food-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--green-dark);
}

.food-card-body .food-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.food-card-body .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* ===== Gallery Section ===== */
.gallery-section {
  background: var(--white);
}

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,23,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item .gallery-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ===== CTA Banner ===== */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* ===== Menu Page ===== */
.menu-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 120px 20px 60px;
  text-align: center;
  color: var(--white);
}

.menu-hero h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 10px;
}

.menu-hero p {
  color: var(--gold-light);
  font-size: 1.1rem;
}

.menu-nav {
  background: var(--white);
  padding: 14px 20px;
  position: sticky;
  top: 70px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow-x: auto;
}

.menu-nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: max-content;
}

.menu-nav a {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  white-space: nowrap;
  border: 1px solid transparent;
}

.menu-nav a:hover,
.menu-nav a.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.menu-section {
  padding: 50px 20px;
}

.menu-section:nth-child(even) {
  background: var(--white);
}

.menu-section:nth-child(odd) {
  background: var(--cream);
}

.menu-section-header {
  text-align: center;
  margin-bottom: 36px;
}

.menu-section-header h2 {
  font-size: 1.6rem;
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: 0.5px;
}

.menu-section-header h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin: 10px auto 0;
  border-radius: 2px;
}

.menu-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: var(--transition);
  gap: 16px;
  min-height: 72px;
  border-left: 3px solid var(--gold);
}

.menu-section:nth-child(odd) .menu-item {
  background: var(--white);
}

.menu-section:nth-child(even) .menu-item {
  background: var(--cream);
}

.menu-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  border-left-color: var(--green);
}

.menu-item-info {
  flex: 1;
  min-width: 0;
}

.menu-item-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
  line-height: 1.3;
}

.menu-item-info p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.4;
}

.menu-item .price {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item .price:empty {
  display: none;
}

/* ===== Footer ===== */
.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 60px 20px 30px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand .footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand .footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  font-size: 1.1rem;
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--green-dark);
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float.whatsapp-float-shifted {
  bottom: 92px;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ===== Page Header (for sub-pages) ===== */
.page-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 120px 20px 60px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.page-header p {
  color: var(--gold-light);
  font-size: 1.1rem;
}

/* ===== Contact Page ===== */
.contact-section {
  padding: 60px 20px 80px;
}

.contact-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-card-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

/* ===== Gallery Page ===== */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-page-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-page-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-page-item:hover img {
  transform: scale(1.05);
}

.gallery-page-item.wide {
  grid-column: span 2;
}

/* ===== Cart Floating Button ===== */
.cart-floating-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(197, 165, 90, 0.4);
  transition: var(--transition);
}

.cart-floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(197, 165, 90, 0.5);
  background: var(--gold-light);
}

.cart-floating-btn.has-items {
  animation: cartPulse 0.3s ease;
}

@keyframes cartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e53935;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 2px 6px rgba(229, 57, 53, 0.4);
}

/* ===== Cart Overlay ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ===== Cart Drawer ===== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1200;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  height: 100dvh;
  background: var(--cream);
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--green-dark);
  color: var(--white);
}

.cart-drawer-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
}

.cart-close-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  opacity: 0.8;
  transition: var(--transition);
}

.cart-close-btn:hover {
  opacity: 1;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

/* ===== Cart Empty State ===== */
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.cart-empty svg {
  margin-bottom: 16px;
  opacity: 0.4;
}

.cart-empty p {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 4px;
}

.cart-empty span {
  font-size: 0.85rem;
}

/* ===== Cart Items ===== */
.cart-item {
  background: var(--white);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.cart-item-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 8px;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.cart-item-price {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 0.92rem;
  white-space: nowrap;
}

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

.cart-qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1.5px solid var(--green);
  background: var(--cream);
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-qty-btn:hover {
  background: var(--green);
  color: var(--white);
}

.cart-qty {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 24px;
  text-align: center;
}

.cart-remove-btn {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: var(--transition);
}

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

/* ===== Cart Footer ===== */
.cart-drawer-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: var(--white);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.cart-whatsapp-btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: 50px;
  background: #25D366;
  color: var(--white);
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.cart-whatsapp-btn:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ===== Menu Add Button ===== */
.menu-item {
  position: relative;
}

.menu-add-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 2px solid var(--green);
  background: var(--cream);
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.menu-add-btn:hover {
  background: var(--green);
  color: var(--white);
  transform: scale(1.1);
}

.menu-add-btn.added {
  background: var(--green-accent);
  color: var(--white);
  border-color: var(--green-accent);
  transform: scale(1.2);
}

/* ===== Cart Toast ===== */
.cart-toast {
  position: fixed;
  bottom: 90px;
  left: 24px;
  z-index: 1300;
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content .hero-logo {
    width: 110px;
    height: 110px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image img {
    height: 280px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-page-item.wide {
    grid-column: span 2;
  }

  .menu-hero h1 {
    font-size: 2.2rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content .tagline {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .food-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.featured {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page-item.wide {
    grid-column: span 1;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 16px;
    border-radius: 50%;
  }

  .whatsapp-float.whatsapp-float-shifted {
    bottom: 92px;
  }

  .cart-floating-btn {
    width: 50px;
    height: 50px;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .menu-nav-inner {
    justify-content: flex-start;
  }

  .menu-item {
    padding: 16px 18px;
    gap: 12px;
    min-height: 64px;
  }

  .menu-item-info h3 {
    font-size: 0.88rem;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

  .menu-hero h1 {
    font-size: 1.8rem;
  }
}
