/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --c-bg: #FFF8F0;
  --c-surface: #FFFFFF;
  --c-text: #2D1B0E;
  --c-text-muted: #8B7355;
  --c-accent: #E8590C;
  --c-accent-hover: #D9480F;
  --c-accent-light: #FFF4E6;
  --c-warm: #FD7E14;
  --c-gold: #F59F00;
  --c-green: #2B8A3E;
  --c-red: #C92A2A;
  --c-yellow: #F08C00;
  --c-border: #F1E4D1;
  --c-shadow: rgba(45, 27, 14, 0.08);
  --c-shadow-lg: rgba(45, 27, 14, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;
  --max-w: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #E8590C 0%, #D9480F 40%, #C92A2A 100%);
  color: #fff;
  padding: 2.5rem 1.25rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(253, 126, 20, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245, 159, 0, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.flag-stripe {
  width: 48px;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--c-gold) 33%, var(--c-green) 33% 66%, var(--c-red) 66%);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.hero-emoji {
  display: inline-block;
  margin-right: 0.15em;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

/* ===== SEARCH ===== */
.search-wrap {
  position: relative;
  max-width: 560px;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--c-text-muted);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 14px 44px 14px 48px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--c-surface);
  color: var(--c-text);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  outline: none;
  transition: box-shadow 0.2s;
}

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

.search-input:focus {
  box-shadow: 0 4px 32px rgba(0,0,0,0.2), 0 0 0 3px rgba(253, 126, 20, 0.3);
}

.clear-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: var(--c-border);
  color: var(--c-text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.clear-btn:hover {
  background: #e0d5c3;
}

/* ===== FILTERS ===== */
.filters {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  border: 2px solid var(--c-border);
  border-radius: 50px;
  background: var(--c-surface);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--c-warm);
  color: var(--c-accent);
}

.filter-btn.active {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
}

/* ===== RESULTS META ===== */
.results-meta {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 1.25rem 0;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  font-weight: 600;
}

/* ===== GRID ===== */
.grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

/* ===== CARD ===== */
.card {
  background: var(--c-surface);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--c-border);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-warm), var(--c-gold));
  opacity: 0;
  transition: opacity 0.15s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--c-shadow-lg);
  border-color: var(--c-warm);
}

.card:hover::before {
  opacity: 1;
}

.card:active {
  transform: translateY(-1px);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.card-emoji {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.card-arrow {
  width: 20px;
  height: 20px;
  color: var(--c-text-muted);
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s, transform 0.15s;
}

.card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.card-names {
  flex: 1;
  min-width: 0;
}

.card-lt {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.3;
}

.card-en {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--c-accent-light);
  color: var(--c-accent);
}

/* Cuisine-specific tag colors */
.card-tag[data-cuisine="Lithuanian"] { background: #E9FAE8; color: #2B8A3E; }
.card-tag[data-cuisine="Georgian"] { background: #FFF3E0; color: #E65100; }
.card-tag[data-cuisine="Italian"] { background: #E8F5E9; color: #1B5E20; }
.card-tag[data-cuisine="Japanese"] { background: #FCE4EC; color: #AD1457; }
.card-tag[data-cuisine="American"] { background: #E3F2FD; color: #1565C0; }
.card-tag[data-cuisine="Middle Eastern"] { background: #FFF8E1; color: #F57F17; }
.card-tag[data-cuisine="Mexican"] { background: #FBE9E7; color: #BF360C; }
.card-tag[data-cuisine="Chinese"] { background: #FFEBEE; color: #C62828; }
.card-tag[data-cuisine="Korean"] { background: #F3E5F5; color: #6A1B9A; }
.card-tag[data-cuisine="Indian"] { background: #FFF3E0; color: #E65100; }
.card-tag[data-cuisine="Thai"] { background: #E0F7FA; color: #00695C; }
.card-tag[data-cuisine="Greek"] { background: #E8EAF6; color: #283593; }
.card-tag[data-cuisine="French"] { background: #EDE7F6; color: #4527A0; }
.card-tag[data-cuisine="Polish"] { background: #FCE4EC; color: #880E4F; }
.card-tag[data-cuisine="Turkish"] { background: #FFEBEE; color: #B71C1C; }

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 3rem 1.25rem 4rem;
  max-width: 400px;
  margin: 0 auto;
}

.empty-emoji {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.empty-state h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--c-text-muted);
  margin-bottom: 1.25rem;
}

.btn-reset {
  padding: 10px 24px;
  border: none;
  border-radius: 50px;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-reset:hover {
  background: var(--c-accent-hover);
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 2rem 1.25rem;
  color: var(--c-text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--c-border);
}

.footer a {
  color: var(--c-accent);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ===== RESTAURANT PANEL ===== */
.panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 27, 14, 0.4);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.panel-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 90vh;
  background: var(--c-bg);
  border-radius: 24px 24px 0 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 -8px 40px rgba(45, 27, 14, 0.2);
}

.panel.open {
  transform: translateY(0);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.25rem 0.75rem;
  flex-shrink: 0;
}

.panel-header::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: var(--c-border);
}

.panel-back {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--c-surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
  border: 1px solid var(--c-border);
}

.panel-back svg {
  width: 20px;
  height: 20px;
  color: var(--c-text);
}

.panel-back:hover {
  background: var(--c-border);
}

.panel-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.3;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panel-sort {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  flex-shrink: 0;
}

.sort-btn {
  padding: 6px 16px;
  border: 2px solid var(--c-border);
  border-radius: 50px;
  background: var(--c-surface);
  color: var(--c-text-muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.sort-btn:hover {
  border-color: var(--c-warm);
  color: var(--c-accent);
}

.sort-btn.active {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
}

.panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 1.25rem 2rem;
  -webkit-overflow-scrolling: touch;
}

/* ===== DISH HERO IMAGE ===== */
.dish-hero {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}

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

.dish-hero.hero-fallback {
  background: linear-gradient(135deg, var(--c-accent), var(--c-warm), var(--c-gold));
}

.dish-hero.hero-fallback .dish-hero-img {
  display: none;
}

.dish-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  gap: 0.75rem;
}

.dish-hero-emoji {
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.dish-hero-text {
  min-width: 0;
}

.dish-hero-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  line-height: 1.2;
}

.dish-hero-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ===== RESULTS COUNT IN PANEL ===== */
.results-count-panel {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* ===== COMPACT RESTAURANT CARD ===== */
.resto-card-compact {
  background: var(--c-surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  border-left: 4px solid #ccc;
  overflow: hidden;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  animation: fadeInUp 0.3s ease both;
}

.resto-card-compact.verified {
  border-left-color: var(--c-green);
}

.resto-card-compact.unverified {
  border-left-color: #d0d0d0;
}

.resto-card-compact:nth-child(3) { animation-delay: 0.04s; }
.resto-card-compact:nth-child(4) { animation-delay: 0.08s; }
.resto-card-compact:nth-child(5) { animation-delay: 0.12s; }
.resto-card-compact:nth-child(6) { animation-delay: 0.16s; }

.resto-card-main {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

/* Thumbnail photo */
.resto-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--c-border);
  flex-shrink: 0;
}

.resto-thumb-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--c-accent-light), var(--c-border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.resto-info {
  flex: 1;
  min-width: 0;
}

.resto-name {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.resto-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}

.resto-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.resto-stars {
  color: var(--c-gold);
  letter-spacing: -1px;
}

.resto-reviews {
  color: var(--c-text-muted);
  font-size: 0.78rem;
  font-weight: 400;
}

.resto-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 2px 8px;
  border-radius: 50px;
}

.resto-badge.open {
  background: #E9FAE8;
  color: var(--c-green);
}

.resto-badge.closed {
  background: #FFEBEE;
  color: var(--c-red);
}

.resto-address {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.resto-distance {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

/* ===== CONFIDENCE BADGE ===== */
.confidence-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.confidence-badge.verified-menu {
  background: #E9FAE8;
  color: var(--c-green);
}

.confidence-badge.verified-reviews {
  background: #f0faf0;
  color: #3a8a4e;
}

.confidence-badge.unconfirmed {
  background: #fff8e1;
  color: #b38600;
}

/* ===== VERIFICATION PROOF ===== */
.verification-proof {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--c-text-muted);
  background: #faf6f0;
  border-left: 3px solid var(--c-green);
  padding: 0.4rem 0.6rem;
  border-radius: 0 6px 6px 0;
  margin-top: 0.5rem;
  line-height: 1.45;
}

.verification-proof.secondary {
  border-left-color: #b0d0b0;
  margin-top: 0.3rem;
}

.verification-proof strong {
  color: var(--c-text);
  font-style: normal;
}

.proof-label {
  font-style: normal;
  font-weight: 600;
  color: var(--c-text);
  font-size: 0.75rem;
}

/* ===== RESULT SECTIONS ===== */
.results-section {
  margin-bottom: 0.5rem;
}

.section-header {
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 0.6rem 0;
  margin-bottom: 0.5rem;
}

.verified-header {
  color: var(--c-green);
}

.unverified-header {
  color: var(--c-text-muted);
  cursor: pointer;
  list-style: none;
}

.unverified-header::-webkit-details-marker {
  display: none;
}

.unverified-details > summary {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.unverified-note {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: #999;
  margin-bottom: 0.5rem;
}

/* ===== ACTION BUTTONS ===== */
.resto-actions {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.resto-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 6px 12px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}

.resto-maps-btn {
  background: var(--c-accent);
  color: #fff;
}

.resto-maps-btn:hover {
  background: var(--c-accent-hover);
}

.resto-menu-btn {
  background: var(--c-surface);
  color: var(--c-accent);
  border: 2px solid var(--c-border);
}

.resto-menu-btn:hover {
  border-color: var(--c-warm);
}

/* ===== LOADING SKELETONS ===== */
.skeleton-card-compact {
  background: var(--c-surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-border);
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.75rem;
}

.skeleton-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--c-border) 25%, #f5ead9 50%, var(--c-border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  flex-shrink: 0;
}

.skeleton-info {
  flex: 1;
  padding-top: 4px;
}

.skeleton-line {
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--c-border) 25%, #f5ead9 50%, var(--c-border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  margin-bottom: 0.5rem;
}

.skeleton-line.w60 { width: 60%; }
.skeleton-line.w80 { width: 80%; }
.skeleton-line.w40 { width: 40%; }

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

/* ===== PANEL ERROR ===== */
.panel-error {
  text-align: center;
  padding: 3rem 1.25rem;
  color: var(--c-text-muted);
}

.panel-error-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.panel-error h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--c-text);
  margin-bottom: 0.35rem;
}

.panel-no-results {
  text-align: center;
  padding: 3rem 1.25rem;
  color: var(--c-text-muted);
}

.panel-no-results-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem 1.5rem;
  }

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

  .search-input {
    font-size: 0.95rem;
    padding: 12px 40px 12px 44px;
  }

  .grid {
    grid-template-columns: 1fr;
    padding: 0.75rem 1rem 2rem;
    gap: 0.75rem;
  }

  .filters {
    padding: 1rem 1rem 0;
    gap: 0.4rem;
  }

  .filter-btn {
    padding: 7px 14px;
    font-size: 0.82rem;
  }

  .card {
    padding: 1rem;
  }

  .resto-thumb,
  .resto-thumb-placeholder,
  .skeleton-thumb {
    width: 64px;
    height: 64px;
  }

  .dish-hero {
    height: 160px;
  }

  .dish-hero-name {
    font-size: 1.2rem;
  }

  .resto-action-btn {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 3.5rem 2rem 2.5rem;
  }

  .grid {
    padding: 1rem 2rem 3rem;
  }

  .filters {
    padding: 1.5rem 2rem 0;
  }

  .results-meta {
    padding: 1rem 2rem 0;
  }

  .panel {
    max-width: 560px;
    left: auto;
    right: 0;
    max-height: 100vh;
    border-radius: 24px 0 0 0;
  }

  .panel-body {
    padding: 0.5rem 1.5rem 2rem;
  }

  .panel-header {
    padding: 1.25rem 1.5rem 0.75rem;
  }

  .panel-sort {
    padding: 0.5rem 1.5rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: fadeInUp 0.3s ease both;
}

.card:nth-child(2) { animation-delay: 0.02s; }
.card:nth-child(3) { animation-delay: 0.04s; }
.card:nth-child(4) { animation-delay: 0.06s; }
.card:nth-child(5) { animation-delay: 0.08s; }
.card:nth-child(6) { animation-delay: 0.10s; }
.card:nth-child(7) { animation-delay: 0.12s; }
.card:nth-child(8) { animation-delay: 0.14s; }
.card:nth-child(9) { animation-delay: 0.16s; }
.card:nth-child(10) { animation-delay: 0.18s; }

/* Prevent body scroll when panel is open */
body.panel-active {
  overflow: hidden;
}
