/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --primary-red: #c41e3a;
  --primary-yellow: #ffd33f;
  --bg-cream: #f5f0e6;
  --bg-yellow: #ffd93d;
  --text-dark: #2d2d2d;
  --text-red: #c23032;
  --white: #ffffff;
  --font-primary: "Roboto Condensed", sans-serif;
  --font-heading: "Epilogue", sans-serif;
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-cream);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* Selection Styling */
::selection {
  background-color: var(--text-red);
  color: var(--white);
}

/* ========================================
   REUSABLE COMPONENTS
   ======================================== */
.btn-hov {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    color 0.3s ease;
}

/* Bubble layer – only for btn-hov */
.btn-hov::before {
  content: "";
  position: absolute;
  inset: 1px;
  background-color: var(--text-red);
  border-radius: inherit;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.4s ease;
  z-index: -1;
}

/* Hover effect ONLY */
.btn-hov:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  border: 1px solid var(--primary-yellow);
}

.btn-hov:hover::before {
  transform: scale(1);
}

.about-btn {
  display: inline-block;
  background-color: var(--primary-yellow);
  color: var(--text-red);
  padding: 14px 40px;
  border-radius: 30px;
  margin-right: 30px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
}

.about-btn:hover {
  background-color: var(--text-red);
  color: var(--white);
  border: 2px solid var(--primary-yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-red);
  font-family: var(--font-heading);
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
  background-color: var(--primary-yellow);
  padding: 10px 20px;
  color: var(--text-red);
  height: 50px;
}

.top-bar-content {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.top-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-red);
  transition: opacity var(--transition-fast);
}

.top-link:hover {
  opacity: 0.8;
}

/* .top-link img {
  width: 40px;
  height: 20px;
  object-fit: contain;
} */

.top-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 500;
}

.clock-icon,
.phone-icon {
  width: 16px;
  height: 16px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  background-color: var(--text-red);
  padding: 20px 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-content {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  width: 150px;
  scale: 1.5;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 45px;
}

.nav-link {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.contact-btn {
  background-color: var(--bg-yellow);
  color: var(--primary-red);
  padding: 12px 35px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  background-color: #ffe55c;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-cream);
  padding: 100px 40px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .nav-link {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-red);
}

.mobile-menu .nav-link::after {
  background-color: var(--text-red);
}

.mobile-menu .contact-btn {
  margin-top: 20px;
  padding: 15px 50px;
  font-size: 16px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  overflow: hidden;
}

/* Marquee Containers */
.marquee-container {
  position: absolute;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-line-1 {
  top: 35%;
  transform: translateY(-50%);
}

.marquee-line-2 {
  top: 55%;
  transform: translateY(-50%);
}

/* Marquee Content - Solid Text */
.marquee-content {
  display: inline-flex;
  gap: 40px;
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 800;
  color: var(--text-red);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.marquee-content span {
  flex-shrink: 0;
}

/* Marquee Content - Stroke Text */
.marquee-content-stroke {
  display: inline-flex;
  gap: 40px;
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.marquee-content-stroke span {
  flex-shrink: 0;
  color: transparent;
  -webkit-text-stroke: 2px var(--text-red);
}

/* Marquee Animations */
.marquee-rtl {
  animation: marquee-rtl 30s linear infinite;
}

.marquee-ltr {
  animation: marquee-ltr 30s linear infinite;
}

@keyframes marquee-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-ltr {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Food Plate */
.food-plate-container {
  position: relative;
  z-index: 10;
  width: clamp(300px, 50vw, 500px);
  height: clamp(300px, 50vw, 500px);
  margin: 60px 0;
}

.food-plate {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 0 0 15px rgba(196, 30, 58, 0.1),
    0 0 0 30px rgba(255, 215, 0, 0.1);
  animation: spin 20s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Explore Button */
.explore-btn {
  position: relative;
  z-index: 10;
  background-color: var(--bg-yellow);
  color: var(--primary-red);
  padding: 18px 50px;
  border-radius: 35px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 30px;
  transition: all var(--transition-fast);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35);
}

.explore-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.45);
  background-color: #ffe55c;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  background-color: var(--text-red);
}

.about-container {
  display: flex;
  align-items: center;
}

.about-container > div:nth-child(1) {
  flex: 0 0 50%;
}

.about-container > div:nth-child(2) {
  flex: 0 0 45%;
}

.about-container > div:nth-child(3) {
  flex: 0 0 5%;
  margin-top: 20%;
}

.about-images {
  position: relative;
  height: 100%;
}

.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding: 50px;
}

.about-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 25px;
  font-family: var(--font-heading);
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 30px;
}

.about-content .about-btn {
  margin-bottom: 15px;
}

.location-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-left: 5px;
}

/* Order Strip */
.order-strip-inner {
  display: flex;
  align-items: center;
  gap: 2px;
  transform: rotate(-90deg);
  transform-origin: left;
}

.order-strip .text {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.order-strip .line {
  width: 32px;
  height: 1px;
  background: var(--white);
  opacity: 0.8;
}

/* ========================================
   CATEGORIES SECTION
   ======================================== */
.categories-section {
  padding: 80px 40px;
  background-color: var(--bg-cream);
}

.categories-container {
  max-width: 1400px;
  margin: 0 auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Category Card */
.category-card {
  position: relative;
  background-color: var(--text-red);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  padding: 1px;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.category-image {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--bg-cream);
}

.category-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--text-red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-medium);
  z-index: 1;
}

.category-card:hover .category-image::after {
  transform: scaleY(1);
}

.category-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.75);
  transition: transform var(--transition-medium);
}

.category-card:hover .category-image img {
  transform: scale(0.9);
}

.category-content {
  padding: 20px;
  position: relative;
  z-index: 2;
}

.category-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.category-desc {
  font-size: 18px;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 40px;
}

.category-price {
  font-size: 18px;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 600;
}

.dash-line {
  position: absolute;
  width: 100%;
  left: 0;
  top: 10;
  right: 0;
  height: 20px;
  bottom: 70px;
  border-top: 1px dotted var(--primary-yellow);
}

.category-btn {
  display: inline-block;
  background-color: var(--primary-yellow);
  color: var(--text-red);
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
}

.category-btn:hover {
  background-color: #ffe55c;
}

/* ========================================
   DELIVERY SECTION
   ======================================== */
.delivery-section {
  padding: 80px 40px;
  background-color: var(--bg-cream);
}

.delivery-container {
  max-width: 1400px;
  margin: 0 auto;
}

.delivery-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.delivery-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  border: 2px solid var(--text-red);
  background-color: transparent;
  border-radius: 50%;
  aspect-ratio: 1;
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.delivery-feature:hover {
  background-color: var(--text-red);
  transform: translateY(-5px);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-red);
  margin-bottom: 0;
  text-align: center;
  transition: all var(--transition-fast);
  font-family: var(--font-heading);
}

.feature-text {
  font-size: 16px;
  color: var(--primary-yellow);
  text-align: center;
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.delivery-feature:hover .feature-text {
  opacity: 1;
  max-height: 100px;
  transform: translateY(0);
}

.delivery-feature:hover .feature-title {
  color: var(--white);
  margin-bottom: 10px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
  min-height: 200px;
  background-image: url("images/cta.png");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-title {
  color: var(--white);
  font-size: clamp(20px, 3vw, 28px);
  font-family: var(--font-heading);
}

.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-group .about-btn {
  margin-right: 0;
}

/* ========================================
   INSTAGRAM SECTION
   ======================================== */
.instagram-section {
  padding: 80px 40px;
  background-color: var(--bg-cream);
  overflow: hidden;
}

.instagram-container {
  max-width: 1400px;
  margin: 0 auto;
}

.instagram-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.instagram-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-red);
  font-family: var(--font-heading);
}

.instagram-btn {
  background-color: var(--primary-yellow);
  color: var(--text-red);
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
}

.instagram-btn:hover {
  background-color: #ffe55c;
  transform: translateY(-2px);
}

/* Instagram Slider */
.instagram-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.instagram-slider {
  display: flex;
  gap: 25px;
  animation: instagram-slide 30s linear infinite;
  width: fit-content;
}

.instagram-slider:hover {
  animation-play-state: paused;
}

@keyframes instagram-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.instagram-post {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  cursor: pointer;
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.instagram-post:hover img {
  transform: scale(1.1);
}

.post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.instagram-post:hover .post-overlay {
  opacity: 1;
}

.post-overlay img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 15px;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
  padding: 80px 40px;
  background-color: var(--text-red);
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
  font-family: var(--font-heading);
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  transition: transform var(--transition-medium);
  gap: 30px;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background-color: var(--bg-cream);
  border-radius: 20px;
  padding: 35px 30px;
  position: relative;
  opacity: 0.7;
  transform: scale(0.95);
  transition: all var(--transition-fast);
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.stars {
  margin-bottom: 20px;
}

.stars span {
  color: var(--text-red);
  font-size: 20px;
  margin-right: 3px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-red);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.nav-btn:hover {
  background-color: var(--white);
}

.nav-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  transition: stroke var(--transition-fast);
}

.nav-btn:hover svg {
  stroke: var(--text-red);
}

.nav-line {
  width: 150px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  background-color: var(--bg-cream);
}

.contact-header {
  padding: 30px 40px;
  border-bottom: 1px solid rgba(194, 48, 50, 0.1);
}

.contact-header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img {
  height: 70px;
  width: auto;
  scale: 1.5;
}

.follow-us {
  display: flex;
  align-items: center;
  gap: 15px;
}

.follow-us span {
  font-size: 18px;
  color: var(--text-red);
  font-weight: 500;
}

.instagram-icon-link img {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  transition: transform var(--transition-fast);
}

.instagram-icon-link:hover img {
  transform: scale(1.1);
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.contact-label {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-red);
  margin-bottom: 25px;
  font-family: var(--font-heading);
}

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(194, 48, 50, 0.2);
}

.contact-value {
  font-size: 16px;
  color: var(--text-red);
  font-weight: 500;
}

.contact-action {
  font-size: 14px;
  color: var(--text-red);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition-fast);
}

.contact-action:hover {
  gap: 10px;
}

.contact-action .arrow {
  font-size: 12px;
}

.contact-form-wrapper {
  display: flex;
  justify-content: flex-end;
}

.contact-form {
  background-color: var(--text-red);
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 450px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-primary);
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.send-btn {
  width: 100%;
  padding: 14px;
  background-color: var(--bg-yellow);
  color: var(--text-red);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
}

.send-btn:hover {
  background-color: #ffe55c;
  transform: translateY(-2px);
}

/* ========================================
   FOOTER MARQUEE
   ======================================== */
.footer-marquee {
  background-color: var(--bg-cream);
  padding: 30px 0;
  overflow: hidden;
}

.footer-marquee-content {
  display: inline-flex;
  gap: 30px;
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-red);
  animation: marquee-ltr 25s linear infinite;
  white-space: nowrap;
}

.footer-marquee-content span {
  flex-shrink: 0;
}

/* ========================================
   FOOTER SECTION
   ======================================== */
.footer {
  position: relative;
}

.footer-image {
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-content {
  background: var(--text-red);
  padding: 60px 40px 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
}

.footer-phone {
  display: flex;
  align-items: center;

  width: auto;
  margin: auto;
}

.footer-brand .logo-text img {
  margin-top: -30px;
  margin-bottom: 10px;
}
.footer-phone,
.footer-handle,
.footer-address {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 15px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--bg-yellow);
  margin-bottom: 25px;
  font-family: var(--font-heading);
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.copyright,
.credits {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* Custom Alert Styles */
.custom-alert {
  position: fixed;
  top: 20px;
  right: 20px; /* Change to 'left: 50%; transform: translateX(-50%);' to center it */
  background-color: #333;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;

  /* Animation Properties */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s ease;
}

/* Success State */
.custom-alert.success {
  background-color: #4caf50; /* Green */
  border-left: 5px solid #2e7d32;
}

/* Error State */
.custom-alert.error {
  background-color: #f44336; /* Red */
  border-left: 5px solid #c62828;
}

/* Visible State */
.custom-alert.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.close-alert {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
}

.close-alert:hover {
  opacity: 1;
}

/* Button Disabled State */
.send-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .delivery-feature {
    height: 300px;
  }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1200px) {
  .about-container {
    gap: 40px;
  }

  .categories-grid {
    gap: 25px;
  }

  .delivery-features {
    gap: 25px;
  }

  .footer-container {
    gap: 40px;
  }
}

/* Tablet (900px - 1024px) */
@media (max-width: 1024px) {
  .nav-links {
    gap: 25px;
  }

  .nav-link {
    font-size: 16px;
  }

  .contact-btn {
    padding: 10px 25px;
    font-size: 14px;
  }

  .marquee-content,
  .marquee-content-stroke {
    font-size: clamp(35px, 6vw, 60px);
  }

  .food-plate-container {
    width: clamp(280px, 45vw, 450px);
    height: clamp(280px, 45vw, 450px);
  }

  /* About Section */
  .about-container {
    flex-direction: column;
  }

  .about-container > div:nth-child(1),
  .about-container > div:nth-child(2),
  .about-container > div:nth-child(3) {
    flex: 1 1 100%;
  }

  .about-section {
    min-height: auto;
  }

  .about-images {
    height: 350px;
  }

  .about-content {
    text-align: center;
    padding: 40px 30px;
  }

  .order-strip {
    display: none;
  }

  /* Categories */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Delivery */
  .delivery-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* Testimonials */
  .testimonial-card {
    flex: 0 0 calc(100% - 30px);
  }

  /* Contact */
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrapper {
    justify-content: center;
  }

  .contact-form {
    max-width: 100%;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-phone {
    justify-content: center;
  }
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }
}

/* Mobile Landscape / Small Tablet (768px - 900px) */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .top-bar-content {
    justify-content: center;
    gap: 15px;
  }

  .top-link,
  .top-info {
    font-size: 14px;
  }

  .navbar {
    padding: 10px 20px;
  }
  .footer-phone {
    justify-content: center;
  }
  /* Sections padding */
  .categories-section,
  .delivery-section,
  .instagram-section,
  .testimonials-section {
    padding: 60px 30px;
  }
}

/* Mobile (576px - 768px) */
@media (max-width: 768px) {
  .top-bar {
    padding: 10px 15px;
    height: auto;
  }

  .top-bar-content {
    gap: 10px;
  }

  .top-link.phone,
  .top-info {
    display: inline;
  }

  .navbar {
    padding: 12px 20px;
  }

  .logo img {
    height: 40px;
  }

  /* Hero */
  .hero {
    min-height: calc(100vh - 120px);
    padding: 30px 15px;
  }

  .marquee-line-1 {
    top: 32%;
  }

  .marquee-line-2 {
    top: 58%;
  }

  .marquee-content,
  .marquee-content-stroke {
    font-size: clamp(28px, 7vw, 45px);
    gap: 25px;
  }

  .marquee-content-stroke span {
    -webkit-text-stroke: 1.5px var(--text-red);
  }

  .food-plate-container {
    width: clamp(250px, 70vw, 350px);
    height: clamp(250px, 70vw, 350px);
    margin: 40px 0;
  }

  .explore-btn {
    padding: 15px 40px;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-top: 20px;
  }

  /* About Section */
  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 15px;
  }

  .about-images {
    height: 300px;
  }

  /* Section Header */
  .section-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    margin-bottom: 35px;
  }

  .section-title {
    font-size: 26px;
  }

  /* Categories */
  .categories-section {
    padding: 50px 20px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 400px;
    margin: 0 auto;
  }

  .category-image {
    height: 200px;
  }

  .category-content {
    padding: 20px;
  }

  /* Delivery */
  .delivery-section {
    padding: 50px 20px;
  }

  .delivery-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .delivery-feature {
    padding: 25px 15px;
  }

  .feature-title {
    font-size: 16px;
  }

  .feature-text {
    font-size: 13px;
  }

  /* CTA */
  .cta {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  /* Instagram */
  .instagram-section {
    padding: 50px 20px;
  }

  .instagram-header {
    flex-direction: column;
    gap: 25px;
    text-align: center;
    margin-bottom: 35px;
  }

  .instagram-title {
    font-size: 28px;
  }

  .instagram-btn {
    padding: 12px 25px;
    font-size: 11px;
  }

  .instagram-post {
    width: 220px;
    height: 220px;
  }

  .instagram-slider {
    gap: 15px;
    animation-duration: 25s;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 50px 20px;
  }

  .testimonials-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .nav-line {
    width: 80px;
  }

  .nav-btn {
    width: 45px;
    height: 45px;
  }

  /* Contact */
  .contact-header {
    padding: 20px;
  }

  .contact-header-content {
    text-align: center;
  }

  .contact-container {
    padding: 40px 20px;
  }

  .contact-label {
    font-size: 20px;
  }

  .contact-form {
    padding: 30px 25px;
  }

  /* Footer Marquee */
  .footer-marquee-content {
    font-size: 28px;
  }

  /* Footer */
  .footer-image {
    height: 200px;
  }

  .footer-content {
    padding: 40px 20px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }
  .footer-phone {
    justify-content: center;
  }
  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .top-bar-content {
    gap: 10px 20px;
  }

  .marquee-content,
  .marquee-content-stroke {
    font-size: clamp(22px, 6vw, 35px);
    gap: 20px;
  }

  .marquee-content-stroke span {
    -webkit-text-stroke: 1px var(--text-red);
  }

  .marquee-line-1 {
    top: 30%;
  }

  .marquee-line-2 {
    top: 60%;
  }

  .food-plate-container {
    width: clamp(220px, 75vw, 300px);
    height: clamp(220px, 75vw, 300px);
    margin: 30px 0;
  }

  .explore-btn {
    padding: 14px 35px;
    font-size: 13px;
  }

  .mobile-menu .nav-link {
    font-size: 20px;
  }

  .mobile-menu {
    padding: 80px 30px;
    gap: 25px;
  }

  /* About */
  .about-title {
    font-size: 24px;
  }

  .about-text {
    font-size: 14px;
  }

  .about-btn {
    padding: 12px 30px;
    font-size: 13px;
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .about-images {
    height: 250px;
  }

  /* Categories */
  .section-title {
    font-size: 22px;
  }

  .category-name {
    font-size: 18px;
  }

  .category-desc {
    font-size: 14px;
  }

  .category-btn {
    padding: 10px 25px;
    font-size: 12px;
  }

  /* Delivery */
  .delivery-features {
    gap: 15px;
  }

  .delivery-feature {
    padding: 20px 10px;
  }

  .feature-title {
    font-size: 14px;
  }

  .feature-text {
    font-size: 11px;
  }

  /* Instagram */
  .instagram-post {
    width: 180px;
    height: 180px;
    border-radius: 12px;
  }

  .instagram-slider {
    gap: 12px;
    animation-duration: 20s;
  }

  .post-overlay img {
    width: 40px;
    height: 40px;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 20px 15px;
  }

  .stars span {
    font-size: 16px;
  }

  .testimonial-text {
    font-size: 13px;
  }

  .testimonial-author img {
    width: 40px;
    height: 40px;
  }

  .author-name {
    font-size: 14px;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
  }

  .nav-btn svg {
    width: 20px;
    height: 20px;
  }

  .nav-line {
    width: 60px;
  }

  /* Contact */
  .contact-info {
    gap: 35px;
  }

  .contact-item {
    padding: 12px 0;
  }

  .contact-value {
    font-size: 14px;
  }

  .contact-action {
    font-size: 12px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 13px;
  }

  .send-btn {
    padding: 12px;
    font-size: 13px;
  }

  /* Footer Marquee */
  .footer-marquee-content {
    font-size: 22px;
    gap: 20px;
  }

  /* Footer */
  .footer-image {
    height: 150px;
  }

  .footer-heading {
    font-size: 16px;
  }

  .footer-links a {
    font-size: 13px;
  }
  .footer-phone {
    justify-content: center;
  }
  .footer-phone,
  .footer-handle,
  .footer-address {
    font-size: 13px;
  }

  .copyright,
  .credits {
    font-size: 11px;
  }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
  .marquee-content,
  .marquee-content-stroke {
    font-size: clamp(18px, 5vw, 28px);
    gap: 15px;
  }

  .food-plate-container {
    width: 200px;
    height: 200px;
  }

  .explore-btn {
    padding: 12px 30px;
    font-size: 12px;
  }

  .about-images {
    height: 220px;
  }

  .instagram-title {
    font-size: 24px;
  }

  .instagram-btn {
    padding: 10px 20px;
    font-size: 10px;
  }

  .instagram-post {
    width: 150px;
    height: 150px;
    border-radius: 10px;
  }

  .instagram-slider {
    gap: 10px;
  }

  .post-overlay img {
    width: 35px;
    height: 35px;
  }

  .testimonials-title {
    font-size: 24px;
  }

  .contact-label {
    font-size: 18px;
  }

  .footer-marquee-content {
    font-size: 18px;
  }
}

/* Landscape Mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .food-plate-container {
    width: 250px;
    height: 250px;
    margin: 20px 0;
  }

  .marquee-line-1 {
    top: 30%;
  }

  .marquee-line-2 {
    top: 55%;
  }

  .marquee-content,
  .marquee-content-stroke {
    font-size: 30px;
  }

  .explore-btn {
    margin-top: 10px;
    padding: 12px 30px;
  }

  .categories-section,
  .delivery-section,
  .instagram-section,
  .testimonials-section {
    padding: 40px 20px;
  }

  .footer-image {
    height: 150px;
  }

  .footer-content {
    padding: 30px 20px 0;
  }
}

/* ========================================
   ACCESSIBILITY & REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  .food-plate,
  .marquee-rtl,
  .marquee-ltr,
  .instagram-slider,
  .footer-marquee-content {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--primary-yellow);
  outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   MENU HERO SECTION
   ======================================== */
.menu-hero {
  background-color: var(--bg-yellow);
  padding: 40px 20px;
}

.menu-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  border: 2px solid var(--white);
  border-radius: 50px;
  padding: 50px 40px;
  text-align: center;
}

.menu-title {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 800;
  color: var(--text-red);
  font-family: var(--font-heading);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.menu-description {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--text-dark);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.menu-description strong {
  font-weight: 700;
}

/* ========================================
   CATEGORY FILTER SECTION
   ======================================== */
.category-filter {
  background-color: #3d3d3d;
  padding: 20px 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.category-filter::-webkit-scrollbar {
  height: 6px;
}

.category-filter::-webkit-scrollbar-track {
  background: #2d2d2d;
}

.category-filter::-webkit-scrollbar-thumb {
  background: var(--text-red);
  border-radius: 3px;
}

.category-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: nowrap;
  min-width: max-content;
}

.category-tab {
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid var(--white);
  background-color: transparent;
  color: var(--white);
  white-space: nowrap;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.category-tab:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.category-tab.active {
  background-color: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: var(--text-dark);
}

/* ========================================
   SEARCH & FILTER SECTION
   ======================================== */
.search-filter-section {
  background-color: var(--bg-cream);
  padding: 30px 40px;
}

.search-filter-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.search-box {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;
  background-color: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 0 20px;
  transition: border-color var(--transition-fast);
}

.search-box:focus-within {
  border-color: var(--text-red);
}

.search-box input {
  flex: 1;
  padding: 16px 10px;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: var(--font-primary);
  background: transparent;
  color: var(--text-dark);
}

.search-box input::placeholder {
  color: #999;
}

.search-icon {
  width: 24px;
  height: 24px;
  color: #666;
}

/* ========================================
   VEG/NON-VEG FILTER
   ======================================== */
.veg-filter {
  display: flex;
  gap: 10px;
  align-items: center;
}

.veg-filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #e0e0e0;
  background-color: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.veg-filter-btn:hover {
  border-color: var(--text-red);
}

.veg-filter-btn.active {
  border-color: var(--text-red);
  background-color: var(--text-red);
  color: var(--white);
}

.filter-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Veg/Non-Veg Icons */
.veg-icon {
  width: 18px;
  height: 18px;
  border: 2px solid;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.veg-icon::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.veg-icon.veg {
  border-color: #22c55e;
}

.veg-icon.veg::after {
  background-color: #22c55e;
}

.veg-icon.nonveg {
  border-color: #ef4444;
}

.veg-icon.nonveg::after {
  background-color: #ef4444;
}

.veg-icon.all-icon {
  border-color: #666;
  background: linear-gradient(135deg, #22c55e 50%, #ef4444 50%);
}

.veg-icon.all-icon::after {
  display: none;
}

/* Active state icon colors */
.veg-filter-btn.active .veg-icon.veg {
  border-color: var(--white);
}

.veg-filter-btn.active .veg-icon.veg::after {
  background-color: var(--white);
}

.veg-filter-btn.active .veg-icon.nonveg {
  border-color: var(--white);
}

.veg-filter-btn.active .veg-icon.nonveg::after {
  background-color: var(--white);
}

.veg-filter-btn.active .veg-icon.all-icon {
  border-color: var(--white);
  background: linear-gradient(
    135deg,
    var(--white) 50%,
    rgba(255, 255, 255, 0.5) 50%
  );
}

/* ========================================
   SORT FILTER DROPDOWN
   ======================================== */
.filter-dropdown {
  position: relative;
}

.filter-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 20px;
  cursor: pointer;
  transition: border-color var(--transition-fast);
  min-width: 200px;
}

.filter-box:hover {
  border-color: var(--text-red);
}

.filter-box span {
  flex: 1;
  font-size: 16px;
  color: #999;
}

.filter-icon {
  width: 24px;
  height: 24px;
  color: #666;
}

.filter-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  margin-top: 5px;
  padding: 10px 0;
  z-index: 100;
  display: none;
  box-shadow: var(--shadow-medium);
}

.filter-dropdown.open .filter-options {
  display: block;
}

.filter-option {
  padding: 12px 20px;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.filter-option:hover {
  background-color: var(--bg-cream);
}

.filter-option.active {
  background-color: var(--primary-yellow);
  color: var(--text-red);
  font-weight: 600;
}

/* ========================================
   RESULTS INFO
   ======================================== */
.results-info {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.results-count {
  font-size: 14px;
  color: #666;
}

.results-count strong {
  color: var(--text-red);
}

/* ========================================
   MENU GRID SECTION
   ======================================== */
.menu-section {
  padding: 40px;
  background-color: var(--bg-cream);
}

.menu-container {
  max-width: 1400px;
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ========================================
   MENU CARD WITH HOVER ANIMATION
   ======================================== */
.menu-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border: none;
}

/* Menu Card Image with Bottom-to-Top Hover Animation */
.menu-card-image {
  position: relative;
  background-color: var(--text-red);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Overlay for bottom-to-top white animation */
.menu-card-image-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--white);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.menu-card:hover .menu-card-image-overlay {
  transform: scaleY(1);
}

/* Veg/Non-Veg Indicator on Card */
.veg-indicator {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 22px;
  height: 22px;
  border: 2px solid;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  background-color: var(--white);
}

.veg-indicator.veg {
  border-color: #22c55e;
}

.veg-indicator.nonveg {
  border-color: #ef4444;
}

.veg-indicator-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.veg-indicator.veg .veg-indicator-icon {
  background-color: #22c55e;
}

.veg-indicator.nonveg .veg-indicator-icon {
  background-color: #ef4444;
}

.menu-card-image img {
  position: relative;
  z-index: 2;
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.1);
}

/* ========================================
   MENU CARD CONTENT
   ======================================== */
.menu-card-content {
  padding: 20px;
}

.menu-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.menu-card-pieces {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.menu-card-pieces strong {
  font-weight: 700;
}

.menu-card-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px dashed #ddd;
}

.menu-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.menu-card-price .currency {
  font-size: 16px;
}

.order-buttons {
  display: flex;
  gap: 8px;
}

.order-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.order-btn.swiggy {
  background-color: #fc8019;
  color: var(--white);
}

.order-btn.swiggy:hover {
  background-color: #e67316;
  transform: translateY(-2px);
}

.order-btn.zomato {
  background-color: #e23744;
  color: var(--white);
}

.order-btn.zomato:hover {
  background-color: #cb2f3c;
  transform: translateY(-2px);
}

/* ========================================
   NO RESULTS MESSAGE
   ======================================== */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.no-results h3 {
  font-size: 24px;
  color: var(--text-red);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.no-results p {
  font-size: 16px;
  color: #666;
}

/* ========================================
   RESPONSIVE STYLES FOR MENU PAGE
   ======================================== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .menu-grid {
    gap: 30px;
  }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1200px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .category-tabs {
    justify-content: flex-start;
  }

  .veg-filter-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Tablet (900px - 1024px) */
@media (max-width: 1024px) {
  .menu-hero-inner {
    padding: 40px 30px;
  }

  .category-filter {
    padding: 15px 20px;
  }

  .category-tabs {
    gap: 10px;
  }

  .category-tab {
    padding: 8px 18px;
    font-size: 13px;
  }

  .search-filter-section {
    padding: 25px 30px;
  }

  .search-filter-container {
    flex-wrap: wrap;
  }

  .search-box {
    flex: 1 1 100%;
    order: 1;
  }

  .veg-filter {
    order: 2;
    flex: 1;
  }

  .filter-dropdown {
    order: 3;
  }

  .filter-box {
    min-width: 180px;
  }

  .menu-section {
    padding: 30px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Landscape / Small Tablet (768px - 900px) */
@media (max-width: 900px) {
  .menu-hero {
    padding: 30px 15px;
  }

  .menu-hero-inner {
    padding: 35px 25px;
    border-radius: 15px;
  }

  .category-filter {
    padding: 15px;
  }

  .category-tab {
    padding: 8px 16px;
    font-size: 12px;
  }

  .menu-card-image {
    height: 180px;
  }

  .veg-filter {
    flex: 1 1 100%;
    justify-content: center;
  }

  .filter-dropdown {
    flex: 1;
  }

  .filter-box {
    width: 100%;
    min-width: auto;
  }
}

/* Mobile (576px - 768px) */
@media (max-width: 768px) {
  .menu-hero {
    padding: 25px 15px;
  }

  .menu-hero-inner {
    padding: 30px 20px;
  }

  .menu-title {
    margin-bottom: 15px;
  }

  .category-tabs {
    gap: 8px;
  }

  .category-tab {
    padding: 8px 14px;
    font-size: 12px;
  }

  .search-filter-section {
    padding: 20px 15px;
  }

  .search-box input {
    padding: 14px 10px;
    font-size: 15px;
  }

  .veg-filter-btn {
    padding: 10px 14px;
    font-size: 12px;
    gap: 6px;
  }

  .veg-icon {
    width: 16px;
    height: 16px;
  }

  .veg-icon::after {
    width: 8px;
    height: 8px;
  }

  .filter-box {
    padding: 14px 18px;
  }

  .menu-section {
    padding: 25px 15px;
  }

  .results-info {
    padding: 0 15px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .menu-card-image {
    height: 160px;
  }

  .menu-card-content {
    padding: 15px;
  }

  .menu-card-title {
    font-size: 16px;
  }

  .menu-card-pieces,
  .menu-card-desc {
    font-size: 13px;
  }

  .menu-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .order-buttons {
    width: 100%;
  }

  .order-btn {
    flex: 1;
    text-align: center;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .menu-hero {
    padding: 20px 10px;
  }

  .menu-hero-inner {
    padding: 25px 15px;
    border-width: 1.5px;
  }

  .menu-description {
    font-size: 13px;
  }

  .category-filter {
    padding: 12px 10px;
  }

  .category-tabs {
    gap: 6px;
  }

  .category-tab {
    padding: 7px 12px;
    font-size: 11px;
    border-width: 1.5px;
  }

  .search-filter-section {
    padding: 15px 10px;
  }

  .search-box {
    padding: 0 15px;
    min-width: auto;
  }

  .search-box input {
    padding: 12px 8px;
    font-size: 14px;
  }

  .veg-filter {
    width: 100%;
    justify-content: space-between;
  }

  .veg-filter-btn {
    flex: 1;
    justify-content: center;
    padding: 10px 8px;
    font-size: 11px;
  }

  .filter-box {
    padding: 12px 15px;
  }

  .filter-box span {
    font-size: 14px;
  }

  .menu-section {
    padding: 20px 10px;
  }

  .results-info {
    padding: 0 10px;
    margin-bottom: 15px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 350px;
    margin: 0 auto;
  }

  .menu-card-image {
    height: 180px;
  }

  .menu-card-content {
    padding: 18px;
  }

  .menu-card-title {
    font-size: 17px;
  }

  .menu-card-price {
    font-size: 18px;
  }

  .order-btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .no-results h3 {
    font-size: 20px;
  }

  .no-results p {
    font-size: 14px;
  }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
  .menu-hero-inner {
    padding: 20px 12px;
  }

  .menu-title {
    font-size: 40px;
  }

  .menu-description {
    font-size: 12px;
  }

  .category-tab {
    padding: 6px 10px;
    font-size: 10px;
  }

  .veg-filter-btn {
    padding: 8px 6px;
    font-size: 10px;
    gap: 4px;
  }

  .veg-icon {
    width: 14px;
    height: 14px;
  }

  .veg-icon::after {
    width: 6px;
    height: 6px;
  }

  .menu-grid {
    max-width: 300px;
  }

  .menu-card-image {
    height: 160px;
  }
}

/* Landscape Mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .menu-hero {
    padding: 15px;
  }

  .menu-hero-inner {
    padding: 20px;
  }

  .menu-title {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .category-filter {
    padding: 12px 15px;
  }

  .menu-section {
    padding: 20px 15px;
  }

  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   ACCESSIBILITY & REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  .menu-card-image-overlay,
  .menu-card-image img {
    transition: none;
  }

  .menu-card:hover .menu-card-image-overlay {
    transform: scaleY(1);
  }
}
