/* =============================================
   SHISHA BAR - PREMIUM DIGITAL MENU STYLES
   ============================================= */

:root {
  --gold: #c8a96e;
  --gold-light: #e8c98a;
  --gold-dark: #9a7a45;
  --bg-dark: #080808;
  --bg-card: #111111;
  --bg-card2: #161616;
  --bg-glass: rgba(255,255,255,0.03);
  --border: rgba(200, 169, 110, 0.15);
  --border-hover: rgba(200, 169, 110, 0.4);
  --text-primary: #f0ece4;
  --text-secondary: #a09880;
  --text-muted: #5a5248;
  --shadow-gold: 0 0 30px rgba(200,169,110,0.12);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.5);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---- PARTICLES ---- */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}

/* ---- LOADING SCREEN ---- */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}
.loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.loading-logo {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-ring {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.ring2 {
  inset: 10px;
  border-top-color: var(--gold-light);
  animation-duration: 0.7s;
  animation-direction: reverse;
}
.loading-icon {
  color: var(--gold);
  font-size: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.loading-text {
  color: var(--text-secondary);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: pulse 1.5s ease infinite;
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  background: rgba(8,8,8,0.95);
}
.header-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.header-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-emblem {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,169,110,0.08);
  flex-shrink: 0;
  transition: var(--transition);
  overflow: hidden;
}
.logo-emblem:hover {
  background: rgba(200,169,110,0.15);
  box-shadow: 0 0 20px rgba(200,169,110,0.2);
}
.logo-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.logo-icon {
  color: var(--gold);
  font-size: 18px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
  line-height: 1;
}
.brand-subtitle {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-toggle {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-glass);
}
.search-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,169,110,0.08);
}

/* ---- SEARCH BAR ---- */
.search-bar {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--bg-card);
  border-top: 1px solid transparent;
}
.search-bar.open {
  max-height: 80px;
  border-top-color: var(--border);
}
.search-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-icon-input {
  color: var(--gold);
  font-size: 14px;
}
.search-inner input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}
.search-inner input::placeholder {
  color: var(--text-muted);
}
.search-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  padding: 4px 8px;
  transition: color 0.2s;
}
.search-close:hover { color: var(--text-secondary); }

/* ---- HERO ---- */
.hero-section {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,169,110,0.08) 0%, transparent 70%),
              linear-gradient(180deg, #0d0b08 0%, var(--bg-dark) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a96e' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 20px 40px;
}
.hero-badge {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 20px;
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 30px;
  background: rgba(200,169,110,0.05);
  animation: fadeInDown 0.8s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-subtitle {
  color: var(--text-secondary);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-divider span {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-divider span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-divider i {
  color: var(--gold);
  font-size: 10px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 12px;
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- CATEGORY NAV ---- */
.category-nav {
  position: sticky;
  top: 73px;
  z-index: 90;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.category-nav-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.category-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-secondary);
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}
.cat-tab .tab-emoji {
  font-size: 14px;
}
.cat-tab:hover {
  color: var(--text-primary);
  border-color: var(--border);
  background: var(--bg-glass);
}
.cat-tab.active {
  background: rgba(200,169,110,0.12);
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- SEARCH RESULTS BANNER ---- */
.search-results-banner {
  max-width: 900px;
  margin: 20px auto 0;
  padding: 12px 20px;
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold);
  font-size: 13px;
}
.clear-search-btn {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.clear-search-btn:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* ---- MENU MAIN ---- */
.menu-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 20px 60px;
  position: relative;
  z-index: 1;
}
.menu-sections {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* ---- CATEGORY SECTION ---- */
.menu-section {
  animation: fadeInUp 0.5s ease both;
}
.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.section-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.section-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,169,110,0.06);
  font-size: 20px;
  flex-shrink: 0;
}
.section-title-wrap {
  flex: 1;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}
.section-desc {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 3px;
  letter-spacing: 0.5px;
}
.section-count {
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.2);
  color: var(--gold);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ---- ITEMS GRID ---- */
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

/* When section has images -> larger cards */
.items-grid.has-images {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

/* ---- MENU ITEM CARD ---- */
.menu-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.menu-item-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
}

/* Card with image */
.menu-item-card.has-img .card-image-wrap {
  display: block;
}
.card-image-wrap {
  display: none;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-card2);
  position: relative;
}
.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-item-card:hover .card-image-wrap img {
  transform: scale(1.05);
}
.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.6) 0%, transparent 60%);
}

/* Card body */
.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.card-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  flex: 1;
}
.card-desc {
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.5;
  flex: 1;
}
.card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  gap: 8px;
}
.card-volume {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.5px;
}
.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

/* No image - horizontal layout */
.menu-item-card.no-img {
  flex-direction: row;
  align-items: center;
}
.menu-item-card.no-img .card-body {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}
.menu-item-card.no-img .card-header-row {
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.menu-item-card.no-img .card-footer-row {
  margin-top: 0;
  flex-shrink: 0;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.menu-item-card.no-img .card-price {
  font-size: 15px;
}

/* For list layout (no-image sections) */
.items-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.items-list .menu-item-card.no-img {
  border-radius: var(--radius-sm);
}

/* ---- BADGE ---- */
.item-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.badge-BELIEBT { background: rgba(200,169,110,0.15); color: var(--gold); border: 1px solid rgba(200,169,110,0.3); }
.badge-NEU { background: rgba(74,222,128,0.12); color: #4ade80; border: 1px solid rgba(74,222,128,0.25); }
.badge-PREMIUM { background: rgba(200,169,110,0.2); color: var(--gold-light); border: 1px solid rgba(200,169,110,0.4); }
.badge-ALKOHOLFREI { background: rgba(56,189,248,0.12); color: #38bdf8; border: 1px solid rgba(56,189,248,0.25); }
.badge-INFO { background: rgba(148,163,184,0.1); color: #94a3b8; border: 1px solid rgba(148,163,184,0.2); }

/* ---- GOLD DIVIDER ---- */
.gold-ornament {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 8px;
  margin: -20px 0;
}

/* ---- SHISHA INFO BANNER ---- */
.shisha-info-banner {
  background: linear-gradient(135deg, rgba(200,169,110,0.06), rgba(200,169,110,0.03));
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.shisha-info-banner::before {
  content: '💨';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  opacity: 0.1;
}
.shisha-info-banner h4 {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  margin-bottom: 8px;
}
.shisha-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.shisha-price-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 13px;
}
.shisha-price-item .sp-val {
  color: var(--text-primary);
  font-weight: 500;
}
.shisha-price-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}
@media (min-width: 600px) {
  .modal-overlay {
    align-items: center;
  }
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px 24px 20px 20px;
  width: 100%;
  max-width: 460px;
  max-height: 85vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.open .modal-card {
  transform: translateY(0);
}
.modal-card::-webkit-scrollbar { display: none; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(8,8,8,0.7);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--transition);
}
.modal-close:hover {
  background: var(--bg-card2);
  color: var(--text-primary);
}
.modal-image-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-card2);
  display: none;
}
.modal-image-wrap.has-img {
  display: block;
}
.modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-body {
  padding: 24px;
}
.modal-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.2;
}
.modal-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.modal-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.modal-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 13px;
}
.modal-meta-item i {
  color: var(--gold);
  font-size: 11px;
}
.modal-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.modal-price .price-label {
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.modal-price .price-value {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 40px 20px;
  text-align: center;
}
.footer-ornament {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 16px;
  opacity: 0.6;
}
.footer-text {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 16px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text-muted);
  letter-spacing: 4px;
}

/* ---- EMPTY STATE ---- */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.empty-state i {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.3;
  color: var(--gold);
}
.empty-state p {
  font-size: 16px;
  color: var(--text-secondary);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
  .items-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .items-grid.has-images {
    grid-template-columns: 1fr 1fr;
  }
  .brand-name {
    font-size: 17px;
  }
  .hero-section {
    min-height: 260px;
  }
  .section-title {
    font-size: 19px;
  }
}
@media (max-width: 400px) {
  .items-grid {
    grid-template-columns: 1fr;
  }
  .items-grid.has-images {
    grid-template-columns: 1fr;
  }
}

/* ---- SCROLL ANIMATIONS ---- */
.menu-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.menu-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* No results */
.no-results {
  padding: 60px 20px;
  text-align: center;
  color: var(--text-secondary);
}
.no-results i {
  font-size: 36px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Shimmer skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card2) 25%, rgba(255,255,255,0.04) 50%, var(--bg-card2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
