/* ===================================
   GETS DIGITAL MENU - PREMIUM REDESIGN
   Modern Restaurant Menu System v2.0
   =================================== */

/* Google Fonts - Premium Typography */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Noto+Sans+Arabic:wght@400;500;600;700&display=swap");

/* CSS Custom Properties - Enhanced Design Tokens */
:root {
  /* Premium Deep Teal Theme - Matching Logo */
  --bg-deep: #063838;
  --bg-primary: #084545;
  --bg-elevated: #0a5252;
  --bg-surface: #0c6060;

  /* Premium Accent Colors - Vibrant Orange from Logo */
  --accent-gold: #ec4f28;
  --accent-gold-light: #ff9254;
  --accent-gold-dark: #c55d1e;
  --accent-gold-glow: rgba(232, 117, 47, 0.35);

  /* Secondary Accents */
  --accent-coral: #ff8c5a;
  --accent-teal: #5ee6dc;
  --accent-purple: #b06cf7;

  /* Semantic Colors */
  --success: #22c55e;
  --popular: #ef4444;
  --new-tag: #8b5cf6;
  --spicy: #f97316;

  /* Text Hierarchy */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.78);
  --text-tertiary: rgba(255, 255, 255, 0.55);
  --text-muted: rgba(255, 255, 255, 0.38);

  /* Glass Surfaces */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-hover: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.15);

  /* Premium Shadows */
  --shadow-sm: 0 2px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.45);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 40px var(--accent-gold-glow);
  --shadow-card: 0 4px 10px rgba(0, 0, 0, 0.027);

  /* Typography */
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-arabic: "Noto Sans Arabic", "Plus Jakarta Sans", sans-serif;

  /* Fluid Typography Scale */
  --text-xs: clamp(0.7rem, 1.5vw, 0.75rem);
  --text-sm: clamp(0.8rem, 1.8vw, 0.875rem);
  --text-base: clamp(0.875rem, 2vw, 1rem);
  --text-lg: clamp(1rem, 2.2vw, 1.125rem);
  --text-xl: clamp(1.125rem, 2.5vw, 1.25rem);
  --text-2xl: clamp(1.25rem, 3vw, 1.5rem);
  --text-3xl: clamp(1.5rem, 4vw, 2rem);
  --text-4xl: clamp(2rem, 5vw, 2.5rem);

  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;
  --duration-slower: 600ms;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html,
body,
#root {
  height: 100%;
  background: var(--bg-deep);
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

/* RTL Font Support */
[dir="rtl"] {
  font-family: var(--font-arabic);
}

/* Premium Scrollbar */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold-light);
}

/* Selection */
::selection {
  background: var(--accent-gold);
  color: var(--bg-deep);
}

/* ===================================
   MAIN WRAPPER LAYOUT
   =================================== */

.wraper {
  display: flex;
  justify-content: space-between;
  background: var(--bg-deep);
  min-height: 100%;
  overflow-x: hidden;
  position: relative;
}

/* Animated Background */
.wraper::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 50% at 20% 20%,
      rgba(231, 231, 231, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 60% 40% at 80% 80%,
      rgba(231, 231, 231, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 100%,
      rgba(231, 231, 231, 0.03) 0%,
      transparent 40%
    );
  pointer-events: none;
  z-index: 0;
}

.wraper .menu {
  width: 100%;
  max-width: 540px;
  position: relative;
  z-index: 1;
}

/* Footer */
.wraper .menu .footer {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-align: center;
  padding: var(--space-8) var(--space-4) var(--space-6);
  letter-spacing: 0.5px;
}

.wraper .menu .footer .caviar {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
}

.wraper .menu .footer .caviar::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent-gold),
    var(--accent-gold-light)
  );
  transition: width var(--duration-base) var(--ease-out);
  border-radius: var(--radius-full);
}

.wraper .menu .footer .caviar:hover {
  color: var(--accent-gold-light);
  text-shadow: 0 0 20px var(--accent-gold-glow);
}

.wraper .menu .footer .caviar:hover::after {
  width: 100%;
}

/* Desktop Logo Section */
.wraper .main-logo {
  text-align: center;
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-deep) 100%
  );
  border-left: 1px solid var(--glass-border);
  width: calc(100% - 540px);
  position: fixed;
  height: 100%;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wraper .main-logo::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    var(--accent-gold-glow) 0%,
    transparent 70%
  );
  animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.8;
  }
}

.wraper .main-logo img {
  width: 220px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 50px rgba(232, 185, 35, 0.3));
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(1deg);
  }
  75% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

/* Responsive */
@media (max-width: 1280px) {
  .wraper .menu {
    max-width: 100%;
  }
  .wraper .main-logo {
    display: none;
  }
}

/* ===================================
   INTRO PAGE - LANGUAGE SELECTION
   =================================== */

.intro {
  min-height: 100vh;
  min-height: 92dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}

/* Decorative Background */
.intro::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.24) 0%,
    transparent 60%
  );
  filter: blur(60px);
  animation: intro-glow 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes intro-glow {
  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1.2);
  }
}

.intro .head {
  text-align: center;
  position: relative;
  z-index: 2;
}

.intro .head img {
  width: 160px;
  height: auto;
  margin-bottom: var(--space-6);
  filter: drop-shadow(0 15px 40px rgba(232, 185, 35, 0.35));
  animation:
    logo-entrance 1s var(--ease-spring) forwards,
    float 8s ease-in-out 1s infinite;
}

@keyframes logo-entrance {
  from {
    opacity: 0;
    transform: translateY(-40px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.intro .head h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.intro .head p {
  color: var(--text-secondary);
  font-size: var(--text-base);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Language Selection */
.intro form {
  margin: var(--space-10) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 260px;
}

.intro form button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  height: 56px;
  font-size: var(--text-lg);
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-slow) var(--ease-spring);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.intro form button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.intro form button span {
  position: relative;
  z-index: 1;
}

.intro form button:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.intro form button:hover::before {
  opacity: 1;
}

.intro form button:hover span {
  color: var(--bg-deep);
}

.intro form button:active {
  transform: translateY(-2px) scale(0.98);
}

/* Staggered Animation */
.intro form button:nth-child(1) {
  animation: slide-up 0.6s var(--ease-spring) 0.1s both;
}
.intro form button:nth-child(2) {
  animation: slide-up 0.6s var(--ease-spring) 0.2s both;
}
.intro form button:nth-child(3) {
  animation: slide-up 0.6s var(--ease-spring) 0.3s both;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Social Links */
.intro .social {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: fade-in 0.8s var(--ease-out) 0.5s both;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.intro .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  transition: all var(--duration-slow) var(--ease-spring);
  text-decoration: none;
}

.intro .social a i {
  color: var(--text-primary);
  font-size: 1.3rem;
  transition: all var(--duration-base) var(--ease-out);
}

.intro .social a:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: translateY(-6px) scale(1.1);
  box-shadow: var(--shadow-glow);
}

.intro .social a:hover i {
  color: var(--bg-deep);
  transform: scale(1.1);
}

/* Feedback Link */
.send-feedback {
  margin-top: var(--space-8);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.055);
  transition: all var(--duration-slow) var(--ease-spring);
  animation: fade-in 0.8s var(--ease-out) 0.7s both;
}

.send-feedback:hover {
  background: rgba(232, 185, 35, 0.15);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  border-color: var(--accent-gold);
}

.send-feedback a {
  font-size: var(--text-sm);
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.send-feedback i {
  font-size: 1rem;
}

/* ===================================
   CATEGORY PAGE
   =================================== */

.category {
  width: 100%;
  animation: page-enter 0.5s var(--ease-out);
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Category Header */
.category .head {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
  background-size: cover !important;
}

.category .head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 11, 18, 0.3) 0%,
    rgba(8, 11, 18, 0.85) 100%
  );
  pointer-events: none;
}

.category .head img:not(.backward) {
  width: 120px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.5));
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

/* Back Button */
.category .head .backward,
.menu-items .head .backward {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--duration-base) var(--ease-spring);
}

.category .head .backward:hover,
.menu-items .head .backward:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

/* Language Switcher */
.category .head .language,
.menu-items .head .language {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  gap: var(--space-1);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
}

.category .head .language button,
.menu-items .head .language button {
  display: block;
  padding: 8px 14px;
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: var(--text-xs);
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
}

.category .head .language button:hover,
.menu-items .head .language button:hover {
  color: var(--text-primary);
  background: var(--glass-bg-hover);
}

.category .head .language .activ,
.menu-items .head .language .activ {
  background: var(--accent-gold) !important;
  color: white !important;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* Category Info - Premium Contact Card */
.category .info {
  padding: var(--space-5) var(--space-4);
  animation: fade-slide-up 0.6s var(--ease-out) 0.2s both;
}

@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category .info .contact-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.category .info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  text-decoration: none;
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
}

.category .info .contact-item.location-item {
  cursor: pointer;
}

.category .info .contact-item.location-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.category .info .contact-item.location-item:hover .icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 0 25px var(--accent-gold-glow);
}

.category .info .contact-item.location-item:hover .external-icon {
  opacity: 1;
  transform: translate(2px, -2px);
}

.category .info .icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px var(--accent-gold-glow);
  transition: all var(--duration-base) var(--ease-spring);
}

.category .info .icon-wrapper i {
  color: white;
  font-size: 1.1rem;
}

.category .info .contact-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  flex: 1;
  min-width: 0;
}

.category .info .contact-label {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.category .info .contact-value {
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.5;
}

.category .info .external-icon {
  color: var(--accent-gold);
  font-size: 0.85rem;
  opacity: 0.5;
  transition: all var(--duration-base) var(--ease-out);
  align-self: center;
}

.category .info .contact-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--glass-border) 15%,
    var(--glass-border) 85%,
    transparent 100%
  );
  margin: 0 var(--space-5);
}

.category .info .phone-numbers {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.category .info .phone-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: all var(--duration-base) var(--ease-spring);
  width: fit-content;
}

.category .info .phone-link span {
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.category .info .phone-link .call-icon {
  font-size: 0.75rem;
  color: var(--accent-gold);
  opacity: 0;
  transform: translateX(-5px);
  transition: all var(--duration-base) var(--ease-out);
}

.category .info .phone-link:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: translateX(5px);
  box-shadow: 0 4px 20px var(--accent-gold-glow);
}

.category .info .phone-link:hover span {
  color: white;
}

.category .info .phone-link:hover .call-icon {
  opacity: 1;
  color: white;
  transform: translateX(0);
  animation: ring 0.6s ease-in-out;
}

@keyframes ring {
  0%,
  100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  40% {
    transform: rotate(15deg);
  }
  60% {
    transform: rotate(-10deg);
  }
  80% {
    transform: rotate(10deg);
  }
}

/* Category List - Premium 2-Column Grid */
.category .category-list {
  padding: var(--space-4);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.category .category-list .category-item {
  aspect-ratio: 1 / 1.1;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--duration-slow) var(--ease-spring);
  background-size: cover !important;
  background-position: center !important;
  border: 1px solid #ffffff46;
}

/* Gradient Border Effect */
.category .category-list .category-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 69, 69, 0.2) 0%,
    rgb(8 11 18 / 18%) 70%,
    rgb(8 11 18 / 96%) 100%
  );
  z-index: 1;
  transition: all var(--duration-base) var(--ease-out);
}

/* Golden Glow Overlay on Hover */
.category .category-list .category-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(232, 117, 47, 0.1) 0%,
    rgba(232, 117, 47, 0.25) 50%,
    transparent 100%
  );
  opacity: 0;
  z-index: 1;
  transition: opacity var(--duration-slow) var(--ease-out);
}

/* Top Shine Effect */
.category .category-list .category-item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 100%
  );
  z-index: 3;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
  pointer-events: none;
}

.category .category-list .category-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--accent-gold);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(232, 117, 47, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.category .category-list .category-item:hover::before {
  background: linear-gradient(
    180deg,
    rgba(8, 69, 69, 0.1) 0%,
    rgba(8, 11, 18, 0.75) 60%,
    rgba(8, 11, 18, 0.9) 100%
  );
}

.category .category-list .category-item:hover::after {
  opacity: 1;
}

.category .category-list .category-item:hover a::before {
  opacity: 1;
}

.category .category-list .category-item:active {
  transform: translateY(-2px) scale(0.98);
}

.category .category-list .category-item a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  width: 100%;
  padding: var(--space-4);
  position: relative;
  z-index: 2;
}

.category .category-list .category-item h2 {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: -0.01em;
  /* text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7); */
  text-align: center;
  line-height: 1;
  transition: all var(--duration-base) var(--ease-out);
  padding: var(--space-2) 1rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.7rem;
}

.category .category-list .category-item:hover h2 {
  transform: translateY(-4px);
  background: rgba(232, 117, 47, 0.25);
  border-color: rgba(232, 117, 47, 0.4);
  box-shadow: 0 4px 20px rgba(232, 117, 47, 0.2);
}

/* Staggered Animation */
.category .category-list .category-item {
  animation: category-slide 0.5s var(--ease-out) both;
}

.category .category-list .category-item:nth-child(1) {
  animation-delay: 0.05s;
}
.category .category-list .category-item:nth-child(2) {
  animation-delay: 0.1s;
}
.category .category-list .category-item:nth-child(3) {
  animation-delay: 0.15s;
}
.category .category-list .category-item:nth-child(4) {
  animation-delay: 0.2s;
}
.category .category-list .category-item:nth-child(5) {
  animation-delay: 0.25s;
}
.category .category-list .category-item:nth-child(6) {
  animation-delay: 0.3s;
}
.category .category-list .category-item:nth-child(7) {
  animation-delay: 0.35s;
}
.category .category-list .category-item:nth-child(8) {
  animation-delay: 0.4s;
}
.category .category-list .category-item:nth-child(9) {
  animation-delay: 0.45s;
}
.category .category-list .category-item:nth-child(10) {
  animation-delay: 0.5s;
}

@keyframes category-slide {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive - Single column on very small screens */
@media (max-width: 360px) {
  .category .category-list {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .category .category-list .category-item {
    aspect-ratio: 16 / 9;
  }

  .category .category-list .category-item h2 {
    font-size: var(--text-lg);
  }
}

/* ===================================
   MENU ITEMS PAGE
   =================================== */

.menu-items {
  width: 100%;
  animation: page-enter 0.5s var(--ease-out);
}

/* Menu Header */
.menu-items .head {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
  background-size: cover !important;
}

.menu-items .head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 11, 18, 0.4) 0%,
    rgba(8, 11, 18, 0.9) 100%
  );
  pointer-events: none;
}

.menu-items .head img:not(.backward) {
  width: 100px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

/* Category Tabs */
.menu-items .categories {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding: var(--space-4) var(--space-3);
  gap: var(--space-2);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.menu-items .categories::-webkit-scrollbar {
  display: none;
}

.menu-items .categories .categories-item {
  flex-shrink: 0;
  width: 72px;
  text-align: center;
  text-decoration: none;
  padding: var(--space-2);
  cursor: pointer;
  border-radius: var(--radius-lg);
  transition: all var(--duration-base) var(--ease-out);
  scroll-snap-align: start;
  background: transparent;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.menu-items .categories .categories-item:hover {
  background: var(--glass-bg);
}

.menu-items .categories .categories-item .categories-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  padding: var(--space-2);
  overflow: hidden;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all var(--duration-base) var(--ease-spring);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-items .categories .categories-item .categories-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.menu-items .categories .categories-item .categories-icon span {
  width: 20px;
  height: 20px;
  display: block;
  border: 2px solid var(--text-muted);
  border-radius: var(--radius-full);
}

.menu-items .categories .categories-item .categories-name {
  margin-top: var(--space-2);
  display: block;
  color: var(--text-tertiary);
  font-weight: 500;
  font-size: var(--text-xs);
  width: 68px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color var(--duration-base) var(--ease-out);
}

/* Active Category */
.menu-items .categories .active {
  background: var(--glass-bg);
}

.menu-items .categories .active .categories-icon {
  border-color: #8d4d26a3;
  transform: scale(1.05);
}

.menu-items .categories .active .categories-name {
  color: var(--accent-gold);
  font-weight: 600;
}

/* Sticky Categories */
.menu-items .categories.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 540px;
  z-index: 100;
  background: rgba(8, 11, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

/* Subcategories */
.menu-items .subcategories > .item {
  border: 1px solid rgba(232, 185, 35, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  margin-bottom: var(--space-4);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.menu-items .subcategories .item-head {
  background: linear-gradient(
    135deg,
    rgba(232, 185, 35, 0.15) 0%,
    rgba(232, 185, 35, 0.05) 100%
  );
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  color: var(--accent-gold-light);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  margin-bottom: var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(232, 185, 35, 0.2);
}

.menu-items .subcategories .item-body {
  padding: var(--space-3);
  background: rgba(8, 11, 18, 0.5);
  border-radius: var(--radius-md);
}

/* Items Container */
.menu-items .items {
  width: 94%;
  margin: 0 auto;
  padding-bottom: var(--space-8);
}

/* List View Header */
.menu-items .items .head-listview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: var(--space-4) 0;
  padding: 0 var(--space-1);
}

.menu-items .items .head-listview .category-name {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* View Toggle */
.menu-items .items .head-listview .listview {
  display: flex;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 3px;
  gap: 2px;
}

.menu-items .items .head-listview .listview i {
  padding: 8px 10px;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--duration-base) var(--ease-out);
  font-size: 0.85rem;
}

.menu-items .items .head-listview .listview i:hover {
  color: var(--text-secondary);
  background: var(--glass-bg-hover);
}

.menu-items .items .head-listview .listview .active {
  color: white !important;
  background: var(--accent-gold) !important;
}

/* Item Order Badge */
.item-order {
  position: absolute;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
  color: var(--bg-deep) !important;
  border-radius: var(--radius-sm);
  width: 26px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 11px !important;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

/* ===================================
   LIST VIEW STYLE - PREMIUM
   =================================== */

.menu-items .items .style-list {
  display: flex;
  flex-wrap: wrap;
  margin: var(--space-3) 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all var(--duration-slow) var(--ease-spring);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

/* Subtle shine effect on list items */
.menu-items .items .style-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.04),
    transparent
  );
  transition: left 0.6s var(--ease-out);
  pointer-events: none;
}

/* Accent border glow */
.menu-items .items .style-list::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.menu-items .items .style-list:hover {
  background: linear-gradient(
    135deg,
    rgba(232, 117, 47, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border-color: rgba(232, 117, 47, 0.35);
  transform: translateX(6px) scale(1.01);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(232, 117, 47, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.menu-items .items .style-list:hover::before {
  left: 100%;
}

.menu-items .items .style-list:hover::after {
  opacity: 1;
}

.menu-items .items .style-list .side-right {
  width: 28%;
  height: 100px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  flex-shrink: 0;
}

/* Image container glow */
.menu-items .items .style-list .side-right::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.menu-items .items .style-list .side-right img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  transition: all var(--duration-slow) var(--ease-spring);
  filter: brightness(0.95);
}

.menu-items .items .style-list:hover .side-right img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.menu-items .items .style-list .side-left {
  width: 72%;
  padding-left: var(--space-4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-2);
}

.menu-items .items .style-list .side-left h5 {
  color: var(--text-primary);
  font-size: var(--text-base);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color var(--duration-base) var(--ease-out);
}

.menu-items .items .style-list:hover .side-left h5 {
  color: var(--accent-gold-light);
}

.menu-items .items .style-list .side-left p {
  color: var(--text-tertiary);
  font-size: var(--text-sm);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-items .items .style-list .side-left .price {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-1);
}

.menu-items .items .style-list .side-left .price span {
  color: var(--accent-gold);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: linear-gradient(
    135deg,
    rgba(232, 117, 47, 0.15) 0%,
    rgba(232, 117, 47, 0.08) 100%
  );
  border: 1px solid rgba(232, 117, 47, 0.25);
  transition: all var(--duration-base) var(--ease-out);
}

.menu-items .items .style-list:hover .side-left .price span {
  background: linear-gradient(
    135deg,
    rgba(232, 117, 47, 0.25) 0%,
    rgba(232, 117, 47, 0.15) 100%
  );
  border-color: rgba(232, 117, 47, 0.4);
  transform: scale(1.02);
}

/* ===================================
   TWO COLUMN GRID - PREMIUM
   =================================== */

.menu-items .items .style-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.menu-items .items .style-two .item {
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--duration-slow) var(--ease-spring);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

/* Animated gradient border */
.menu-items .items .style-two .item::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(232, 117, 47, 0.4) 50%,
    transparent 60%
  );
  background-size: 300% 300%;
  opacity: 0;
  z-index: -1;
  transition: opacity var(--duration-base) var(--ease-out);
  animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Top shine effect */
.menu-items .items .style-two .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.menu-items .items .style-two .item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(232, 117, 47, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(232, 117, 47, 0.4);
}

.menu-items .items .style-two .item:hover::before {
  opacity: 1;
}

.menu-items .items .style-two .item:hover::after {
  opacity: 1;
}

.menu-items .items .style-two .item:active {
  transform: translateY(-4px) scale(0.99);
}

.menu-items .items .style-two .image {
  position: relative;
  height: auto;
  overflow: hidden;
}

.menu-items .items .style-two .image .image-loading {
  width: 100%;
  height: 140px;
}

.menu-items .items .style-two .image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: all var(--duration-slow) var(--ease-spring);
  filter: brightness(0.92) saturate(1.05);
}

.menu-items .items .style-two .item:hover .image img {
  transform: scale(1.12);
  filter: brightness(1) saturate(1.1);
}

.menu-items .items .style-two .image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(
    to top,
    rgba(15, 18, 25, 0.95) 0%,
    rgba(15, 18, 25, 0.5) 40%,
    transparent 100%
  );
  pointer-events: none;
}

.menu-items .items .style-two .image .item-order {
  top: 10px;
  left: 10px;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.menu-items .items .style-two .info {
  padding: var(--space-3) var(--space-4) var(--space-4);
  position: relative;
  z-index: 2;
}

.menu-items .items .style-two .info h5 {
  color: var(--text-primary);
  font-size: var(--text-base);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: var(--space-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.01em;
  transition: color var(--duration-base) var(--ease-out);
}

.menu-items .items .style-two .item:hover .info h5 {
  color: var(--accent-gold-light);
}

.menu-items .items .style-two .info .price {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.menu-items .items .style-two .info .price span {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--accent-gold);
  padding: 4px 10px;
  background: rgba(232, 117, 47, 0.12);
  border-radius: var(--radius-md);
  border: 1px solid rgba(232, 117, 47, 0.2);
  transition: all var(--duration-base) var(--ease-out);
}

.menu-items .items .style-two .item:hover .info .price span {
  background: rgba(232, 117, 47, 0.2);
  border-color: rgba(232, 117, 47, 0.35);
}

.menu-items .items .style-two .info .price span span {
  display: block;
  margin-bottom: 3px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 500;
  background: none;
  padding: 0;
  border: none;
}

/* ===================================
   LARGE CARD STYLE - PREMIUM
   =================================== */

.style-large .item {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--radius-2xl);
  position: relative;
  margin-bottom: var(--space-5);
  cursor: pointer;
  transition: all var(--duration-slow) var(--ease-spring);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

/* Animated glow effect */
.style-large .item::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-2xl) + 3px);
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(232, 117, 47, 0.35) 50%,
    transparent 70%
  );
  background-size: 400% 400%;
  opacity: 0;
  z-index: -1;
  transition: opacity var(--duration-slow) var(--ease-out);
  animation: gradient-shift 4s ease-in-out infinite;
}

/* Luxury shine sweep */
.style-large .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transition: left 0.8s var(--ease-out);
  pointer-events: none;
}

.style-large .item:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.35),
    0 0 50px rgba(232, 117, 47, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border-color: rgba(232, 117, 47, 0.45);
}

.style-large .item:hover::before {
  opacity: 1;
}

.style-large .item:hover::after {
  left: 100%;
}

.style-large .item:active {
  transform: translateY(-5px) scale(0.995);
}

/* Image container with overlay */
.style-large .item .image-wrapper {
  position: relative;
  overflow: hidden;
}

.style-large .item .image-loading {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-xl);
}

.style-large .item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: all var(--duration-slow) var(--ease-spring);
  filter: brightness(0.9) saturate(1.05);
}

.style-large .item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.15);
}

.style-large .item .item-order {
  top: var(--space-5);
  left: var(--space-5);
  z-index: 3;
  width: 32px;
  height: 26px;
  line-height: 26px;
  font-size: 12px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.style-large .item h5 {
  color: var(--text-primary);
  font-size: var(--text-xl);
  font-weight: 700;
  padding: 0 var(--space-2);
  line-height: 1.35;
  letter-spacing: -0.02em;
  transition: color var(--duration-base) var(--ease-out);
}

.style-large .item:hover h5 {
  color: var(--accent-gold-light);
}

.style-large .item .price {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding: 0 var(--space-2) var(--space-2);
}

.style-large .item .price span {
  color: var(--accent-gold);
  font-size: var(--text-base);
  font-weight: 700;
  padding: 8px 18px;
  background: linear-gradient(
    135deg,
    rgba(232, 117, 47, 0.15) 0%,
    rgba(232, 117, 47, 0.08) 100%
  );
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232, 117, 47, 0.25);
  transition: all var(--duration-base) var(--ease-spring);
}

.style-large .item:hover .price span {
  background: linear-gradient(
    135deg,
    rgba(232, 117, 47, 0.25) 0%,
    rgba(232, 117, 47, 0.15) 100%
  );
  border-color: rgba(232, 117, 47, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 117, 47, 0.15);
}

.style-large .item .price span span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-muted);
  font-size: var(--text-xs);
  font-weight: 500;
  background: none;
  padding: 0;
  border: none;
  box-shadow: none;
  transform: none;
}

/* ===================================
   LOADER
   =================================== */

.loader-container {
  margin: auto;
  width: 100%;
  text-align: center;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.loader {
  width: 40px;
  height: 40px;
  border: 3px solid var(--glass-border);
  border-top-color: var(--accent-gold);
  border-radius: var(--radius-full);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader-container::after {
  content: "Loading...";
  color: var(--text-muted);
  font-size: var(--text-sm);
  letter-spacing: 1px;
}

/* Image Loading Skeleton */
.image-loading {
  overflow: hidden;
  background: linear-gradient(
    90deg,
    var(--glass-bg) 0%,
    var(--glass-bg-hover) 50%,
    var(--glass-bg) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

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

/* ===================================
   SWEETALERT CUSTOM
   =================================== */

.swal2-container.swal2-center > .swal2-popup {
  background: var(--bg-elevated);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}

.swal2-styled.swal2-confirm {
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  ) !important;
  color: var(--bg-deep) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-full) !important;
  padding: var(--space-3) var(--space-8) !important;
  box-shadow: var(--shadow-glow) !important;
}

.swal2-show {
  animation: swal2-show 0.35s var(--ease-spring) !important;
}

.swal2-image {
  border-radius: var(--radius-lg) !important;
  margin: 0 auto !important;
}

/* Not Found */
.notfound {
  color: var(--text-secondary);
  text-align: center;
  margin-top: 80px;
  padding: var(--space-8);
}

.notfound h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--accent-gold);
  margin-bottom: var(--space-4);
}

/* ===================================
   FEEDBACK PAGE
   =================================== */

.feedback {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: page-enter 0.5s var(--ease-out);
}

.feedback h1 {
  text-align: center;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin: var(--space-4) auto var(--space-8);
  position: relative;
}

.feedback h1::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-gold),
    var(--accent-gold-light)
  );
  border-radius: var(--radius-full);
}

.feedback .feedback-item {
  margin: var(--space-4) auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 360px;
}

.feedback .feedback-item .title {
  margin-bottom: var(--space-2);
  color: var(--text-secondary);
  font-size: var(--text-base);
  font-weight: 500;
  align-self: flex-start;
}

.feedback .feedback-item textarea,
.feedback .feedback-item input {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  outline: none;
  width: 100%;
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  padding: var(--space-4);
  margin-top: var(--space-2);
  font-size: var(--text-base);
  font-family: inherit;
  transition: all var(--duration-base) var(--ease-out);
}

.feedback .feedback-item textarea:focus,
.feedback .feedback-item input:focus {
  border-color: var(--accent-gold);
}

.feedback .feedback-item textarea {
  height: 120px;
  resize: vertical;
}

.feedback .feedback-item input {
  height: 52px;
}

.feedback .feedback-item button {
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
  border: none;
  outline: none;
  width: 100%;
  border-radius: var(--radius-full);
  color: white;
  padding: var(--space-4);
  height: 54px;
  font-weight: 700;
  margin: var(--space-8) auto var(--space-4);
  cursor: pointer;
  font-size: var(--text-lg);
  font-family: inherit;
  transition: all var(--duration-slow) var(--ease-spring);
  box-shadow: var(--shadow-sm);
}

.feedback .feedback-item button:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.feedback .feedback-item button:active {
  transform: translateY(-2px);
}

.feedback-success-message {
  margin: 60px auto;
  padding: var(--space-8);
  text-align: center;
  color: var(--text-primary);
  font-size: var(--text-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--accent-gold);
  max-width: 360px;
}

/* Feedback Header */
.head-feedback {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4);
}

.head-feedback .backward {
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-base) var(--ease-spring);
}

.head-feedback .backward:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.head-feedback .lang {
  display: flex;
  gap: var(--space-1);
  background: var(--glass-bg);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
}

.head-feedback .lang div {
  color: var(--text-tertiary);
  cursor: pointer;
  font-size: var(--text-sm);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-out);
  font-weight: 500;
}

.head-feedback .lang div:hover {
  color: var(--text-primary);
  background: var(--glass-bg-hover);
}

.head-feedback .lang .active {
  color: white !important;
  background: var(--accent-gold) !important;
  font-weight: 600;
}

/* Star Rating */
.react-stars {
  display: flex !important;
  justify-content: center !important;
}

.react-stars span {
  font-size: 2.2rem !important;
  cursor: pointer;
  transition: transform var(--duration-base) var(--ease-spring);
}

.react-stars span:hover {
  transform: scale(1.15);
}

/* ===================================
   ITEM ANIMATIONS
   =================================== */

.style-large .item,
.menu-items .items .style-two .item,
.menu-items .items .style-list {
}

@keyframes item-fade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   RTL SUPPORT
   =================================== */

[dir="rtl"] .menu-items .items .style-list .side-left {
  padding-right: 0;
  padding-left: var(--space-3);
}

[dir="rtl"] .category .head .backward,
[dir="rtl"] .menu-items .head .backward,
[dir="rtl"] .head-feedback .backward {
  left: auto;
  right: 20px;
}

[dir="rtl"] .category .head .language,
[dir="rtl"] .menu-items .head .language {
  right: auto;
  left: 16px;
}

[dir="rtl"] .menu-items .items .style-list:hover {
  transform: translateX(-4px);
}

[dir="rtl"] * {
  text-rendering: optimizeLegibility;
}

/* ===================================
   TABLET & DESKTOP ENHANCEMENTS
   =================================== */

@media (min-width: 640px) {
  .category .category-list .category-item {
    height: 220px;
  }

  .menu-items .items .style-two {
    gap: var(--space-4);
  }

  .menu-items .items .style-two .image img,
  .menu-items .items .style-two .image .image-loading {
    height: 160px;
  }

  .style-large .item img,
  .style-large .item .image-loading {
    height: 250px;
  }
}

@media (min-width: 800px) and (max-width: 1280px) {
  .menu-items .items {
    width: 80%;
  }

  .category .category-list .category-item {
    height: 250px;
  }
}

/* Item Modal Styles */
.item-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 11, 18, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.item-modal-content {
  width: 100%;
  max-width: 500px;
  background: var(--bg-elevated);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-xl);
}

.item-modal-content .close-button {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  z-index: 100;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
}

.item-modal-content .close-button:hover {
  background: var(--accent-gold);
  color: var(--bg-deep);
  transform: rotate(90deg);
}

.item-swiper {
  width: 100%;
  height: 100%;
}

.slide-content {
  display: flex;
  flex-direction: column;
}

.image-container {
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
}

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

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--bg-elevated) 100%);
}

.item-details {
  padding: var(--space-6);
  text-align: center;
}

.item-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.item-prices {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.price-tag {
  background: var(--glass-bg);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.price-tag.active {
  border-color: var(--accent-gold);
}

.price-tag .label {
  font-size: var(--text-xs);
  color: var(--accent-gold);
  font-weight: 600;
}

.price-tag .value {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
}

.item-description {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

.swiper-navigation {
  position: absolute;
  top: 350px;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--space-4);
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background: var(--accent-gold);
  color: var(--bg-deep);
}

.swiper-pagination {
  bottom: 20px !important;
}

.swiper-pagination-bullet {
  background: white !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--accent-gold) !important;
  opacity: 1;
  width: 20px !important;
  border-radius: var(--radius-full) !important;
  transition: all 0.3s ease !important;
}

[dir="rtl"] .swiper-button-prev-custom svg,
[dir="rtl"] .swiper-button-next-custom svg {
  transform: rotate(180deg);
}

@media (max-width: 600px) {
  .item-modal-content {
    max-width: 100%;
    border-radius: 0;
  }

  .swiper-navigation {
    top: 50vh;
  }
}
.item-modal-content {
  border-radius: 1rem;
}
