:root {
  --primary-color: #FFC107;
  --secondary-color: #FCF7EE;
  --accent-color: #3E2415;
  --text-light: #7E6551;
  --white: #ffffff;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(62, 36, 21, 0.08);
  --shadow-hover: 0 10px 15px rgba(62, 36, 21, 0.15);
  --border-radius: 12px;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--accent-color);
  background-color: var(--secondary-color);
  line-height: 1.6;
  /* Smooth scrolling mechanism */
  scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 5rem 0;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.btn-primary:hover {
  background-color: #e6ae06;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--accent-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Festival Banner */
.festival-banner {
  position: relative;
  margin-top: 100px;
  margin-bottom: 20px;
  z-index: 99;
  background: linear-gradient(135deg, #FF9933 0%, #FFCC33 50%, #FF9933 100%);
  background-size: 200% 100%;
  animation: bannerShimmer 4s infinite linear;
  border-bottom: 3px solid #E2725B;
  box-shadow: 0 4px 15px rgba(226, 114, 91, 0.2);
  overflow: visible;
}

@keyframes bannerShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Banner Slide Down animation removed as it's now relative flow */

.festival-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem; /* Increased padding */
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow: visible;
}

.festival-banner-img {
  height: 100px; /* Specific height to prevent cropping */
  width: 100px;
  border-radius: 50%; /* Circular frame */
  border: 3px solid #fff;
  box-shadow: 0 4px 15px rgba(62, 36, 21, 0.3);
  object-fit: cover; /* Important: show the scene context */
  flex-shrink: 0;
  transition: transform 0.3s ease;
  z-index: 10;
}

.festival-banner:hover .festival-banner-img {
  transform: scale(1.1) rotate(5deg);
}

.festival-banner-text {
  flex: 1;
  min-width: 0;
}

.festival-banner-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #3E2415;
  margin: 0;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
}

.festival-banner-body {
  font-size: 0.95rem;
  color: #3E2415;
  margin: 0.2rem 0 0;
  font-weight: 600;
}

.festival-banner-cta {
  flex-shrink: 0;
  background: #3E2415;
  color: #FFC107;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(62, 36, 21, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.festival-banner-cta:hover {
  background: #E2725B;
  color: #fff;
  box-shadow: 0 6px 15px rgba(226, 114, 91, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .festival-banner {
    margin-top: 90px;
  }

  .festival-banner-inner {
    padding: 0.4rem 1rem;
    gap: 0.8rem;
  }

  .festival-banner-img {
    height: 70px;
    width: 70px;
    margin: 0;
  }

  .festival-banner-title {
    font-size: 0.95rem;
  }

  .festival-banner-body {
    font-size: 0.8rem;
    white-space: normal;
  }

  .festival-banner-cta {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
}

/* Watermark Utilities (for Gallery) */
.watermark-container {
  position: relative;
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.watermark-container:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.watermark-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.watermark-label {
  padding: 1rem;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-align: center;
  border-top: 1px solid #eee;
}

/* Corner Watermark Style */
.watermark-corner .logo-stamp {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 70px;
  opacity: 0.5;
  filter: grayscale(100%) brightness(200%);
  pointer-events: none;
}

/* Ghost Central Watermark Style */
.watermark-ghost-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/logo_new.svg') no-repeat center;
  background-size: 35%;
  opacity: 0.15;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

/* Tiled Pattern Style */
.watermark-tiled-overlay {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('assets/logo_new.svg') repeat;
  background-size: 80px;
  opacity: 0.08;
  filter: grayscale(100%);
  transform: rotate(-25deg);
  pointer-events: none;
}

/* 4. Embossed Style */
.watermark-embossed .logo-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  opacity: 0.6;
  filter: grayscale(100%) brightness(1.5) drop-shadow(1px 1px 1px rgba(255,255,255,0.4)) drop-shadow(-1px -1px 1px rgba(0,0,0,0.4));
  pointer-events: none;
}

/* 5. Integrated Duo-tone */
.watermark-duotone .duotone-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/logo_new.svg') no-repeat center;
  background-size: 40%;
  mix-blend-mode: soft-light;
  opacity: 0.8;
  pointer-events: none;
}

/* 6. Polaroid Frame Style */
.watermark-polaroid {
  padding: 15px 15px 60px 15px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.watermark-polaroid .watermark-img {
  aspect-ratio: 1/1;
  border-radius: 2px;
}

.watermark-polaroid .polaroid-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  opacity: 0.7;
}

/* 7. Signature Placement */
.watermark-signature .signature-logo {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 50px;
  opacity: 0.4;
  filter: invert(1) brightness(200%);
  transform: rotate(-5deg);
}

/* 8. Interactive Hover */
.watermark-hover .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3) url('assets/logo_new.svg') no-repeat center;
  background-size: 30%;
  filter: brightness(0) invert(1);
  opacity: 0;
  transition: 0.4s ease;
  pointer-events: none;
}

.watermark-hover:hover .hover-overlay {
  opacity: 0.6;
}

.compliance-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.compliance-info p {
  color: #888;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Navbar */
.navbar {
  padding: 1.5rem 0;
  background-color: rgba(252, 247, 238, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--accent-color);
  letter-spacing: -1px;
}

.logo span {
  color: var(--primary-color);
}

.nav-logo-img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
  border: 2px solid var(--primary-color);
}

.footer-logo-img {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
  border: 2px solid var(--white);
  margin-bottom: 0.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--accent-color);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 5px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding-top: 120px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  position: relative;
  display: inline-block;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: rgba(255, 193, 7, 0.4);
  z-index: -1;
  transform: rotate(-1deg);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-collage {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  max-width: 550px;
}

.hero-collage .watermark-container,
.hero-collage img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  animation: float 8s ease-in-out infinite alternate;
}

/* Depth effect by staggering the columns */
.hero-collage .collage-2,
.hero-collage .collage-4 {
  margin-top: 40px;
  margin-bottom: -40px;
}

.hero-collage .collage-2 {
  animation-delay: -2s;
}

.hero-collage .collage-3 {
  animation-delay: -4s;
}

.hero-collage .collage-4 {
  animation-delay: -6s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-15px);
  }
}

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

.about-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-img-wrap {
  flex: 0 0 380px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hover);
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.img-caption {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  padding: 1rem;
  text-align: center;
  line-height: 1.4;
  background: #fff;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-content p {
  font-size: 1.05rem;
}

/* Highlights */
.highlights {
  background-color: var(--secondary-color);
  text-align: center;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.highlight-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.highlight-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Menu Section */
.menu {
  background-color: var(--white);
}

.menu-category {
  margin-bottom: 3rem;
}

.menu-category-header {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-category h3 {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.menu-subline {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: #777;
  max-width: 600px;
  position: relative;
  padding-top: 1.2rem;
  margin-top: 0;
  line-height: 1.5;
}

.menu-subline::before {
  content: '✦';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-color);
  font-size: 1.3rem;
  background: none;
  width: auto;
  height: auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2rem;
}

.menu-card {
  display: flex;
  background-color: var(--white);
  border: 1px solid #eee;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  min-height: 220px;
}

.menu-card:hover {
  box-shadow: var(--shadow-hover);
}

.menu-img-wrap {
  width: 50%;
  position: relative;
  flex-shrink: 0;
}

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

.coming-soon-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(62, 36, 21, 0.88);
  color: #FFC107;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  border: 2px solid #FFC107;
  white-space: nowrap;
  backdrop-filter: blur(2px);
}

.coming-soon-card .menu-img {
  filter: brightness(0.6);
}

.menu-info {
  width: 50%;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.menu-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent-color);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.3;
}

.menu-price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
  margin-top: auto; /* Pushes price to the bottom */
  display: block;
  text-align: left;
}

.menu-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  line-height: 1.5;
  flex-grow: 1; /* Allows description area to fill space */
}

/* Reviews Section */
.reviews {
  background-color: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background-color: var(--secondary-color);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.stars {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.reviewer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1rem;
}

.reviewer-name {
  font-weight: 600;
  font-size: 1.1rem;
}

.review-source {
  font-size: 0.85rem;
  color: #777;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Instagram Section */
.instagram {
  background-color: var(--secondary-color);
}

.instagram-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.instagram-header h2 {
  margin-bottom: 0;
  text-align: left;
}

.instagram-header h2::after {
  margin: 0.5rem 0 0;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.instagram-item {
  position: relative;
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow);
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.instagram-overlay i {
  color: var(--white);
  font-size: 3rem;
  transform: scale(0.5);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-item:hover .instagram-overlay i {
  transform: scale(1);
}

/* Contact Section */
.contact {
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-info .item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-info .item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1.5rem;
  margin-top: 3px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
  border-radius: var(--border-radius);
}

/* Footer */
footer {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 4rem 0 2rem;
  text-align: center;
}

.footer-content {
  margin-bottom: 2rem;
}

.social-links {
  margin-top: 1.5rem;
}

.social-links a {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 10px;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--primary-color);
}

.copyright {
  color: #888;
  font-size: 0.9rem;
  border-top: 1px solid #444;
  padding-top: 2rem;
}

/* Background Mascots */
.bg-mascots {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -10;
  pointer-events: none;
  /* Ignore clicks */
}

.mascot {
  position: absolute;
  width: 120px;
  opacity: 0.65;
  animation: float-mascot 8s ease-in-out infinite alternate;
  mix-blend-mode: multiply;
  /* ensures the solid background blends well with the cream */
}

.mascot-besan {
  top: 8%;
  left: 2%;
  width: 110px;
  animation-delay: 0s;
}

.mascot-aata {
  top: 10%;
  right: 2%;
  width: 110px;
  animation-delay: -1s;
}

.mascot-methi {
  top: 65%;
  left: 2%;
  width: 120px;
  animation-delay: -2s;
}

.mascot-ragi {
  bottom: 15%;
  top: auto;
  right: 5%;
  width: 130px;
  animation: none;
}

.mascot-dink {
  bottom: 5%;
  top: auto;
  left: 45%;
  width: 130px;
  animation-delay: -0.5s;
}

.mascot-dryfruit {
  top: 40%;
  right: 3%;
  width: 115px;
  animation-delay: -1.5s;
}

.mascot-sattu {
  top: 45%;
  left: 6%;
  width: 120px;
  animation-delay: -2.5s;
}

@keyframes float-mascot {
  0% {
    transform: translateY(0px) rotate(-3deg);
  }

  50% {
    transform: translateY(-30px) rotate(3deg);
  }

  100% {
    transform: translateY(0px) rotate(-3deg);
  }
}

/* Floating WhatsApp */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 24px;
  background-color: #25D366;
  color: white;
  height: 52px;
  padding: 0 20px 0 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.floating-wa-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #fff;
}

.floating-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}

/* ── Cart Drawer WhatsApp Note ───────────────────────────────────── */
.cart-wa-note {
  display: block;
  font-size: 0.78rem;
  color: #7a5c2e;
  background: #fffbe6;
  border: 1px solid #ffe082;
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.cart-wa-icon {
  color: #f59e0b;
  font-size: 0.82rem;
  margin-right: 4px;
}

@media (max-width: 768px) {
  .floating-wa {
    height: 48px;
    padding: 0 16px 0 12px;
    font-size: 1.4rem;
  }
  .floating-wa-label {
    font-size: 0.75rem;
  }
}


/* Responsive Design */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    margin: 0 auto 2rem;
  }

  .hero-image {
    order: 1;
  }

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

  .instagram-header {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .instagram-header h2 {
    text-align: center;
  }

  .instagram-header h2::after {
    margin: 0.5rem auto 0;
  }

  .hide-on-mobile {
    display: none;
  }

  .mascot {
    opacity: 0.15;
    width: 100px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .nav-links {
    position: fixed;
    right: -100%;
    top: 72px; /* Matches mobile navbar height */
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    height: calc(100vh - 72px);
    text-align: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    padding: 3rem 0;
    gap: 2rem;
    z-index: 999;
    display: flex; /* Ensure it's flex but off-screen */
  }

  .nav-links.active {
    right: 0;
  }


  .hamburger {
    display: block;
  }

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

  .menu-card {
    flex-direction: column;
    height: auto;
  }

  .menu-img {
    width: 100%;
    height: 250px;
  }

  .menu-info {
    width: 100%;
  }

  .about-content {
    flex-direction: column;
  }

  .about-img-wrap {
    flex: none;
    width: 100%;
  }

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

/* ── Menu Footer (price + add button row) ──────────────────────── */
.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

/* ── Add (+) Button ─────────────────────────────────────────────── */
.add-btn {
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.45);
}

.add-btn:hover {
  background: #e6ae06;
  transform: scale(1.12);
}

/* ── Qty Control (− N +) ────────────────────────────────────────── */
.qty-control {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 3px 8px;
  border: 1px solid #e8dcc8;
}

.qty-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent-color);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.7rem;
  transition: var(--transition);
}

.qty-btn:hover:not(:disabled) {
  background: var(--primary-color);
  color: #fff;
}

.qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.qty-display {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-color);
  min-width: 18px;
  text-align: center;
}

/* ── Cart Badge on Floating Button ──────────────────────────────── */
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #E63946;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  pointer-events: none;
}

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

.cart-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}

/* ── Cart Drawer ─────────────────────────────────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 100vw;
  background: #fff;
  border-radius: 16px 0 0 16px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
}

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

/* Mobile: fall back to bottom sheet on very small screens */
@media (max-width: 480px) {
  .cart-drawer {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
    transform: translateY(100%);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
  }
  .cart-drawer.open {
    transform: translateY(0);
  }
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.cart-drawer-header h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--accent-color);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-light);
  padding: 4px 8px;
  border-radius: 6px;
  transition: var(--transition);
}

.drawer-close:hover {
  background: var(--secondary-color);
  color: var(--accent-color);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 1.5rem;
}

.cart-drawer-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid #eee;
  flex-shrink: 0;
}

.btn-full-width {
  width: 100%;
  text-align: center;
  display: block;
}

/* ── Cart Item Row ───────────────────────────────────────────────── */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid #f5f5f5;
}

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

.cart-item-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 0.78rem;
  color: var(--primary-color);
  font-weight: 500;
}

.cart-item-qty {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 1rem;
  margin-left: 1.2rem;
  flex-shrink: 0;
}

/* ── Empty Cart State ────────────────────────────────────────────── */
.empty-cart {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-light);
}

.empty-cart i {
  font-size: 2.8rem;
  color: #ddd;
  display: block;
  margin-bottom: 0.8rem;
}

.empty-cart p {
  margin: 0;
  font-size: 1rem;
}

.empty-hint {
  font-size: 0.82rem !important;
  margin-top: 0.4rem !important;
  color: #aaa !important;
}
/* ── First-Time User Tour ────────────────────────────────────────── */
.tour-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.tour-spotlight {
  position: fixed;
  border-radius: 14px;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.68);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease, top 0.35s ease, left 0.35s ease,
              width 0.35s ease, height 0.35s ease;
}

.tour-tooltip {
  position: fixed;
  width: 290px;
  background: #fff;
  border-radius: 16px;
  padding: 1.2rem 1.3rem 1rem;
  z-index: 10000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.tour-tooltip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.55rem;
}

.tour-progress {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tour-skip {
  background: none;
  border: none;
  font-size: 0.72rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  font-family: inherit;
}

.tour-skip:hover { color: var(--accent-color); }

.tour-tooltip h4 {
  font-size: 1rem;
  color: var(--accent-color);
  margin-bottom: 0.45rem;
}

.tour-tooltip p {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.tour-actions {
  display: flex;
  justify-content: flex-end;
}

.tour-next-btn {
  padding: 8px 22px !important;
  font-size: 0.85rem !important;
}

/* ── Cart Note List & Warning ──────────────────────────────────── */
.cart-wa-note strong:first-child {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
}

.cart-wa-list {
  margin: 0.3rem 0 0.5rem 1.1rem;
  padding: 0;
  font-size: 0.76rem;
  color: #7a5c2e;
  line-height: 1.7;
}

.cart-wa-warning {
  display: block;
  font-size: 0.74rem;
  font-style: italic;
  color: #b45309;
  margin-top: 0.25rem;
}

.cart-wa-note p {
  font-size: 0.78rem;
  color: #7a5c2e;
  margin: 0;
  line-height: 1.55;
}

/* ── Cart Note Formatting ─────────────────────────────────────── */
.cart-wa-note {
  align-items: flex-start;
}

.cart-wa-note .cart-wa-line {
  font-size: 0.82rem;
  color: #7a5c2e;
  margin: 0 0 0.4rem 0;
  line-height: 1.6;
}

.cart-wa-note .cart-wa-line:last-child {
  margin-bottom: 0;
}

.cart-wa-note .cart-wa-warning {
  font-style: italic;
  color: #b45309;
  font-size: 0.78rem;
}

@media (min-width: 768px) {
  .cart-wa-note .cart-wa-line {
    font-size: 0.85rem;
  }
  .cart-wa-note .cart-wa-warning {
    font-size: 0.8rem;
  }
}


