.elementor-49 .elementor-element.elementor-element-54b4e48 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-block-end:0px;}.elementor-49 .elementor-element.elementor-element-011f40b{width:100%;max-width:100%;}body.elementor-page-49:not(.elementor-motion-effects-element-type-background), body.elementor-page-49 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-4d87a07 );}:root{--page-title-display:none;}@media(min-width:768px){.elementor-49 .elementor-element.elementor-element-54b4e48{width:100%;}}/* Start custom CSS *//* Modern Tastee Jamaica - Premium Design System */

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Playfair+Display:ital,wght@0,600;1,600&display=swap");

:root {
  /* Brand Colors - Refined */
  --tastee-red: #d9232d;
  --tastee-red-dark: #a81018;
  --tastee-yellow: #ffc72c;
  --tastee-yellow-glow: #ffe58f;

  /* Neutral / Premium Colors */
  --dark-bg: #121212;
  --dark-surface: #1e1e1e;
  --text-main: #ffffff;
  --text-muted: #b0b0b0;
  --text-dark: #1a1a1a;

  /* White theme support */
  --light-bg: #fafafa;
  --light-surface: #ffffff;

  /* Effects */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 12px;
  --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.5);

  /* Spacing */
  --container-width: 1200px;
  --section-padding: 6rem 2rem;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif; /* Can swap to Playfair for more elegance if needed */
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #fff, var(--tastee-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text h1 {
  -webkit-text-fill-color: #fff;
  color: #fff;
  line-height: 0.9;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-main);
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 65ch;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* --- Utilities --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem; /* Slightly tighter padding on small mobile */
  }
}


.padding-section {
  padding: var(--section-padding);
}

.text-center {
  text-align: center;
}
.text-uppercase {
  text-transform: uppercase;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--tastee-red) 0%, var(--tastee-red-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(217, 35, 45, 0.4);
  border: 1px solid rgba(255,255,255,0.1);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--tastee-red-dark) 0%, var(--tastee-red) 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(217, 35, 45, 0.6);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--tastee-yellow);
  color: var(--tastee-yellow);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-outline:hover {
  background: var(--tastee-yellow);
  color: var(--text-dark);
  box-shadow: 0 0 15px var(--tastee-yellow-glow);
}

/* --- Main Header Wrapper --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-premium);
}

.main-header.scrolled .top-bar {
  margin-top: -40px; /* Hide top bar on scroll */
  opacity: 0;
  pointer-events: none;
}

.main-header.scrolled .navbar {
  padding: 1rem 0;
}

/* --- Top Bar --- */
.top-bar {
  background: var(--dark-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 0;
  font-size: 0.8rem;
  transition: var(--transition-smooth);
}

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

.top-info {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-info a:hover {
  color: var(--tastee-yellow);
}

.top-info.divider {
  margin: 0 15px;
  opacity: 0.3;
}

.top-social {
  display: flex;
  gap: 15px;
}

.top-social a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.top-social a:hover {
  color: var(--tastee-yellow);
  transform: translateY(-2px);
}

/* --- Navigation --- */
.navbar {
  width: 100%;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

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

.logo {
  flex: 0 0 auto;
  z-index: 10;
}

.logo img {
  height: 60px; /* Slightly smaller for cleaner look */
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.4));
  transition: var(--transition-smooth);
}

.logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px var(--tastee-yellow-glow));
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 3rem;
}

/* Base Dropdown Styles (Desktop) */
.nav-item-has-children {
  position: relative;
}

.nav-sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  min-width: 200px;
  padding: 0.75rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 100;
  box-shadow: var(--shadow-premium);
}

.nav-item-has-children:hover .nav-sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-sub-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.nav-sub-link:hover {
  background: rgba(255, 199, 44, 0.1);
  color: var(--tastee-yellow);
}

.nav-accordion-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.nav-accordion-toggle i {
  font-size: 0.7rem;
  opacity: 0.6;
}


.mobile-logo {
  display: none;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.hero-btns .btn {
  min-width: 180px; /* Equal width buttons on desktop */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  opacity: 0.9;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding-bottom: 4px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'%3E%3Cpath d='M0 5 Q 12.5 0, 25 5 T 50 5 T 75 5 T 100 5' stroke='%23FFC72C' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 50px 6px;
  background-repeat: repeat-x;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
  transition: var(--transition-smooth);
}

.mobile-toggle:hover {
  color: var(--tastee-yellow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-action-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-action-btn:hover {
  opacity: 1;
  color: var(--tastee-yellow);
  transform: translateY(-2px);
}

.nav-cta {
  padding: 0.7rem 1.8rem !important;
  font-size: 0.85rem !important;
  box-shadow: 0 10px 20px rgba(217, 35, 45, 0.3) !important;
  border: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-cta i {
  font-size: 0.9rem;
}

.nav-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(217, 35, 45, 0.5) !important;
}

@media (max-width: 1100px) {
  .nav-menu-wrapper {
    gap: 1.5rem;
  }
  .nav-links {
    gap: 1.5rem;
  }
}

/* --- Hero Section --- */
/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 75vh; /* Reduced height on desktop */
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end; /* Push content to bottom */
  padding: 100px 2rem 0 2rem;
}

.slide-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  transition: opacity 1s ease, background 1s ease;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end; /* Sit on bottom edge */
  justify-content: center;
  transition: opacity 1s ease, visibility 1s ease;
  overflow: hidden;
  z-index: 1;
}

.hero-slide.active {
  z-index: 5;
}

/* Slide Specific Backgrounds - Using loader pattern */
.hero-slide.slide-red,
.hero-slide.slide-blue,
.hero-slide.slide-red-gold,
.hero-slide.slide-dark {
  background: url('https://tasteehbeat.com/wp-content/uploads/2026/01/loader-pattern.png') no-repeat center center;
  background-size: cover; /* Single large instance covers entire area */
}

/* Slide #4 (Made to Share) - rich red background like reference image */
.hero-slide.slide-dark {
  background-color: #c41e2b;
  background-blend-mode: overlay;
}

.hero-slide .container {
  height: 100%;
  display: flex;
  align-items: flex-end; /* Match hero-slide */
  position: relative;
}

/* Text glow behind headings based on user reference */
.hero-slide.slide-red .hero-script-img,
.hero-slide.slide-red-gold .hero-script-img {
  filter: drop-shadow(0 0 30px rgba(255, 199, 44, 0.4));
}

.hero-slide.slide-blue .hero-script-img {
  filter: drop-shadow(0 0 30px rgba(0, 150, 255, 0.4));
}



.hero-bg {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.6) blur(10px); /* Increased blur slightly for premium feel */
  transform: none; /* Removed scale in favor of explicit size/position */
}



.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.45), transparent);
  z-index: 2; /* Content is z-index 5, background is z-index 1 */
  pointer-events: none;
}


.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-headline {
  max-width: 250px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.hero-script-img {
  display: block;
  width: auto;
  height: auto;
  margin-top: -1rem;
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 0 20px rgba(255, 199, 44, 0.4));
  transform: rotate(-2deg);
}

.hero-script-img.remembered { max-height: 8.75em; }
.hero-script-img.moments { max-height: 13.75em; margin-top: -2rem; }
.hero-script-img.promise { max-height: 13.75em; margin-top: -2rem; }

.slider-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.slide-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slide-dot.active {
  background: var(--tastee-yellow);
  transform: scale(1.4);
  box-shadow: 0 0 15px var(--tastee-yellow-glow);
  border-color: var(--tastee-yellow);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 2rem;
  height: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  grid-column: 1;
  grid-row: 1;
  z-index: 10;
  position: relative;
  text-align: left;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text .highlight {
  display: block;
  color: var(--tastee-yellow);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
}

/* Compact text for slides with longer content */
.hero-text-compact h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.15;
}

.hero-text-compact .highlight {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
}

.hero-image-wrapper {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end; /* Flush to bottom */
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.hero-talent-img {
  max-height: 110%; /* Larger on desktop */
  max-width: 120%; /* wider allowed */
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(10px 0 30px rgba(0, 0, 0, 0.5));
}

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

/* --- About Section (Anniversary) --- */
.about-section {
  position: relative;
  background: var(--dark-bg);
  overflow: hidden;
}

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

.about-image-stack {
  position: relative;
}

.about-img {
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
}

.about-img.main {
  position: relative;
  z-index: 2;
  border: 1px solid var(--glass-border);
}

.about-img.bg-acc {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80%;
  height: 100%;
  border: 2px solid var(--tastee-red);
  z-index: 1;
  opacity: 0.3;
  border-radius: 20px;
}

/* --- Menu Highlights --- */
.menu-section {
  background: var(--dark-surface);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  justify-items: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.menu-card {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
}

.menu-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 20px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.menu-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--tastee-red);
  box-shadow: 0 10px 30px rgba(217, 35, 45, 0.2);
}

.menu-card img {
  height: 280px; /* Bigger images */
  width: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 1.5rem auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  transition: var(--transition-smooth);
}

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

.menu-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.menu-price {
  font-size: 1.25rem;
  color: var(--tastee-yellow);
  font-weight: 700;
  margin-bottom: 1rem;
}

.menu-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.25rem 0 0.75rem;
  font-style: italic;
}

/* ========================================
   MODERN MENU HERO SECTION
   ======================================== */
.menu-hero-modern {
  position: relative;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 2rem;
}

.menu-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.menu-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    #1a0a0c 0%, 
    #2d1215 20%,
    #3d1a1e 40%,
    #1a1a2e 70%,
    #0f0f1a 100%);
}

.menu-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,199,44,0.1)"/></svg>');
  background-size: 30px 30px;
  opacity: 0.5;
}

.floating-patty {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 35, 45, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  animation: floatPatty 8s ease-in-out infinite;
}

.floating-patty-1 {
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.floating-patty-2 {
  bottom: 20%;
  left: -5%;
  animation-delay: 4s;
}

@keyframes floatPatty {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
}

.menu-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.menu-hero-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--tastee-red), var(--tastee-yellow));
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.menu-hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.menu-hero-accent {
  display: block;
  font-size: 0.5em;
  font-weight: 600;
  color: var(--tastee-yellow);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.25rem;
}

.menu-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.menu-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.menu-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--tastee-yellow);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.menu-stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
}

/* Category Tabs Section */
.menu-category-section {
  position: relative;
  z-index: 5;
  margin-top: 2rem;
}

.menu-tabs-modern {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.tab-modern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tab-modern i {
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.tab-modern:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.tab-modern:hover i {
  transform: scale(1.2);
}

.tab-modern.active {
  background: linear-gradient(135deg, var(--tastee-red) 0%, #b81c24 100%);
  border-color: var(--tastee-red);
  color: #fff;
  box-shadow: 0 4px 25px rgba(217, 35, 45, 0.5);
}

.tab-modern.active i {
  color: var(--tastee-yellow);
}

/* Menu Content Section */
.menu-content-section {
  background: linear-gradient(180deg, #0f0f1a 0%, var(--dark-bg) 100%);
  padding-top: 4rem;
  min-height: 60vh;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-hero-modern {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 1.5rem;
  }
  
  .menu-hero-stats {
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .menu-stat-divider {
    height: 30px;
  }
  
  .menu-tabs-modern {
    gap: 0.5rem;
  }
  
  .tab-modern {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }
  
  .tab-modern span {
    display: none;
  }
  
  .tab-modern i {
    font-size: 1.1rem;
  }
}

/* --- Menu Tabs & Filtering --- */
.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: "Outfit", sans-serif;
}

.tab-btn:hover,
.tab-btn.active {
  background: linear-gradient(135deg, var(--tastee-red) 0%, #c41e2b 100%);
  color: #fff;
  border-color: var(--tastee-red);
  box-shadow: 0 4px 20px rgba(217, 35, 45, 0.5);
}

.menu-item {
  display: block; /* Default state */
  animation: fadeIn 0.5s ease-out;
}

.menu-item.hidden {
  display: none;
}

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

/* --- Locations Snippet --- */
.locations-section {
  background: url("https://tasteehbeat.com/wp-content/uploads/2026/01/BG-Mobile.jpg") center/cover no-repeat fixed; /* Fallback to existing asset */
  position: relative;
  text-align: center;
}

.locations-overlay {
  background: rgba(0, 0, 0, 0.8);
  padding: 6rem 0;
}

.locations-content h2 {
  color: var(--tastee-yellow);
}

/* --- Footer --- */
footer {
  background: #000;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-links {
    justify-content: center;
  }
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }

  .hero-text {
    order: 1;
    grid-column: 1;
    text-align: center;
  }
  
  .hero-text h1,
  .hero-text p,
  .hero-btns {
    text-align: center;
  }

  .hero-image-wrapper {
    position: relative;
    order: 2;
    height: 50vh;
    width: 100%;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .hero-talent-img {
      max-height: 100%;
      width: auto;
      object-position: bottom center;
  }

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

  .nav-menu-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: var(--dark-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1px solid var(--glass-border);
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }

  .nav-menu-wrapper.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    align-items: center;
    margin-bottom: 3rem;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 1rem;
    display: block;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    padding: 0 2rem;
  }

  .nav-action-btn.search-trigger {
    display: none; /* Hide search in mobile menu for now or adjust */
  }

  .nav-cta {
    width: 100% !important;
    margin: 1rem 0 !important;
  }

  .mobile-toggle {
    display: block;
    z-index: 1001;
    position: relative;
  }

  .top-bar {
    display: none; /* Hide top bar on small mobile for cleaner look */
  }
}

/* --- Animation Utilities --- */
.animate-on-scroll {
    opacity: 0;
    will-change: transform, opacity;
}

.fade-up {
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Loader --- */
.loader-con {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #C41E3A; /* Tastee Red */
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* CRITICAL: Ensure loader doesn't block clicks after loading */
body.loaded .loader-con {
  pointer-events: none !important;
  visibility: hidden;
}

.loader-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.loader-inner img {
  width: auto;
  height: auto;
  max-width: 280px;
  max-height: 120px;
  object-fit: contain;
  animation: pulse 2s infinite ease-in-out;
  filter: drop-shadow(0 0 30px rgba(255, 199, 44, 0.4));
}

@keyframes pulse {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.loader-progress {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.loader-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: var(--tastee-yellow);
  animation: loading 2s infinite ease;
}

@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* Performance optimizations */
.hero img, .loader-con img {
  content-visibility: auto;
}

section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}

/* --- Celebration CTA --- */
.celebration-cta {
  position: relative;
  z-index: 1;
}

/* --- Popup --- */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  backdrop-filter: blur(5px);
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.popup-content {
  background: var(--dark-surface);
  width: 90%;
  max-width: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transform: translateY(20px);
  transition: transform 0.5s ease;
  border: 1px solid var(--glass-border);
}

.popup-overlay.active .popup-content {
  transform: translateY(0);
}

.popup-header {
  background: var(--tastee-red);
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
}

.popup-logo {
  height: 200px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: 0.3s;
}

.close-btn:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.popup-body {
  padding: 2rem;
  text-align: center;
  color: #fff;
}

.popup-body h3 {
  color: var(--tastee-yellow);
  margin-bottom: 0.5rem;
}

.popup-body p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: inherit;
  transition: 0.3s;
  outline: none;
}

.form-group input:focus {
  border-color: var(--tastee-yellow);
  background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* --- Floating Action Button (WhatsApp/Order) --- */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.fab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.fab-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.fab-btn.whatsapp {
  background: #25D366;
  color: #fff;
  font-size: 1.8rem;
}

.fab-btn.order {
  background: var(--tastee-red);
  color: #fff;
  font-size: 1.5rem;
}

.fab-btn .fab-label {
  position: absolute;
  right: 70px;
  background: var(--dark-surface);
  color: #fff;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.fab-btn:hover .fab-label {
  opacity: 1;
}

/* --- Cart Counter Badge --- */
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--tastee-yellow);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Sticky Cart Summary --- */
.sticky-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark-surface);
  border-top: 1px solid var(--glass-border);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cart.visible {
  transform: translateY(0);
}

.sticky-cart .cart-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sticky-cart .cart-count {
  background: var(--tastee-yellow);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
}

.sticky-cart .cart-total {
  color: var(--tastee-yellow);
  font-size: 1.25rem;
  font-weight: 700;
}

.sticky-cart .cart-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sticky-cart .btn-clear {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.sticky-cart .btn-clear:hover {
  background: rgba(196, 30, 58, 0.8);
  border-color: var(--tastee-red);
  color: #fff;
}

/* --- Newsletter Section --- */
.newsletter-section {
  background: linear-gradient(135deg, var(--tastee-red) 0%, var(--tastee-red-dark) 100%);
  padding: 4rem 2rem;
}

.newsletter-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.newsletter-content h3 {
  color: #fff;
  font-size: 2rem;
  margin: 0;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 500px;
  width: 100%;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}

.newsletter-form button {
  padding: 1rem 2rem;
  background: var(--tastee-yellow);
  color: var(--text-dark);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 199, 44, 0.4);
}

/* --- Testimonials Section --- */
.testimonials-section {
  background: var(--dark-bg);
  padding: var(--section-padding);
}

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

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--tastee-yellow);
}

.testimonial-card .stars {
  color: var(--tastee-yellow);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-card .quote {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-card .author {
  color: #fff;
  font-weight: 600;
}

.testimonial-card .location {
  color: var(--tastee-yellow);
  font-size: 0.9rem;
}

/* --- Popular Badge --- */
.menu-card {
  position: relative;
  overflow: visible;
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 15px;
  background: var(--tastee-red);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px rgba(217, 35, 45, 0.4);
  z-index: 10;
}

/* --- Mobile Responsive for New Elements --- */
@media (max-width: 768px) {
  .floating-cta {
    bottom: 20px;
    right: 20px;
  }
  
  .fab-btn {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  
  .fab-btn .fab-label {
    display: none;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form button {
    width: 100%;
  }
  
  .sticky-cart {
    padding: 0.75rem 1rem;
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: space-between;
  }
  
  .sticky-cart .cart-info {
    gap: 0.5rem;
  }

  .sticky-cart .cart-total {
    font-size: 1rem;
  }

  .sticky-cart .cart-count {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }
  
  .sticky-cart .btn {
    width: auto;
    flex: 0 0 auto;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .sticky-cart .cart-actions {
    gap: 0.5rem;
  }

  .sticky-cart .btn-clear {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }

  /* Concise label for mobile checkout */
  .sticky-cart .btn span {
    display: none;
  }
  
  .sticky-cart .btn::after {
    content: 'Checkout';
  }
}

/* Mobile Hero Stacking Fix */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 0 0; 
    min-height: 100vh; /* Full height on mobile for better talent display */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Push everything to bottom */
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    min-height: auto;
    width: 100%;
    flex: 1; /* Take up available space */
    justify-content: center;
  }

  .hero-text {
    order: 1;
    padding: 2rem 1.5rem;
    z-index: 10;
  }

  .hero-image-wrapper {
    order: 2;
    width: 100%;
    height: 45vh; /* Large image at bottom */
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }

  .hero-talent-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .hero-btns {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto;
  }

  .hero-btns .btn {
    width: 100%;
    margin-left: 0 !important;
    text-align: center;
    padding: 1.2rem; /* Make them feel more premium/meaty */
  }

  .mobile-logo {
    display: block;
    margin-bottom: 2rem;
    text-align: center;
  }

  /* Accordion Nav Styles Mobile Reset/Override */
  .nav-item-has-children {
    width: 100%;
    text-align: center;
    position: static; /* Clear desktop relative position */
  }

  .nav-sub-menu {
    position: static; /* Clear desktop absolute position */
    transform: none;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0;
    min-width: auto;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    box-shadow: none;
    width: 100%;
  }

  .nav-item-has-children:hover .nav-sub-menu {
    transform: none;
  }

  .nav-item-has-children.active .nav-sub-menu {
    max-height: 500px;
    padding: 1rem 0;
  }

  .nav-sub-link {
    display: block;
    padding: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
  }

  .nav-sub-link:hover {
    color: var(--tastee-yellow);
  }
}

/* --- Quick Order CTA Section --- */
.quick-order-section {
  background: linear-gradient(135deg, var(--tastee-red-dark) 0%, var(--dark-bg) 100%);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.quick-order-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.quick-order-card {
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.98) 0%, rgba(35, 35, 35, 0.95) 100%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.08); /* Subtle white border for light catch */
  border-top-color: rgba(255, 255, 255, 0.15); /* Brighter top edge */
  border-left: 8px solid var(--tastee-yellow);
  border-radius: 32px;
  padding: 3rem 4rem;
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.6), 
    inset 0 1px 1px rgba(255, 255, 255, 0.1),
    0 0 50px rgba(255, 199, 44, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-order-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 0.8), 
    inset 0 1px 2px rgba(255, 255, 255, 0.2),
    0 0 70px rgba(255, 199, 44, 0.12);
}

.quick-order-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--tastee-yellow) 0%, #f1b500 100%);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 10px 25px;
  border-bottom-left-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
}

.quick-order-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.deal-tag {
  display: inline-block;
  color: var(--tastee-yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  opacity: 0.8;
}

.quick-order-text h3 {
  color: #fff;
  margin: 0;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.quick-order-text p {
  color: rgba(255, 255, 255, 0.6);
  margin: 1rem 0 0 0;
  font-size: 1.1rem;
  max-width: 450px;
  line-height: 1.5;
}

.quick-order-actions {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.quick-order-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.original-price {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.deal-price-wrapper {
  display: flex;
  align-items: baseline;
  color: var(--tastee-yellow);
  gap: 2px;
}

.deal-price-wrapper .currency {
  font-size: 1.2rem;
  font-weight: 700;
}

.deal-price-wrapper .amount {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.deal-price-wrapper .suffix {
  font-size: 0.9rem;
  font-weight: 700;
  margin-left: 4px;
}

.quick-add-btn {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 60px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(217, 35, 45, 0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.quick-add-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(217, 35, 45, 0.4);
}

.quick-add-btn i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .quick-order-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .quick-order-price {
    align-items: center;
  }
  
  .quick-add-btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- Locations Page Styles --- */
.locations-page-section {
  background: var(--dark-bg);
  min-height: 100vh;
  padding-top: 120px;
}

.parish-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

@media (max-width: 600px) {
  .parish-filter {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .parish-filter::-webkit-scrollbar {
    display: none;
  }
}


.parish-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-muted);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
}

.parish-btn:hover,
.parish-btn.active {
  background: var(--tastee-yellow);
  color: var(--text-dark);
  border-color: var(--tastee-yellow);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 400px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}


.location-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

.location-card:hover {
  transform: translateY(-5px);
  border-color: var(--tastee-yellow);
  box-shadow: 0 10px 30px rgba(255, 199, 44, 0.15);
}

.location-card h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.location-card .parish-tag {
  display: inline-block;
  background: var(--tastee-red);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.location-card .location-details {
  margin-bottom: 1rem;
}

.location-card .location-details p {
  color: var(--text-muted);
  margin: 0.25rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-card .location-details i {
  color: var(--tastee-yellow);
  width: 20px;
}

.location-card .location-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.location-card .btn-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
}

.btn-directions {
  background: var(--tastee-yellow);
  color: var(--text-dark);
  border: none;
}

.btn-directions:hover {
  background: var(--tastee-yellow-glow);
  transform: translateY(-2px);
}

.btn-contact {
  background: transparent;
  border: 1px solid var(--tastee-yellow);
  color: var(--tastee-yellow);
}

.btn-contact:hover {
  background: var(--tastee-yellow);
  color: var(--text-dark);
}

/* --- WhatsApp Location Modal (DISABLED - for future use) --- */
.whatsapp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none; /* Hidden by default - no popup */
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-modal.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.whatsapp-modal-content {
  background: var(--dark-surface);
  border-radius: 20px;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  border: 1px solid var(--glass-border);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.whatsapp-modal.active .whatsapp-modal-content {
  transform: translateY(0);
}

.whatsapp-modal h3 {
  color: #25D366;
  text-align: center;
  margin-bottom: 0.5rem;
}

.whatsapp-modal p {
  text-align: center;
  margin-bottom: 1.5rem;
}

.location-select-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 300px;
  overflow-y: auto;
}

.location-select-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.location-select-item:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.1);
}

.location-select-item .location-name {
  color: #fff;
  font-weight: 600;
}

.location-select-item .location-parish {
  color: var(--tastee-yellow);
  font-size: 0.85rem;
}

.location-select-item i {
  color: #25D366;
  font-size: 1.5rem;
}

.close-modal-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal-btn:hover {
  color: #fff;
  transform: rotate(90deg);
}

/* Modal Steps */
.modal-step {
  display: none;
}

.modal-step.active {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

/* Order Review Styles */
.order-summary {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  max-height: 200px;
  overflow-y: auto;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-item-row:last-child {
  border-bottom: none;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--tastee-yellow);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--tastee-yellow);
}

.modal-footer {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-back {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
}

.btn-back:hover {
  border-color: #fff;
  color: #fff;
}



/* --- Media & News Styles --- */
.media-hero {
    padding-top: 150px;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom, var(--dark-bg), var(--dark-surface));
    text-align: center;
}

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

.news-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: var(--tastee-yellow);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.news-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
}

.news-content {
    padding: 2rem;
    flex-grow: 1;
}

.news-date {
    font-size: 0.85rem;
    color: var(--tastee-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.news-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.3;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
}

/* --- Contact Page Styles --- */
.contact-section {
    background: var(--dark-surface);
    padding-top: 150px;
}

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

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    border-color: var(--tastee-yellow);
    transform: translateY(-5px);
}

.contact-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--tastee-red) 0%, var(--tastee-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--tastee-yellow);
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--tastee-yellow);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.map-container {
    margin-top: 4rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Careers Page Styles --- */
.careers-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    padding-top: 150px;
    padding-bottom: 4rem;
    text-align: center;
}

.careers-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.stat-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--tastee-yellow);
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--tastee-yellow);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-muted);
    margin: 0;
}

.jobs-section {
    background: var(--dark-surface);
    padding: 6rem 0;
}

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

.job-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    border-color: var(--tastee-red);
    transform: translateY(-5px);
}

.job-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.job-card .job-type {
    display: inline-block;
    background: var(--tastee-red);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: fit-content;
}

.job-card p {
    color: var(--text-muted);
    flex-grow: 1;
}

.apply-cta {
    background: linear-gradient(135deg, var(--tastee-red) 0%, #a01820 100%);
    padding: 5rem 0;
    text-align: center;
}

.apply-cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.apply-cta p {
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.apply-cta a.email-link {
    color: var(--tastee-yellow);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .careers-stats {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ORDER NOW BUTTON
   ======================================== */
.btn-order-now {
    background: linear-gradient(135deg, var(--tastee-red) 0%, #a81018 100%);
    color: #fff;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(217, 35, 45, 0.5);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-order-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-order-now:hover::before {
    left: 100%;
}

.btn-order-now:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(217, 35, 45, 0.7);
    background: linear-gradient(135deg, #e52d37 0%, #c41e28 100%);
}

.btn-order-now i {
    font-size: 1rem;
}

/* ========================================
   LOCATION SELECTOR MODAL
   ======================================== */
.location-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.location-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.location-modal {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 24px;
    width: 100%;
    max-width: 550px;
    max-height: 85vh;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.location-modal-overlay.active .location-modal {
    transform: scale(1) translateY(0);
}

.location-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.location-modal-close:hover {
    background: var(--tastee-red);
    transform: rotate(90deg);
}

.location-modal-header {
    text-align: center;
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(180deg, rgba(217, 35, 45, 0.15) 0%, transparent 100%);
    position: relative;
}

.location-modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--tastee-red) 0%, #a81018 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(217, 35, 45, 0.4);
}

.location-modal-header h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.location-modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.location-search-wrapper {
    position: relative;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.location-search-wrapper i {
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.location-search {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s;
}

.location-search:focus {
    outline: none;
    border-color: var(--tastee-yellow);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 199, 44, 0.1);
}

.location-search::placeholder {
    color: var(--text-muted);
}

.location-list {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 1.5rem 1rem;
    max-height: 350px;
}

.location-list::-webkit-scrollbar {
    width: 6px;
}

.location-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.location-list::-webkit-scrollbar-thumb {
    background: var(--tastee-red);
    border-radius: 3px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.location-item:hover {
    background: rgba(217, 35, 45, 0.15);
    border-color: var(--tastee-red);
    transform: translateX(5px);
}

.location-item-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--tastee-yellow) 0%, #e5a800 100%);
    color: #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.location-item-info {
    flex: 1;
}

.location-item-name {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.location-item-parish {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.location-item-phone {
    color: var(--tastee-yellow);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-item-phone i {
    font-size: 0.8rem;
}

.location-modal-footer {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.location-modal-footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.location-modal-footer a {
    color: var(--tastee-yellow);
    font-weight: 600;
}

/* Call Only Location Styling */
.location-item.call-only {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.03);
    opacity: 0.85;
}

.location-item.call-only:hover {
    background: rgba(100, 100, 100, 0.15);
    border-color: rgba(150, 150, 150, 0.3);
}

.location-item.call-only .location-item-number {
    background: linear-gradient(135deg, #666 0%, #444 100%);
}

.call-only-badge {
    display: inline-block;
    background: rgba(100, 100, 100, 0.5);
    color: #aaa;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.location-item-phone.whatsapp {
    color: #25d366;
}

.location-item-phone.whatsapp i {
    color: #25d366;
}

.location-item-phone.phone-only {
    color: #888;
}

.location-item-phone.phone-only i {
    color: #888;
}

/* ========================================
   ENHANCED FOOTER
   ======================================== */
.site-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
    position: relative;
    padding-top: 0;
    overflow: hidden;
}

.footer-wave {
    color: var(--dark-bg);
    line-height: 0;
    margin-bottom: -1px;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.site-footer .container {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255, 199, 44, 0.2));
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
}

.footer-order-btn {
    padding: 1rem 2.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--tastee-red);
    border-radius: 2px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.footer-nav a i {
    font-size: 0.6rem;
    color: var(--tastee-red);
    transition: transform 0.3s;
}

.footer-nav a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-nav a:hover i {
    transform: translateX(3px);
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-contact i {
    color: var(--tastee-red);
    margin-top: 0.25rem;
    width: 16px;
}

.footer-contact a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--tastee-yellow);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    transition: opacity 0.3s;
}

.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.twitter { background: #1da1f2; }
.social-btn.whatsapp { background: #25d366; }

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.footer-hours {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.footer-hours i {
    color: var(--tastee-yellow);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--tastee-yellow);
}

.footer-legal .divider {
    color: rgba(255, 255, 255, 0.2);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-brand {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-nav a,
    .footer-contact p {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-hours {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(217, 35, 45, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(255, 199, 44, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 199, 44, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.faq-item.active {
    border-color: var(--tastee-yellow);
    box-shadow: 0 10px 30px rgba(255, 199, 44, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--tastee-yellow);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--tastee-yellow);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: var(--tastee-yellow);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.faq-answer a:hover {
    text-decoration: underline;
    color: var(--tastee-yellow-glow);
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}/* End custom CSS */