/* ============================================================
   Choply — Reusable Components
   ============================================================ */

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.fc-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navbar-h);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  z-index: var(--z-sticky);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}
.fc-navbar.scrolled {
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
}
[data-theme="dark"] .fc-navbar { background: var(--glass-bg-dark); }
[data-theme="dark"] .fc-navbar.scrolled { background: var(--bg-card); }

.fc-navbar .navbar-brand {
  font-family: var(--font-display);
  font-weight: var(--font-black);
  font-size: var(--text-2xl);
  color: var(--text-primary) !important;
  display: flex; align-items: center; gap: 8px;
}
.fc-navbar .brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px var(--primary-glow);
}
.fc-navbar .nav-link {
  font-weight: var(--font-medium);
  font-size: var(--text-sm);
  color: var(--text-secondary) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}
.fc-navbar .nav-link:hover,
.fc-navbar .nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-subtle);
}
.cart-badge-wrap { position: relative; display: inline-flex; }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: var(--font-bold);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--bg-card);
  transition: transform var(--transition-spring);
}
.cart-badge.bump { animation: cartBump 0.35s var(--ease-spring); }

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.fc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}
.fc-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition-fast);
}
.fc-btn:hover::after { background: rgba(255,255,255,0.12); }
.fc-btn:active { transform: scale(0.97); }

.fc-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 4px 16px var(--primary-glow);
}
.fc-btn-primary:hover {
  box-shadow: 0 8px 28px var(--primary-glow);
  transform: translateY(-1px);
  color: #fff;
}

.fc-btn-secondary {
  background: var(--secondary);
  color: #fff;
}
.fc-btn-secondary:hover { background: var(--secondary-mid); color: #fff; }

.fc-btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.fc-btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.fc-btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}
.fc-btn-ghost:hover { background: var(--bg-elevated); color: var(--text-primary); }

.fc-btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(6,214,160,0.3);
}
.fc-btn-accent:hover { box-shadow: 0 8px 28px rgba(6,214,160,0.4); transform: translateY(-1px); color: #fff; }

.fc-btn-lg { padding: 16px 36px; font-size: var(--text-base); }
.fc-btn-sm { padding: 8px 18px; font-size: var(--text-xs); }

.fc-btn-icon {
  width: 44px; height: 44px; padding: 0;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  color: var(--text-secondary);
}
.fc-btn-icon:hover { background: var(--primary-subtle); color: var(--primary); }

.fc-btn-icon-round {
  width: 44px; height: 44px; padding: 0;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  color: var(--text-secondary);
}
.fc-btn-icon-round:hover { background: var(--primary-subtle); color: var(--primary); }

.fc-btn:disabled, .fc-btn.loading {
  opacity: 0.6; pointer-events: none;
}
.fc-btn.loading::before {
  content: '';
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
}

/* ══════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════ */
.fc-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.fc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
[data-theme="dark"] .fc-card {
  background: var(--bg-card);
  border-color: var(--border);
}

/* ── Restaurant Card ── */
.fc-restaurant-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-spring), box-shadow var(--transition-base);
  cursor: pointer;
  position: relative;
}
.fc-restaurant-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fc-restaurant-card:hover .rc-img img { transform: scale(1.08); }

.rc-img { position: relative; height: 200px; overflow: hidden; }
.rc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.rc-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6) 100%);
}
.rc-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.rc-fav-btn {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  font-size: 16px;
  transition: transform var(--transition-spring), background var(--transition-fast);
  z-index: 2;
}
.rc-fav-btn:hover { transform: scale(1.15); }
.rc-fav-btn.active { color: var(--danger); background: #fff; }
.rc-fav-btn.active i { animation: heartPop 0.35s var(--ease-spring); }

.rc-body { padding: 16px; }
.rc-name {
  font-family: var(--font-display);
  font-weight: var(--font-bold);
  font-size: var(--text-lg);
  color: var(--text-primary);
  margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rc-cuisine { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 10px; }
.rc-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: var(--text-xs);
  color: var(--text-secondary);
  flex-wrap: wrap;
}
.rc-meta-item { display: flex; align-items: center; gap: 4px; }
.rc-rating { color: var(--warning); font-weight: var(--font-semibold); }

/* ── Food Card ── */
.fc-food-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition-base), transform var(--transition-fast);
  position: relative;
}
.fc-food-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.fc-food-card-img {
  width: 90px; height: 90px; flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.fc-food-card-img img { width: 100%; height: 100%; object-fit: cover; }
.fc-food-card-body { flex: 1; min-width: 0; }
.fc-food-card-name {
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  color: var(--text-primary);
  margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fc-food-card-desc {
  font-size: var(--text-sm); color: var(--text-muted);
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 8px;
}
.fc-food-card-price {
  font-family: var(--font-display);
  font-weight: var(--font-bold);
  font-size: var(--text-lg);
  color: var(--primary);
}
.fc-food-card-actions {
  display: flex; align-items: center; gap: 10px;
  margin-top: 10px;
}

/* ══════════════════════════════════════════════
   BADGES
══════════════════════════════════════════════ */
.fc-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}
.fc-badge-primary   { background: var(--primary-subtle); color: var(--primary); }
.fc-badge-accent    { background: var(--accent-subtle);  color: var(--accent-dark); }
.fc-badge-warning   { background: var(--warning-subtle); color: #B8860B; }
.fc-badge-danger    { background: var(--danger-subtle);  color: var(--danger); }
.fc-badge-success   { background: var(--success-subtle); color: #1A8040; }
.fc-badge-dark      { background: rgba(0,0,0,0.6); color: #fff; backdrop-filter: blur(4px); }
.fc-badge-glass     {
  background: rgba(255,255,255,0.85);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.5);
}
.fc-badge-new       { background: linear-gradient(135deg,var(--accent),var(--accent-dark)); color:#fff; }
.fc-badge-popular   { background: linear-gradient(135deg,var(--primary),var(--primary-light)); color:#fff; }

/* ══════════════════════════════════════════════
   INPUTS
══════════════════════════════════════════════ */
.fc-input-wrap {
  position: relative;
  margin-bottom: var(--space-4);
}
.fc-input-wrap .fc-input-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); font-size: 16px;
  pointer-events: none; z-index: 1;
  transition: color var(--transition-fast);
}
.fc-input-wrap.has-icon .fc-input { padding-left: 44px; }

.fc-input {
  width: 100%;
  padding: 14px 16px;
  font-size: var(--text-base);
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-base);
}
.fc-input::placeholder { color: var(--text-muted); }
.fc-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
  background: var(--bg-card);
}
.fc-input:focus + .fc-input-label,
.fc-input:not(:placeholder-shown) + .fc-input-label {
  top: -10px; left: 12px;
  font-size: var(--text-xs);
  padding: 0 4px;
  color: var(--primary);
  background: var(--bg-card);
}
.fc-input.is-error { border-color: var(--danger); box-shadow: 0 0 0 3px var(--danger-subtle); }
.fc-input.is-success { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-subtle); }

.fc-input-label {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  font-size: var(--text-sm); color: var(--text-muted);
  pointer-events: none; z-index: 1;
  transition: all var(--transition-fast);
  background: transparent;
}
.fc-input-wrap.has-icon .fc-input-label { left: 44px; }

.fc-input-error {
  font-size: var(--text-xs); color: var(--danger);
  margin-top: 4px; display: flex; align-items: center; gap: 4px;
}

/* ══════════════════════════════════════════════
   QUANTITY SELECTOR
══════════════════════════════════════════════ */
.fc-qty {
  display: inline-flex; align-items: center;
  background: var(--bg-elevated);
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  overflow: hidden;
}
.fc-qty-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: var(--font-bold);
  color: var(--primary);
  background: none; border: none; cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.fc-qty-btn:hover { background: var(--primary-subtle); }
.fc-qty-num {
  min-width: 36px; text-align: center;
  font-size: var(--text-sm); font-weight: var(--font-semibold);
  color: var(--text-primary);
}

/* ══════════════════════════════════════════════
   STAR RATING
══════════════════════════════════════════════ */
.fc-stars { display: inline-flex; gap: 2px; align-items: center; }
.fc-stars .star { color: #D1D5DB; font-size: 14px; }
.fc-stars .star.filled { color: var(--warning); }
.fc-stars .star.half { 
  position: relative; color: #D1D5DB;
}
.fc-stars .star.half::before {
  content: '\f005';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute; left: 0; top: 0;
  color: var(--warning);
  width: 50%; overflow: hidden;
}

/* ══════════════════════════════════════════════
   SKELETON LOADER
══════════════════════════════════════════════ */
.fc-skeleton {
  background: linear-gradient(90deg, var(--bg-elevated) 25%, var(--border) 50%, var(--bg-elevated) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
.fc-skeleton-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.fc-skeleton-img { height: 200px; }
.fc-skeleton-body { padding: 16px; }
.fc-skeleton-line { height: 14px; margin-bottom: 10px; }
.fc-skeleton-line.short { width: 60%; }
.fc-skeleton-line.shorter { width: 40%; }

/* ══════════════════════════════════════════════
   TOAST
══════════════════════════════════════════════ */
#toast-container {
  position: fixed; bottom: 24px; right: 24px;
  z-index: var(--z-toast);
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
}
.fc-toast {
  min-width: 300px; max-width: 380px;
  padding: 14px 18px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  display: flex; align-items: center; gap: 12px;
  pointer-events: all;
  animation: toastIn 0.35s var(--ease-spring);
}
.fc-toast.out { animation: toastOut 0.25s var(--ease-in) forwards; }
.fc-toast-icon { font-size: 20px; flex-shrink: 0; }
.fc-toast-msg { font-size: var(--text-sm); font-weight: var(--font-medium); color: var(--text-primary); flex: 1; }
.fc-toast-close { color: var(--text-muted); font-size: 14px; cursor: pointer; flex-shrink: 0; }
.fc-toast.success { border-left-color: var(--accent); }
.fc-toast.success .fc-toast-icon { color: var(--accent); }
.fc-toast.error   { border-left-color: var(--danger); }
.fc-toast.error .fc-toast-icon { color: var(--danger); }
.fc-toast.warning { border-left-color: var(--warning); }
.fc-toast.warning .fc-toast-icon { color: var(--warning); }
.fc-toast.info    { border-left-color: #3B82F6; }
.fc-toast.info .fc-toast-icon { color: #3B82F6; }

/* ══════════════════════════════════════════════
   CART DRAWER
══════════════════════════════════════════════ */
.fc-cart-drawer-overlay {
  position: fixed; inset: 0;
  background: var(--bg-overlay);
  z-index: var(--z-drawer);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition-base);
}
.fc-cart-drawer-overlay.open { opacity: 1; pointer-events: all; }

.fc-cart-drawer {
  position: fixed; top: 0; right: 0;
  width: min(420px, 92vw);
  height: 100vh;
  background: var(--bg-card);
  z-index: calc(var(--z-drawer) + 1);
  transform: translateX(100%);
  transition: transform var(--transition-slow) var(--ease-out);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-xl);
}
.fc-cart-drawer.open { transform: translateX(0); }

.fc-cart-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.fc-cart-drawer-title {
  font-family: var(--font-display); font-weight: var(--font-bold); font-size: var(--text-xl);
  display: flex; align-items: center; gap: 10px;
}
.fc-cart-drawer-body {
  flex: 1; overflow-y: auto; padding: 16px 24px;
}
.fc-cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--bg-card);
}
.fc-cart-empty {
  text-align: center; padding: 60px 20px;
  color: var(--text-muted);
}
.fc-cart-empty .empty-icon { font-size: 64px; margin-bottom: 16px; }
.fc-cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.fc-cart-item:last-child { border-bottom: none; }
.fc-cart-item-img {
  width: 60px; height: 60px; border-radius: var(--radius-sm);
  object-fit: cover; flex-shrink: 0;
}
.fc-cart-item-details { flex: 1; min-width: 0; }
.fc-cart-item-name { font-weight: var(--font-semibold); font-size: var(--text-sm); color: var(--text-primary); }
.fc-cart-item-price { font-size: var(--text-sm); color: var(--primary); font-weight: var(--font-semibold); }
.fc-cart-item-remove { color: var(--text-muted); cursor: pointer; font-size: 14px; }
.fc-cart-item-remove:hover { color: var(--danger); }

.fc-cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; font-size: var(--text-sm); color: var(--text-secondary);
}
.fc-cart-total-row.grand {
  font-weight: var(--font-bold); font-size: var(--text-base); color: var(--text-primary);
  border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px;
}

/* ══════════════════════════════════════════════
   PROGRESS STEPS (Order Tracking)
══════════════════════════════════════════════ */
.fc-progress-steps {
  display: flex; align-items: flex-start;
  position: relative; padding: 0 20px;
}
.fc-progress-steps::before {
  content: '';
  position: absolute; top: 22px; left: 60px; right: 60px;
  height: 3px; background: var(--border);
  border-radius: var(--radius-full);
}
.fc-progress-fill {
  position: absolute; top: 22px; left: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-full);
  transition: width 0.8s var(--ease-out);
}

.fc-step {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 10px; z-index: 1;
}
.fc-step-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 3px solid var(--border);
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--text-muted);
  transition: all var(--transition-slow);
  position: relative;
}
.fc-step.done .fc-step-circle {
  border-color: var(--accent); background: var(--accent); color: #fff;
}
.fc-step.active .fc-step-circle {
  border-color: var(--primary); background: var(--primary); color: #fff;
  box-shadow: 0 0 0 8px var(--primary-glow);
  animation: pulse 2s infinite;
}
.fc-step-label {
  font-size: var(--text-xs); font-weight: var(--font-medium);
  color: var(--text-muted); text-align: center;
}
.fc-step.done .fc-step-label,
.fc-step.active .fc-step-label { color: var(--text-primary); font-weight: var(--font-semibold); }

/* ══════════════════════════════════════════════
   BOTTOM NAV (Mobile)
══════════════════════════════════════════════ */
.fc-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 64px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-border);
  z-index: var(--z-sticky);
  padding: 0 8px;
}
@media (max-width: 768px) {
  .fc-bottom-nav { display: flex; align-items: center; justify-content: space-around; }
  body { padding-bottom: 64px; }
}
.fc-bottom-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 16px;
  color: var(--text-muted);
  font-size: var(--text-xs); font-weight: var(--font-medium);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast);
  cursor: pointer;
  position: relative;
}
.fc-bottom-nav-item i { font-size: 20px; }
.fc-bottom-nav-item.active { color: var(--primary); }
.fc-bottom-nav-item.active i { animation: scaleInSpring 0.35s var(--ease-spring); }

/* ══════════════════════════════════════════════
   AVATAR
══════════════════════════════════════════════ */
.fc-avatar {
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.fc-avatar-sm  { width: 32px;  height: 32px;  }
.fc-avatar-md  { width: 48px;  height: 48px;  }
.fc-avatar-lg  { width: 64px;  height: 64px;  }
.fc-avatar-xl  { width: 96px;  height: 96px;  }
.fc-avatar-2xl { width: 120px; height: 120px; }

/* ══════════════════════════════════════════════
   TAB BAR
══════════════════════════════════════════════ */
.fc-tabs {
  display: flex; gap: 4px;
  background: var(--bg-elevated);
  padding: 4px;
  border-radius: var(--radius-full);
  overflow-x: auto;
}
.fc-tab {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: var(--font-medium);
  color: var(--text-secondary);
  cursor: pointer; white-space: nowrap;
  transition: all var(--transition-fast);
  border: none; background: transparent;
}
.fc-tab.active {
  background: var(--bg-card);
  color: var(--primary);
  font-weight: var(--font-semibold);
  box-shadow: var(--shadow-sm);
}
.fc-tab:hover:not(.active) { color: var(--text-primary); background: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════════
   SEARCH BAR
══════════════════════════════════════════════ */
.fc-search-bar {
  display: flex; align-items: center;
  background: var(--bg-card);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 6px;
}
.fc-search-input {
  flex: 1; border: none; outline: none; background: transparent;
  padding: 10px 16px; font-size: var(--text-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
}
.fc-search-input::placeholder { color: var(--text-muted); }
.fc-search-divider { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }
.fc-search-btn {
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; border: none; cursor: pointer;
  font-weight: var(--font-semibold); font-size: var(--text-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
}
.fc-search-btn:hover { box-shadow: 0 4px 16px var(--primary-glow); transform: scale(1.02); }

/* ══════════════════════════════════════════════
   STATUS BADGE
══════════════════════════════════════════════ */
.status-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: var(--font-semibold);
}
.status-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
}
.status-delivered { background: var(--success-subtle); color: #1A8040; }
.status-delivered::before { background: var(--success); }
.status-processing { background: var(--warning-subtle); color: #B8860B; }
.status-processing::before { background: var(--warning); animation: pulse 1.5s infinite; }
.status-cancelled  { background: var(--danger-subtle); color: var(--danger); }
.status-cancelled::before  { background: var(--danger); }
.status-on-the-way { background: var(--primary-subtle); color: var(--primary); }
.status-on-the-way::before { background: var(--primary); animation: pulse 1.5s infinite; }
