/* O Giros tis Nikitis - Premium Parchment Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,700;1,400;1,700&display=swap');

:root {
  /* Light Mode - Traditional Greek Taverna Beige & Terracotta */
  --body-bg: #231810; /* Dark rustic table background */
  --bg-primary: linear-gradient(to right, #ebdcb9 0%, #f6ebd2 6%, #faf1dc 50%, #f6ebd2 94%, #ebdcb9 100%);
  --bg-secondary: rgba(253, 24cf, 230, 0.4); /* Glass-like parchment overlays */
  --bg-card: rgba(254, 251, 243, 0.75);
  --bg-tertiary: #ebd9b4; /* Scroll highlights */
  --text-primary: #3c2415; /* Sepia ink */
  --text-secondary: #6e4e37; /* Lighter sepia */
  --accent: #b04325; /* Burnt terracotta */
  --accent-rgb: 176, 67, 37;
  --accent-light: rgba(176, 67, 37, 0.15);
  --border: #dcbfa2;
  --parchment-border: #4e3220;
  --card-shadow: 0 4px 15px rgba(60, 36, 21, 0.06);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.3);
  --inset-parchment: inset 0 0 60px rgba(121, 85, 61, 0.35);
  --border-radius-sm: 4px; /* More vintage look */
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 70px;
}

[data-theme="dark"] {
  /* Dark Mode - Ancient Charred Papyrus & Copper */
  --body-bg: #0b0705; /* Black coals background */
  --bg-primary: linear-gradient(to right, #241a12 0%, #2f231a 6%, #36291e 50%, #2f231a 94%, #241a12 100%);
  --bg-secondary: rgba(46, 36, 28, 0.4);
  --bg-card: rgba(34, 26, 20, 0.8);
  --bg-tertiary: #1f1610;
  --text-primary: #ebdcb9; /* Ancient parchment white */
  --text-secondary: #a89482;
  --accent: #e67e22; /* Glowing copper */
  --accent-rgb: 230, 126, 34;
  --accent-light: rgba(230, 126, 34, 0.15);
  --border: #4d3929;
  --parchment-border: #8b6e56;
  --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.6);
  --inset-parchment: inset 0 0 60px rgba(0, 0, 0, 0.7);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--body-bg);
}

body {
  font-family: var(--font-sans);
  background-color: var(--body-bg);
  color: var(--text-primary);
  line-height: 1.5;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

/* Webkit Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--body-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* App Layout - Centered Scroll Sheet */
.app-container {
  max-width: 680px; /* Perfect width to mimic a vertical scroll */
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background: var(--bg-primary);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5), var(--inset-parchment);
  border-left: 2px solid var(--border);
  border-right: 2px solid var(--border);
  padding-bottom: 90px; /* space for order bar */
  transition: background 0.3s ease, max-width 0.3s ease;
}

@media (min-width: 1024px) {
  .app-container {
    max-width: 1200px; /* Expands to full screen grid width on desktop */
  }
}

/* Double vintage border decoration around main scroll container */
.app-container::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px double var(--parchment-border);
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
}

/* Header & Quick Tools */
header.header-nav {
  position: sticky;
  top: 0;
  height: var(--header-height);
  background: rgba(246, 235, 210, 0.85); /* Matches parchment */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  z-index: 100;
  transition: var(--transition);
}

[data-theme="dark"] header.header-nav {
  background: rgba(47, 35, 26, 0.85);
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  text-decoration: none;
  z-index: 5;
}

.header-tools {
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 5;
}

.btn-tool {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.btn-tool:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.lang-select-wrapper {
  position: relative;
}

.btn-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  width: auto;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
}

.lang-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  width: 260px;
  max-height: 380px;
  overflow-y: auto;
  display: none;
  z-index: 110;
  padding: 10px;
  animation: slideIn 0.25s ease-out;
}

.lang-dropdown.show {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: transparent;
  color: var(--text-primary);
  text-align: left;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
}

.lang-option:hover {
  background: var(--bg-tertiary);
  color: var(--accent);
}

.lang-option.active {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 600;
}

.lang-option .flag-icon {
  font-size: 1.2rem;
  margin-right: 10px;
}

/* Hero Intro Banner */
.hero-banner {
  padding: 50px 30px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Rolled scroll cylinder effect at top */
.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 100%);
  pointer-events: none;
}

.logo-wrapper {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.menu-logo-svg {
  width: 140px;
  height: 140px;
  fill: var(--text-primary);
  color: var(--text-primary);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.hero-banner h1 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  z-index: 5;
}

.hero-banner p.established {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
  z-index: 5;
}

.story-text {
  max-width: 520px;
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: center;
  font-style: italic;
  font-family: var(--font-serif);
  position: relative;
  padding: 15px 0;
  border-top: 1px dashed rgba(var(--accent-rgb), 0.25);
  border-bottom: 1px dashed rgba(var(--accent-rgb), 0.25);
  z-index: 5;
}

/* Search and Navigation Bar */
.sticky-controls {
  position: sticky;
  top: var(--header-height);
  background: var(--bg-primary);
  z-index: 95;
  padding: 15px 0 10px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.search-container {
  padding: 0 30px;
  margin-bottom: 12px;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background-color: var(--bg-card);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(var(--accent-rgb), 0.15);
}

.search-icon {
  position: absolute;
  left: 16px;
  color: var(--text-secondary);
  pointer-events: none;
}

.clear-search-btn {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  display: none;
  font-size: 1.1rem;
}

.clear-search-btn.show {
  display: block;
}

/* Categories Horizontal List */
.categories-nav {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  padding: 5px 30px 10px 30px;
  gap: 10px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.categories-nav::-webkit-scrollbar {
  display: none;
}

.btn-category {
  padding: 8px 18px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-category:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-category.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

/* Menu Display */
.menu-sections {
  padding: 20px 30px;
  z-index: 5;
  position: relative;
}

.menu-category-section {
  margin-bottom: 45px;
  scroll-margin-top: 150px;
}

.category-header {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-header::after {
  content: '♦';
  font-size: 0.8rem;
  color: var(--accent);
  margin-left: auto;
}

.category-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
  }
}

/* Item Card - Style to look like dynamic tag attached to the parchment */
.menu-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-sm);
  padding: 20px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  transition: var(--transition);
  position: relative;
}

.menu-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  opacity: 0.7;
}

.menu-item-card:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  border-color: var(--accent);
}

.item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.item-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.item-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.item-waiter-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  font-style: italic;
  margin-top: 1px;
}

.item-tags {
  display: flex;
  gap: 6px;
}

.tag-frozen, .tag-spicy, .tag-veg {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 2px;
}
.tag-frozen { background: rgba(52, 152, 219, 0.15); color: #2980b9; }
.tag-spicy { background: rgba(231, 76, 60, 0.15); color: #c0392b; }
.tag-veg { background: rgba(46, 204, 113, 0.15); color: #27ae60; }

.item-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.item-waiter-description {
  font-size: 0.84rem;
  color: var(--accent);
  font-style: italic;
  margin-top: 2px;
  opacity: 0.9;
}

/* Item Action / Price Area */
.item-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px dashed var(--border);
  padding-top: 14px;
  margin-top: auto;
}

.price-options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.price-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.price-value-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-amount {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* Quantity Control Buttons */
.qty-controls {
  display: flex;
  align-items: center;
  background: var(--bg-tertiary);
  border-radius: 4px;
  padding: 2px;
  border: 1px solid var(--border);
}

.btn-qty {
  width: 28px;
  height: 28px;
  border-radius: 2px;
  border: none;
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: bold;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.btn-qty:hover {
  background: var(--accent);
  color: #ffffff;
}

.qty-val {
  padding: 0 10px;
  font-weight: 700;
  min-width: 25px;
  text-align: center;
  font-size: 0.85rem;
}

.btn-add-initial {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 5px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
}

.btn-add-initial:hover {
  background: var(--accent);
  color: #ffffff;
}

.btn-add-initial svg {
  stroke: currentColor;
}

/* Floating Order Bar */
.floating-order-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: calc(100% - 40px);
  max-width: 450px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 4px;
  border: 1px solid var(--parchment-border);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-order-bar.show {
  transform: translateX(-50%) translateY(0);
}

.order-bar-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-count-badge {
  background: #ffffff;
  color: var(--accent);
  width: 28px;
  height: 28px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.order-bar-label {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.order-bar-total {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Order Overlay Drawer */
.order-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.order-drawer-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.order-drawer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 580px;
  background: var(--bg-primary);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.4), var(--inset-parchment);
  border-top-left-radius: var(--border-radius-md);
  border-top-right-radius: var(--border-radius-md);
  border-top: 2px solid var(--border);
  border-left: 2px solid var(--border);
  border-right: 2px solid var(--border);
  z-index: 310;
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Vintage border inside drawer */
.order-drawer::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px double var(--parchment-border);
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

.order-drawer.show {
  transform: translateX(-50%) translateY(0);
}

.drawer-header {
  padding: 20px 25px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.drawer-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}

.btn-close-drawer {
  background: var(--bg-tertiary);
  border: none;
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-close-drawer:hover {
  background: var(--accent);
  color: #ffffff;
}

.drawer-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px 25px;
  z-index: 5;
}

.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.drawer-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
  padding-right: 12px;
}

.drawer-item-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
}

.drawer-item-waiter-title {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: var(--accent);
  font-style: italic;
}

.drawer-item-option {
  font-size: 0.8rem;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 2px;
  align-self: flex-start;
  margin-top: 4px;
}

.drawer-item-price {
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 4px;
}

.drawer-item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-item-actions .qty-controls {
  background: var(--bg-card);
}

.empty-order-msg {
  text-align: center;
  color: var(--text-secondary);
  padding: 40px 20px;
  font-style: italic;
}

/* Drawer Footer */
.drawer-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
  z-index: 5;
}

.drawer-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.drawer-total-label {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.drawer-total-val {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
}

.drawer-footer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-drawer-primary {
  width: 100%;
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--parchment-border);
}

.btn-drawer-primary:hover {
  background: var(--text-primary);
}

.btn-drawer-secondary {
  width: 100%;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-drawer-secondary:hover {
  background: var(--border);
  color: var(--accent);
}

/* Chef/Waiter receipt modal styling */
.receipt-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  margin-bottom: 16px;
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--text-primary);
  max-height: 200px;
  overflow-y: auto;
  white-space: pre-wrap;
  border-left: 4px solid var(--accent);
}

/* Warnings Footer */
.menu-footer {
  padding: 40px 30px;
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border);
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 5;
  position: relative;
}

.footer-notices {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
  font-family: var(--font-sans);
}

.footer-notice-item {
  margin-bottom: 8px;
}

.footer-notice-item:last-child {
  margin-bottom: 0;
}

.footer-manager {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-top: 10px;
}

/* Quick toast notification */
.toast-notice {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 400;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow-lg);
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* No results state */
.no-results {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-secondary);
}

.no-results-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--accent);
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

.pulse-animation {
  animation: pulse 0.3s ease-in-out;
}
