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

:root {
  --background: oklch(0.96 0.01 60);
  --foreground: oklch(0.25 0.01 40);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.25 0.01 40);
  --primary: oklch(0.30 0.04 50);
  --primary-foreground: oklch(0.95 0.05 75);
  --secondary: oklch(0.90 0.02 60);
  --secondary-foreground: oklch(0.25 0.01 40);
  --muted: oklch(0.92 0.01 60);
  --muted-foreground: oklch(0.5 0.01 40);
  --accent: oklch(0.60 0.12 70);
  --accent-foreground: oklch(0.98 0 0);
  --border: oklch(0.85 0.01 60);
  --input: oklch(0.85 0.01 60);
  --ring: oklch(0.60 0.12 70);
  --radius: 0.5rem;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.nav-logo:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.nav-logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  opacity: 0.7;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  opacity: 1;
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: all 0.3s;
}

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

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

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

.lang-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lang-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  background: transparent;
  border: 2px solid var(--foreground);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.lang-btn:hover {
  opacity: 1;
  border-color: var(--primary);
  color: var(--primary);
}

.lang-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  opacity: 1;
}

/* Banner Section Styles */
.banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.banner-carousel {
  position: relative;
  width: 100%;
  height: 500px;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.banner-slide.active {
  opacity: 1;
  z-index: 2;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 3rem 2rem;
  z-index: 3;
}

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

.banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-description {
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
  max-width: 800px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.banner-controls {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 4;
}

.banner-dots {
  display: flex;
  gap: 0.5rem;
}

.banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.banner-dot.active {
  background: #fff;
  width: 30px;
  border-radius: 6px;
}

.banner-arrows {
  display: flex;
  gap: 0.5rem;
}

.banner-prev,
.banner-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-prev:hover,
.banner-next:hover {
  background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .banner-carousel {
    height: 300px;
  }

  .banner-title {
    font-size: 1.8rem;
  }

  .banner-description {
    font-size: 1rem;
  }

  .banner-overlay {
    padding: 2rem 1rem;
  }

  .banner-controls {
    bottom: 1rem;
    right: 1rem;
  }
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-default-background {
  width: 100%;
  height: 100%;
  background-image: url("/assets/bg-1-57926255.jpg"), url("/assets/bg-2-460d9e27.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to bottom right, rgba(76, 59, 49, 0.85), rgba(153, 101, 60, 0.85)); */
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBkPSJNIDQwIDAgTCAwIDAgMCA0MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMSkiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmlkKSIvPjwvc3ZnPg==');
  opacity: 0.3;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 64rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
}

.hero-slider-dots {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.hero-slider-dot.active {
  background: #FFD700;
  width: 40px;
  border-radius: 6px;
  border-color: rgba(255, 215, 0, 0.5);
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  position: relative;

  /* Liquid Glass Gradient Effect */
  background: linear-gradient(135deg,
      #FFD700 0%,
      /* Gold */
      #FFA500 25%,
      /* Orange */
      #FFD700 50%,
      /* Gold */
      #FF8C00 75%,
      /* Dark Orange */
      #FFD700 100%
      /* Gold */
    );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  /* Blend with background image - creates liquid glass effect */
  mix-blend-mode: overlay;

  /* Glass effect with stroke */
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);

  /* Enhanced shadow for depth */
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 30px rgba(255, 215, 0, 0.4)) drop-shadow(0 0 60px rgba(255, 165, 0, 0.3));

  /* Shimmer animation */
  animation: liquidGlassShimmer 3s ease-in-out infinite;

  /* Additional glass refraction effect */
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.5),
    0 0 20px rgba(255, 215, 0, 0.3),
    0 0 30px rgba(255, 165, 0, 0.2);
}

@keyframes liquidGlassShimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  margin-bottom: 3rem;

  /* Liquid glass text effect */
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 215, 0, 0.9) 50%,
      rgba(255, 255, 255, 0.95) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  /* Glass stroke */
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.3);

  /* Blend mode for dynamic color */
  mix-blend-mode: screen;

  /* Glass refraction shadow */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));

  /* Subtle shimmer */
  animation: subtleGlassShimmer 4s ease-in-out infinite;
}

@keyframes subtleGlassShimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.875rem 2.25rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  /* Apple liquid glass background */
  background: linear-gradient(135deg,
      rgba(139, 69, 19, 0.85) 0%,
      rgba(109, 58, 26, 0.9) 100%);

  /* Frosted glass effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* Glass border */
  border: 1.5px solid rgba(255, 215, 0, 0.3);

  /* Visible text color */
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);

  /* Glass shadow */
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Glass shine overlay */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 100%);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);

  /* Enhanced glass effect on hover */
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(255, 215, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);

  border-color: rgba(255, 215, 0, 0.5);
}

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

.btn-outline {
  /* Frosted glass background */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* Glass border with gradient */
  border: 2px solid rgba(255, 215, 0, 0.4);

  /* Dark text for better visibility on light backgrounds */
  color: #3D2817;
  font-weight: 600;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);

  /* Glass glow */
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
  transform: translateY(-2px) scale(1.02);

  /* Enhanced frosted glass */
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.6);

  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 215, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@keyframes outlineGlassShimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.btn-full {
  width: 100%;
}

.section {
  padding: 6rem 1rem;
}

.section-alt {
  background: var(--secondary);
  background: rgba(229, 220, 206, 0.3);
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-header {
    text-align: center;
  }

  .section-header p {
    text-align: center;
  }
}

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

.category-section {
  margin-top: 15px;
}

.menu-filter-container {
  position: sticky;
  top: 80px;
  background: var(--background);
  padding: 1.5rem 0 1rem 0;
  margin-bottom: 2rem;
  z-index: 100;
  border-bottom: 2px solid var(--border);
  transition: all 0.3s ease;
  overflow: visible;
}

.menu-filter-container.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.category-filter {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.5rem;
}

.filter-btn {
  padding: 0.625rem 1.5rem;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-foreground);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.15);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.25);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.category-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-icon svg {
  width: 100%;
  height: 100%;
}

.category-header h3 {
  font-size: 1.875rem;
  color: var(--primary);
  margin: 0;
}

.category-myanmar-name {
  font-style: italic;
  font-size: 0.875rem;
  margin: 0.25rem 0 0 0;
  opacity: 0.8;
  color: var(--muted-foreground);
}

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

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.menu-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

.menu-item {
  /* Default hover color (warm orange like AWS) - will be overridden by JS */
  --card-hover-color: oklch(0.60 0.12 70);
}

.menu-item:hover {
  transform: translateY(-8px);
  /* AWS-inspired glow effect using color-mix with OKLCH */
  box-shadow:
    0 0 0 1px color-mix(in oklch, var(--card-hover-color), transparent 70%),
    0 12px 40px color-mix(in oklch, var(--card-hover-color), transparent 75%),
    0 20px 60px color-mix(in oklch, var(--card-hover-color), transparent 85%),
    0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: color-mix(in oklch, var(--card-hover-color), transparent 60%);
}

.menu-item-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.recommended-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background-color: #f97316;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.85em;
  font-weight: 600;
  z-index: 10;
}

.language-switch-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: linear-gradient(135deg, #8B4513 0%, #6D3A1A 100%);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75em;
  font-weight: 600;
  z-index: 10;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.language-switch-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #6D3A1A 0%, #8B4513 100%);
}

.language-switch-badge.active {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.language-switch-link {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.2s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.language-switch-link:hover {
  transform: scale(1.05);
}

.language-switch-link:active {
  transform: scale(0.95);
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #8B4513 0%, #6D3A1A 100%);
  padding: 1rem 1.5rem;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.overlay-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFD700;
  margin: 0;
  text-align: center;
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.05);
}

.menu-item-content {
  padding: 1.5rem;
}

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

.menu-item-header h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--card-foreground);
}

.price {
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
  font-size: 1rem;
}

.menu-item p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.menu-description {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-item-myanmar-name {
  font-style: italic;
  font-size: 0.75em;
  margin: 0;
  opacity: 0.8;
}

.menu-item .order-available {
  color: #10b981 !important;
  font-weight: 600;
  font-size: 0.9em;
  margin-top: 0.5rem;
}

.menu-item .branches-label {
  font-size: 0.9em;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #374151 !important;
}

.menu-item .branch-name {
  font-size: 0.85em;
  margin: 0.15rem 0 0.15rem 1.5rem;
  color: #6b7280 !important;
}

.menu-item .add-ons-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.menu-item .add-ons-label {
  font-size: 0.9em;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151 !important;
}

.menu-item .add-on-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.9em;
  color: #6b7280 !important;
}

.menu-item .add-on-icon {
  margin-right: 0.5rem;
  font-size: 1em;
}

.menu-item .add-on-name {
  flex: 1;
}

.menu-item .add-on-myanmar {
  font-size: 0.85em;
  opacity: 0.8;
  margin-left: 0.5rem;
}

.menu-item .add-on-price {
  font-weight: 600;
  color: var(--accent);
  margin-left: 1rem;
  white-space: nowrap;
}

.availability {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.shop-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, #8B4513, #6D3A1A);
  color: #FFD700;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.separator {
  height: 1px;
  background: var(--border);
  margin: 4rem 0;
}

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

.about-image {
  aspect-ratio: 4/3;
  background-image: url("/assets/about-image-b3866a2b.jpg");
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-icon {
  width: 120px;
  height: 120px;
  color: var(--primary);
  opacity: 0.4;
}

.about-text h3 {
  font-size: 1.875rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--foreground);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  margin: 0 auto 1rem;
}

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.feature-card p {
  color: var(--muted-foreground);
}

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

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.info-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.info-item p {
  color: var(--foreground);
  opacity: 0.7;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--background);
  border: 1px solid var(--border);
  color: var(--foreground);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.accent-text {
  color: var(--accent);
  font-weight: 500;
}

.info-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.form-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--foreground);
}

.form-group input,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  padding: 0.75rem;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: all 0.2s;
  background: var(--card);
  color: var(--foreground);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(153, 101, 60, 0.1);
}

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

.footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 3rem 1rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer .logo-icon {
  background: var(--primary-foreground);
  color: var(--primary);
}

.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.copyright {
  font-size: 0.875rem;
  opacity: 0.75;
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(150%);
  transition: transform 0.3s;
  z-index: 2000;
  max-width: 400px;
  border: 1px solid var(--border);
}

.toast.show {
  transform: translateY(0);
}

.toast.success {
  border-left: 4px solid #10b981;
}

.toast.error {
  border-left: 4px solid #ef4444;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--card);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.3s;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .menu-filter-container {
    position: sticky;
    top: 80px;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    overflow: visible;
    border-bottom: none;
    background: var(--background);
    z-index: 100;
  }

  .menu-filter-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
    z-index: -1;
  }

  .category-filter {
    gap: 0.5rem;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: visible;
    flex-wrap: nowrap;
    padding: 0 1rem 1rem 1rem;
    margin: 0 -1rem 0 -1rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .category-filter::-webkit-scrollbar {
    height: 4px;
  }

  .category-filter::-webkit-scrollbar-track {
    background: var(--muted);
  }

  .category-filter::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
  }

  .filter-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

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

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

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

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

  .section {
    padding: 4rem 1rem;
  }
}

/* Locations Page */
.hero-small {
  padding: 4rem 0;
}

.hero-map {
  height: auto;
  min-height: 500px;
  flex-direction: column;
  padding: 0;
  position: relative;
  margin-top: 10px;
}

.hero-map .hero-overlay,
.hero-map .hero-pattern {
  display: none;
}

.hero-map .hero-content {
  padding: 3rem 1rem 2rem;
  z-index: 10;
  position: relative;
  background: linear-gradient(to bottom, rgba(76, 59, 49, 0.9), rgba(76, 59, 49, 0.85));
}

.hero-map .hero-title {
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-top: 40px;
}

.hero-map .hero-subtitle {
  color: #FFFFFF;
  opacity: 0.95;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.map-container {
  width: 100%;
  height: 500px;
  position: relative;
  z-index: 1;
}

#branches-map {
  width: 100%;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-small .hero-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

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

.location-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

.location-card {
  /* Default hover color (warm orange like AWS) - will be overridden by JS */
  --card-hover-color: oklch(0.60 0.12 70);
}

.location-card:hover {
  transform: translateY(-8px);
  /* AWS-inspired glow effect using color-mix with OKLCH */
  box-shadow:
    0 0 0 1px color-mix(in oklch, var(--card-hover-color), transparent 70%),
    0 12px 40px color-mix(in oklch, var(--card-hover-color), transparent 75%),
    0 20px 60px color-mix(in oklch, var(--card-hover-color), transparent 85%),
    0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: color-mix(in oklch, var(--card-hover-color), transparent 60%);
}

.location-header {
  position: relative;
}

.location-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.location-card:hover .location-image img {
  transform: scale(1.05);
}

.location-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 0.5rem 1rem;
  border-radius: calc(var(--radius) / 2);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-badge-soon {
  background: var(--muted);
  color: var(--muted-foreground);
}

.location-content {
  padding: 1.5rem;
}

.location-content h3 {
  font-size: 1.5rem;
  color: var(--card-foreground);
  margin-bottom: 1.5rem;
}

.location-info {
  margin-bottom: 1.5rem;
}

.info-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.info-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.info-row .info-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.info-row strong {
  display: block;
  color: var(--card-foreground);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-row p {
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.6;
}

.service-options {
  margin: 1.5rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.service-options h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: calc(var(--radius) / 2);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}

.service-badge.service-available {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.service-badge.service-unavailable {
  background: rgba(156, 163, 175, 0.1);
  color: #6b7280;
  border: 1px solid rgba(156, 163, 175, 0.3);
  opacity: 0.6;
}

.service-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

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

.location-actions .btn {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.location-actions .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

  .location-actions {
    flex-direction: column;
  }

  .location-actions .btn {
    width: 100%;
  }

  .service-badges {
    flex-direction: column;
  }

  .service-badge {
    width: 100%;
    justify-content: center;
  }

  .nav-logo h1 {
    font-size: 1.25rem;
  }

  .toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

/* Google Maps Info Window Styles */
.custom-info-window {
  max-width: 320px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.info-header {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

.header-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.info-content {
  padding: 16px;
  background: white;
}

.store-name {
  font-size: 18px;
  font-weight: 600;
  color: #202124;
  margin: 0 0 12px 0;
}

.store-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.rating-stars {
  color: #ffa500;
  font-size: 14px;
  line-height: 1;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  padding: 6px 0;
}

.info-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: #5f6368;
}

.info-text {
  color: #5f6368;
  font-size: 13px;
  line-height: 1.5;
  flex: 1;
}

.info-link {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

.info-link:hover {
  text-decoration: underline;
}

.action-buttons {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #e8eaed;
}

.action-btn {
  flex: 1;
  padding: 8px 16px;
  background: #1a73e8;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.action-btn:hover {
  background: #1557b0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.action-btn:active {
  transform: scale(0.98);
}

/* Override default Google Maps info window styles */
.gm-style .gm-style-iw-c {
  padding: 0 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}

.gm-style .gm-style-iw-d {
  overflow: hidden !important;
  padding: 0 !important;
}

.gm-style .gm-style-iw-t::after {
  background: white !important;
}

#branches-map {
  margin-top: 10px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

/* ============================================
   Modern Image Modal / Popup Styles
   ============================================ */

/* Modal overlay with glassmorphism effect */
.image-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(20, 20, 30, 0.95) 100%);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.image-modal.active {
  opacity: 1;
}

/* Modal content container with modern shadow */
.image-modal-content {
  position: relative;
  max-width: 92%;
  max-height: 92%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* The actual image in the modal with premium styling */
.modal-image {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 100px rgba(217, 119, 6, 0.15);
  animation: modalZoomIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.3s ease;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Loading state */
.modal-image.loading {
  opacity: 0.3;
  filter: blur(10px);
}

/* Smooth zoom animation */
@keyframes modalZoomIn {
  0% {
    transform: scale(0.5) translateY(50px);
    opacity: 0;
    filter: blur(10px);
  }

  60% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}

/* Modern close button with icon styling */
.image-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: #ffffff;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10001;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.8) 0%, rgba(180, 83, 9, 0.9) 100%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow:
    0 4px 20px rgba(217, 119, 6, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.image-modal-close:hover,
.image-modal-close:focus {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.9) 0%, rgba(220, 38, 38, 0.95) 100%);
  transform: rotate(90deg) scale(1.1);
  box-shadow:
    0 8px 30px rgba(239, 68, 68, 0.6),
    0 0 0 2px rgba(255, 255, 255, 0.2);
}

.image-modal-close:active {
  transform: rotate(90deg) scale(0.95);
}

/* Image caption/title */
.modal-image-caption {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.2) 0%, rgba(180, 83, 9, 0.2) 100%);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Zoom controls container */
.modal-zoom-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(20, 20, 30, 0.8) 100%);
  border-radius: 50px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.zoom-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.8) 0%, rgba(180, 83, 9, 0.9) 100%);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(217, 119, 6, 0.3);
}

.zoom-btn:hover {
  background: linear-gradient(135deg, rgba(217, 119, 6, 1) 0%, rgba(180, 83, 9, 1) 100%);
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.5);
}

.zoom-btn:active {
  transform: scale(0.95);
}

/* Loading spinner */
.modal-loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 4px solid rgba(217, 119, 6, 0.2);
  border-top: 4px solid rgba(217, 119, 6, 0.9);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Images - no longer clickable, just display */
.menu-item-img,
.banner-image {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: default;
}

/* Remove magnifying glass icon - no longer needed */
.menu-item-img::before,
.banner-image::before {
  display: none;
}

/* Hover magnifying glass - removed, no longer needed */
.menu-item-img::after,
.banner-image::after {
  display: none;
}

/* Real "Click to view" button - Liquid Glass Design */
.image-preview-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  /* Glassmorphism effect - semi-transparent so image shows through */
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0.15) 100%);

  /* Blur effect for glass look */
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);

  /* Border for glass edge effect */
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-left: 1px solid rgba(255, 255, 255, 0.6);

  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 11;
  cursor: pointer;

  /* Multi-layered shadow for depth */
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    0 2px 8px rgba(217, 119, 6, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    inset 0 -1px 1px rgba(0, 0, 0, 0.1);

  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;

  /* Text shadow for better readability */
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 0 10px rgba(217, 119, 6, 0.5);
}

/* Show button on menu item hover/focus */
.menu-item-image:hover .image-preview-btn,
.menu-item-image:focus-within .image-preview-btn,
.menu-item:hover .image-preview-btn,
.menu-item:focus-within .image-preview-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Show button on banner hover/focus */
.banner-slide:hover .image-preview-btn,
.banner-slide:focus-within .image-preview-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Show button on touch/tap (mobile) */
.menu-item-image.touch-active .image-preview-btn,
.menu-item.touch-active .image-preview-btn,
.banner-slide.touch-active .image-preview-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Hover state - enhanced glass effect with orange tint */
.image-preview-btn:hover {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(217, 119, 6, 0.25) 50%,
      rgba(255, 255, 255, 0.25) 100%);

  transform: translateX(-50%) scale(1.08) translateY(-3px);

  /* Enhanced glow on hover */
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(217, 119, 6, 0.5),
    inset 0 2px 2px rgba(255, 255, 255, 0.6),
    inset 0 -2px 2px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(217, 119, 6, 0.4);

  /* Stronger border on hover */
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-left: 1px solid rgba(255, 255, 255, 0.8);

  /* Enhanced text glow */
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(217, 119, 6, 0.8),
    0 0 30px rgba(255, 255, 255, 0.3);
}

/* Active/pressed state */
.image-preview-btn:active {
  transform: translateX(-50%) scale(1.02) translateY(0);

  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(217, 119, 6, 0.3) 100%);

  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(217, 119, 6, 0.4),
    inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.menu-item-image {
  position: relative;
  overflow: hidden;
  cursor: default;
}

.banner-slide {
  cursor: default;
  position: relative;
}

/* Mobile responsive with modern adjustments */
@media (max-width: 768px) {
  .image-modal-content {
    max-width: 96%;
    max-height: 96%;
    padding: 15px;
  }

  .modal-image {
    max-height: 80vh;
    border-radius: 12px;
  }

  .image-modal-close {
    top: -45px;
    font-size: 28px;
    width: 45px;
    height: 45px;
  }

  .modal-image-caption {
    font-size: 14px;
    padding: 10px 20px;
    bottom: -40px;
  }

  .modal-zoom-controls {
    bottom: 15px;
    gap: 8px;
    padding: 8px;
  }

  .zoom-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  /* Adjust button size for tablets and make more transparent */
  .image-preview-btn {
    font-size: 13px;
    padding: 9px 20px;

    /* More transparent glass on tablet */
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.1) 100%);

    /* Always visible on tablet */
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  /* Remove the touch-active requirement for tablets */
  .menu-item-image:active .image-preview-btn,
  .menu-item:active .image-preview-btn,
  .banner-slide:active .image-preview-btn {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 480px) {
  .image-modal-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .modal-image {
    max-height: 75vh;
    border-radius: 10px;
  }

  .modal-image-caption {
    font-size: 13px;
    padding: 8px 16px;
    max-width: 90%;
  }

  .modal-zoom-controls {
    bottom: 10px;
    gap: 6px;
    padding: 6px;
  }

  .zoom-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  /* Always show button on mobile with extra transparency */
  .image-preview-btn {
    font-size: 12px;
    padding: 8px 18px;
    bottom: 8px;

    /* Extra transparent glass on mobile */
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.08) 100%);

    /* Lighter border on mobile */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.4);

    /* Always visible */
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);

    /* Stronger blur for mobile */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
  }
}

/* Smooth fade for modal content */
@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-image-caption,
.modal-zoom-controls {
  animation: fadeInContent 0.5s ease 0.2s both;
}