/* ================================================================
   SRM Good Foods — Complete Design System (Vanilla CSS)
   Replaces TailwindCSS with hand-crafted styles matching the
   exact same visual output: colors, spacing, typography, etc.
   ================================================================ */

/* ----- CSS Custom Properties (Design Tokens) ----- */
:root {
  /* Brand Colors */
  --color-primary: #942626;
  --color-primary-hover: #7a1f1f;
  --color-primary-light: #991b1b;
  --color-gold: #f6ce72;
  --color-gold-20: rgba(246, 206, 114, 0.2);
  --color-gold-30: rgba(246, 206, 114, 0.3);
  --color-cream: #faf7f2;

  /* Stone Palette */
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;

  /* Status Colors */
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065f46;

  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;

  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-200: #fecaca;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --red-800: #991b1b;

  --blue-100: #dbeafe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-800: #1e40af;

  --orange-500: #f97316;

  /* Spacing */
  --max-w-7xl: 80rem;
  --max-w-5xl: 64rem;
  --max-w-4xl: 56rem;
  --max-w-xl: 36rem;
  --max-w-md: 28rem;
  --max-w-sm: 24rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-lg: 0.625rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);

  /* Font */
  --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-mono: ui-monospace, 'Cascadia Code', 'Consolas', monospace;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--color-cream);
  color: var(--stone-900);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

::selection { background: var(--color-primary-light); color: #fff; }

img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }
a { text-decoration: none; color: inherit; }

/* ----- Animations ----- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { opacity: 0.5; } }

.animate-fade-in { animation: fadeIn 0.25s ease-out; }
.animate-spin { animation: spin 1s linear infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* ----- Layout Utilities ----- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-0\.5 { gap: 0.125rem; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.min-h-screen { min-height: 100vh; }
.h-full { height: 100%; }
.w-full { width: 100%; }
.min-w-0 { min-width: 0; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.select-none { user-select: none; }
.select-all { user-select: all; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }
.cursor-pointer { cursor: pointer; }
.shrink-0 { flex-shrink: 0; }
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-1\.5 > * + * { margin-top: 0.375rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-2\.5 > * + * { margin-top: 0.625rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }

/* ----- Sizing ----- */
.max-w-7xl { max-width: var(--max-w-7xl); }
.max-w-5xl { max-width: var(--max-w-5xl); }
.max-w-4xl { max-width: var(--max-w-4xl); }
.max-w-xl { max-width: var(--max-w-xl); }
.max-w-md { max-width: var(--max-w-md); }
.max-w-sm { max-width: var(--max-w-sm); }

/* ----- Padding & Margin ----- */
.p-1 { padding: 0.25rem; }
.p-1\.5 { padding: 0.375rem; }
.p-2 { padding: 0.5rem; }
.p-2\.5 { padding: 0.625rem; }
.p-3 { padding: 0.75rem; }
.p-3\.5 { padding: 0.875rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.pl-10 { padding-left: 2.5rem; }
.pl-14 { padding-left: 3.5rem; }
.pr-1 { padding-right: 0.25rem; }
.pr-3\.5 { padding-right: 0.875rem; }
.pr-4 { padding-right: 1rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-1\.5 { margin-top: 0.375rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.my-5 { margin-top: 1.25rem; margin-bottom: 1.25rem; }
.m-4 { margin: 1rem; }

/* ----- Typography ----- */
.font-sans { font-family: var(--font-sans); }
.font-serif { font-family: var(--font-serif); }
.font-mono { font-family: var(--font-mono); }

.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-none { line-height: 1; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }
.underline { text-decoration: underline; }

/* ----- Colors ----- */
.text-white { color: #fff; }
.text-stone-200 { color: var(--stone-200); }
.text-stone-300 { color: var(--stone-300); }
.text-stone-400 { color: var(--stone-400); }
.text-stone-500 { color: var(--stone-500); }
.text-stone-600 { color: var(--stone-600); }
.text-stone-700 { color: var(--stone-700); }
.text-stone-800 { color: var(--stone-800); }
.text-stone-900 { color: var(--stone-900); }
.text-primary { color: var(--color-primary); }
.text-gold { color: var(--color-gold); }
.text-emerald-300 { color: var(--emerald-300); }
.text-emerald-400 { color: var(--emerald-400); }
.text-emerald-600 { color: var(--emerald-600); }
.text-emerald-700 { color: var(--emerald-700); }
.text-emerald-800 { color: var(--emerald-800); }
.text-amber-300 { color: var(--amber-300); }
.text-amber-400 { color: var(--amber-400); }
.text-amber-600 { color: var(--amber-600); }
.text-amber-700 { color: var(--amber-700); }
.text-amber-800 { color: var(--amber-800); }
.text-amber-900 { color: var(--amber-900); }
.text-red-600 { color: var(--red-600); }
.text-red-700 { color: var(--red-700); }
.text-red-800 { color: var(--red-800); }
.text-blue-800 { color: var(--blue-800); }

.bg-white { background-color: #fff; }
.bg-cream { background-color: var(--color-cream); }
.bg-stone-50 { background-color: var(--stone-50); }
.bg-stone-100 { background-color: var(--stone-100); }
.bg-stone-200 { background-color: var(--stone-200); }
.bg-stone-800 { background-color: var(--stone-800); }
.bg-stone-900 { background-color: var(--stone-900); }
.bg-primary { background-color: var(--color-primary); }
.bg-primary-hover { background-color: var(--color-primary-hover); }
.bg-emerald-50 { background-color: var(--emerald-50); }
.bg-emerald-100 { background-color: var(--emerald-100); }
.bg-emerald-600 { background-color: var(--emerald-600); }
.bg-amber-50 { background-color: var(--amber-50); }
.bg-amber-100 { background-color: var(--amber-100); }
.bg-amber-500 { background-color: var(--amber-500); }
.bg-amber-600 { background-color: var(--amber-600); }
.bg-red-50 { background-color: var(--red-50); }
.bg-red-100 { background-color: var(--red-100); }
.bg-red-600 { background-color: var(--red-600); }
.bg-blue-100 { background-color: var(--blue-100); }
.bg-blue-600 { background-color: var(--blue-600); }

.border-stone-100 { border-color: var(--stone-100); }
.border-stone-200 { border-color: var(--stone-200); }
.border-stone-300 { border-color: var(--stone-300); }
.border-stone-700 { border-color: var(--stone-700); }
.border-stone-800 { border-color: var(--stone-800); }
.border-primary { border-color: var(--color-primary); }
.border-emerald-200 { border-color: var(--emerald-200); }
.border-amber-200 { border-color: var(--amber-200); }
.border-amber-300 { border-color: var(--amber-300); }
.border-red-200 { border-color: var(--red-200); }

/* ----- Borders & Radius ----- */
.border { border: 1px solid var(--stone-200); }
.border-b { border-bottom: 1px solid var(--stone-200); }
.border-t { border-top: 1px solid var(--stone-200); }
.border-l { border-left: 1px solid var(--stone-200); }
.border-2 { border-width: 2px; border-style: solid; }
.border-dashed { border-style: dashed; }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-3xl { border-radius: var(--radius-3xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-xs { box-shadow: var(--shadow-xs); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.05); }

/* ----- Common Transitions ----- */
.transition-all { transition: all 0.15s ease; }
.transition-colors { transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease; }
.transition-transform { transition: transform 0.3s ease; }

/* ----- Opacity ----- */
.opacity-15 { opacity: 0.15; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }

/* ----- Backdrop ----- */
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }

/* ----- Scrollbar ----- */
.scrollbar-none::-webkit-scrollbar { display: none; }
.scrollbar-none { -ms-overflow-style: none; scrollbar-width: none; }

/* ================================================================
   COMPONENT STYLES
   ================================================================ */

/* ----- Header / Navbar ----- */
.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(231, 229, 228, 0.8);
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: var(--shadow-sm);
}
.site-header .header-inner {
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 0 1rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .site-header .header-inner { padding: 0 1.5rem; }
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  user-select: none;
}
.brand-name { font-weight: 800; font-size: 1.125rem; color: var(--stone-900); letter-spacing: -0.025em; font-family: var(--font-serif); display: block; line-height: 1; }
.brand-tagline { font-size: 10px; font-weight: 600; color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-top: 0.25rem; }

/* Center Nav Pills */
.center-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  background: rgba(245, 245, 244, 0.8);
  padding: 0.25rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--stone-200);
  font-size: 0.75rem;
  font-weight: 700;
}
@media (min-width: 768px) { .center-nav { display: flex; } }

.nav-pill {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  transition: all 0.15s ease;
  color: var(--stone-600);
  background: transparent;
  font-weight: 700;
  font-size: 0.75rem;
}
.nav-pill:hover { color: var(--stone-900); }
.nav-pill.active { background: #fff; color: var(--color-primary); box-shadow: var(--shadow-sm); }

/* Cart Button */
.cart-btn {
  position: relative;
  padding: 0.625rem;
  background: var(--stone-100);
  color: var(--stone-800);
  border-radius: var(--radius-xl);
  transition: background-color 0.15s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-btn:hover { background: var(--stone-200); }
.cart-badge {
  background: var(--color-primary);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-full);
}

/* Sign In Button */
.btn-signin {
  padding: 0.625rem 1rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.btn-signin:hover { background: var(--color-primary-hover); }

/* ----- Hero Banner ----- */
.hero-banner {
  background: linear-gradient(to right, var(--color-primary), var(--color-primary-hover));
  color: #fff;
  border-radius: var(--radius-3xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .hero-banner { padding: 2rem; } }

.hero-sparkle-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background: var(--color-gold-20);
  border: 1px solid var(--color-gold-30);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-serif);
  letter-spacing: -0.025em;
  line-height: 1.25;
}
@media (min-width: 640px) { .hero-title { font-size: 1.875rem; } }

.hero-info-pill {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(0,0,0,0.2);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
  font-size: 0.75rem;
}

/* ----- Food Card ----- */
.food-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(231, 229, 228, 0.9);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.15s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.food-card:hover { box-shadow: var(--shadow-md); }

.food-card-img {
  height: 11rem;
  background: var(--stone-100);
  position: relative;
  overflow: hidden;
}
.food-card-img img { width: 100%; height: 100%; object-fit: cover; }

.food-card-time-badge {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-lg);
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.food-card-time-badge.available { background: rgba(6, 95, 70, 0.9); color: #fff; }
.food-card-time-badge.unavailable { background: rgba(28, 25, 23, 0.8); color: var(--amber-300); }

.food-card-category {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
}

.food-card-body { padding: 1rem; }
.food-card-name { font-weight: 700; color: var(--stone-900); font-size: 1rem; line-height: 1.375; }
.food-card-price { color: var(--color-primary); font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.food-card-desc { font-size: 0.75rem; color: var(--stone-500); margin-top: 0.375rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.625; }

.food-card-footer {
  padding: 1rem;
  padding-top: 0;
  border-top: 1px solid var(--stone-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.food-card-footer .status-text { font-size: 11px; font-weight: 500; color: var(--stone-400); }

/* Add to cart / Qty controls */
.btn-add {
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.btn-add:hover { background: var(--color-primary-hover); }
.btn-add:disabled { background: var(--stone-200); color: var(--stone-400); cursor: not-allowed; }

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 0.25rem;
  box-shadow: var(--shadow-sm);
}
.qty-btn {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  transition: background 0.15s;
  color: #fff;
}
.qty-btn:hover { background: rgba(0,0,0,0.2); }
.qty-count { font-size: 0.75rem; font-weight: 700; width: 1rem; text-align: center; }

/* ----- Floating Cart Pill ----- */
.floating-cart {
  position: fixed;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.floating-cart-btn {
  pointer-events: auto;
  background: var(--color-primary);
  color: #fff;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-2xl);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.15s;
  border: 2px solid rgba(246, 206, 114, 0.4);
}
.floating-cart-btn:hover { background: var(--color-primary-hover); transform: scale(1.02); }
.floating-cart-btn:active { transform: scale(0.95); }

/* ----- Cart Drawer ----- */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  overflow: hidden;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.25s ease-out;
  display: flex;
  justify-content: flex-end;
}
.cart-panel {
  width: 100%;
  max-width: var(--max-w-md);
  background: var(--color-cream);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-2xl);
  border-left: 1px solid var(--stone-200);
}
.cart-header {
  padding: 1rem;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

/* ----- Modal ----- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.25s ease-out;
}
.modal-panel {
  background: #fff;
  border-radius: var(--radius-3xl);
  max-width: var(--max-w-md);
  width: 100%;
  padding: 1.5rem;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--stone-200);
  position: relative;
  text-align: center;
  max-height: 92vh;
  overflow-y: auto;
}
@media (min-width: 640px) { .modal-panel { padding: 1.75rem; } }
.modal-panel-sm { max-width: var(--max-w-sm); }

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  color: var(--stone-400);
  padding: 0.375rem;
  border-radius: var(--radius-full);
  transition: all 0.15s;
}
.modal-close:hover { color: var(--stone-700); background: var(--stone-100); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.75rem;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-primary { background: var(--color-primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover:not(:disabled) { background: var(--color-primary-hover); }
.btn-dark { background: var(--stone-900); color: #fff; box-shadow: var(--shadow-md); }
.btn-dark:hover:not(:disabled) { background: #000; }
.btn-outline { background: transparent; color: var(--stone-600); border: 1px solid var(--stone-200); }
.btn-outline:hover { background: var(--stone-50); }
.btn-danger { background: var(--red-600); color: #fff; box-shadow: var(--shadow-md); }
.btn-danger:hover:not(:disabled) { background: var(--red-700); }
.btn-success { background: var(--emerald-600); color: #fff; box-shadow: var(--shadow-md); }
.btn-success:hover:not(:disabled) { background: var(--emerald-700); }
.btn-amber { background: var(--amber-600); color: var(--stone-900); box-shadow: var(--shadow-md); }
.btn-amber:hover:not(:disabled) { background: var(--amber-500); }
.btn-blue { background: var(--blue-600); color: #fff; box-shadow: var(--shadow-md); }
.btn-blue:hover:not(:disabled) { background: var(--blue-500); }

.btn-sm { padding: 0.5rem 0.75rem; font-size: 0.75rem; }
.btn-lg { padding: 0.875rem 1rem; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* Google Sign-in Button */
.btn-google {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: #fff;
  border: 2px solid var(--stone-200);
  color: var(--stone-800);
  border-radius: var(--radius-2xl);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.15s;
  box-shadow: var(--shadow-sm);
  font-size: 0.875rem;
}
.btn-google:hover { background: var(--stone-50); border-color: var(--stone-400); }
.btn-google:active { transform: scale(0.99); }
.btn-google:disabled { opacity: 0.6; }

/* ----- Input / Form ----- */
.form-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  background: var(--stone-50);
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--stone-900);
  outline: none;
  transition: all 0.15s;
}
.form-input:focus { background: #fff; box-shadow: 0 0 0 2px var(--color-primary); border-color: var(--color-primary); }
.form-input::placeholder { color: var(--stone-400); }

.form-select {
  width: 100%;
  padding: 0.625rem;
  background: var(--stone-50);
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--stone-800);
  outline: none;
}
.form-select:focus { box-shadow: 0 0 0 2px var(--color-primary); }

.form-textarea {
  width: 100%;
  padding: 0.5rem;
  background: var(--stone-50);
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
  color: var(--stone-800);
  outline: none;
  resize: vertical;
}
.form-textarea:focus { box-shadow: 0 0 0 2px var(--color-primary); }

.form-label { display: block; font-size: 0.75rem; font-weight: 700; color: var(--stone-700); margin-bottom: 0.375rem; }
.form-label-sm { font-size: 10px; color: var(--stone-400); display: block; margin-bottom: 0.125rem; }

.checkbox { width: 1rem; height: 1rem; accent-color: var(--color-primary); cursor: pointer; }
.checkbox-lg { width: 1.25rem; height: 1.25rem; }

/* ----- Status Badges ----- */
.badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-emerald { background: var(--emerald-100); color: var(--emerald-800); }
.badge-red { background: var(--red-100); color: var(--red-800); }
.badge-amber { background: var(--amber-100); color: var(--amber-800); }
.badge-blue { background: var(--blue-100); color: var(--blue-800); }
.badge-stone { background: var(--stone-100); color: var(--stone-700); }
.badge-amber-pulse { background: var(--amber-500); color: var(--stone-900); animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.badge-orange { background: var(--orange-500); color: var(--stone-900); }

/* ----- Alert Boxes ----- */
.alert { padding: 0.75rem; border-radius: var(--radius-xl); display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; }
.alert-error { background: var(--red-50); border: 1px solid var(--red-200); color: var(--red-700); }
.alert-warning { background: var(--amber-50); border: 1px solid var(--amber-200); color: var(--amber-900); }
.alert-success { background: var(--emerald-50); border: 1px solid var(--emerald-200); color: var(--emerald-800); font-weight: 700; }

/* ----- Tables ----- */
.data-table { width: 100%; text-align: left; font-size: 0.75rem; }
.data-table thead { background: var(--stone-50); border-bottom: 1px solid var(--stone-200); }
.data-table th { padding: 0.875rem; color: var(--stone-500); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.data-table td { padding: 0.875rem; }
.data-table tbody tr { border-bottom: 1px solid var(--stone-100); transition: background 0.1s; }
.data-table tbody tr:hover { background: rgba(250, 250, 249, 0.5); }

/* ----- Footer ----- */
.site-footer {
  background: var(--stone-900);
  color: var(--stone-400);
  padding: 3rem 0;
  border-top: 1px solid var(--stone-800);
  font-size: 0.75rem;
}
.footer-inner {
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .footer-inner { grid-template-columns: repeat(2, 1fr); padding: 0 1.5rem; } }
@media (min-width: 768px) { .footer-inner { grid-template-columns: repeat(4, 1fr); } }

.footer-section h4 { font-weight: 700; color: var(--stone-200); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; font-size: 11px; }
.footer-section ul { list-style: none; }
.footer-section ul li + li { margin-top: 0.5rem; }
.footer-section button { color: var(--stone-400); background: none; border: none; font-size: 11px; cursor: pointer; }
.footer-section button:hover { color: #fff; }

.footer-bottom {
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 2rem 1rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--stone-800);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 11px;
  color: var(--stone-500);
}
@media (min-width: 640px) { .footer-bottom { padding: 2rem 1.5rem 0; } }

.ops-portal-link {
  color: var(--stone-600);
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 10px;
  cursor: pointer;
  background: none;
  border: none;
}
.ops-portal-link:hover { color: var(--stone-400); }

/* ----- Kitchen Portal (Dark Theme) ----- */
.kitchen-page { min-height: 100vh; background: var(--stone-900); color: var(--stone-100); padding-bottom: 4rem; }
.kitchen-topbar { background: var(--stone-800); border-bottom: 1px solid rgba(68, 64, 60, 0.8); padding: 1rem; position: sticky; top: 0; z-index: 30; box-shadow: var(--shadow-md); }
@media (min-width: 640px) { .kitchen-topbar { padding: 1rem 1.5rem; } }

.kitchen-card {
  background: var(--stone-800);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--stone-800);
  transition: all 0.15s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.kitchen-card.pending { border-color: rgba(245, 158, 11, 0.8); box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.4); }
.kitchen-card.preparing { border-color: rgba(249, 115, 22, 0.8); }
.kitchen-card.dispatched { border-color: rgba(59, 130, 246, 0.5); }
.kitchen-card.done { border-color: var(--stone-800); opacity: 0.75; }

.kitchen-card-header { padding: 1rem; background: rgba(28, 25, 23, 0.6); border-bottom: 1px solid var(--stone-800); display: flex; align-items: center; justify-content: space-between; }
.kitchen-card-body { padding: 1rem; flex: 1; }
.kitchen-card-actions { padding: 1rem; background: rgba(28, 25, 23, 0.8); border-top: 1px solid var(--stone-800); display: flex; flex-wrap: wrap; gap: 0.5rem; }

.kitchen-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--stone-300);
  background: rgba(41, 37, 36, 0.8);
  padding: 0.625rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(68, 64, 60, 0.6);
}

.kitchen-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(41, 37, 36, 0.4);
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
}
.kitchen-item-qty {
  width: 1.25rem;
  height: 1.25rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 0.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* Filter Pills (Kitchen) */
.filter-pills {
  display: flex;
  align-items: center;
  background: var(--stone-800);
  padding: 0.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--stone-700);
  font-size: 0.75rem;
}
.filter-pill {
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  transition: all 0.15s;
  color: var(--stone-400);
  background: transparent;
}
.filter-pill:hover { color: #fff; }
.filter-pill.active { background: var(--color-primary); color: #fff; }

/* ----- Delivery Dashboard ----- */
.delivery-page { min-height: 100vh; background: var(--color-cream); color: var(--stone-900); padding-bottom: 5rem; }
.delivery-topbar { background: var(--stone-900); color: #fff; padding: 1rem; position: sticky; top: 0; z-index: 30; box-shadow: var(--shadow-md); }
@media (min-width: 640px) { .delivery-topbar { padding: 1rem 1.5rem; } }

.delivery-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--stone-300);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.15s;
}
.delivery-card:hover { box-shadow: var(--shadow-md); }
.delivery-card.done { border-color: var(--stone-200); opacity: 0.8; }

.stat-card {
  background: #fff;
  padding: 1rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(231, 229, 228, 0.9);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.stat-icon {
  padding: 0.75rem;
  border-radius: var(--radius-xl);
}
.stat-icon.amber { background: var(--amber-50); color: var(--amber-600); }
.stat-icon.emerald { background: var(--emerald-50); color: var(--emerald-600); }
.stat-label { font-size: 11px; font-weight: 700; color: var(--stone-400); text-transform: uppercase; letter-spacing: 0.05em; display: block; }
.stat-value { font-size: 1.25rem; font-weight: 900; color: var(--stone-900); }

/* ----- Admin Portal ----- */
.admin-page { min-height: 100vh; background: var(--color-cream); color: var(--stone-900); padding-bottom: 5rem; }
.admin-topbar { background: var(--stone-900); color: #fff; padding: 1rem; position: sticky; top: 0; z-index: 30; box-shadow: var(--shadow-md); }
@media (min-width: 640px) { .admin-topbar { padding: 1rem 1.5rem; } }

.admin-tabs {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  background: rgba(231, 229, 228, 0.7);
  padding: 0.25rem;
  border-radius: var(--radius-2xl);
  font-size: 0.75rem;
  font-weight: 700;
}
.admin-tab {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  white-space: nowrap;
  transition: all 0.15s;
  color: var(--stone-600);
  background: transparent;
  font-weight: 700;
  font-size: 0.75rem;
}
.admin-tab.active { background: #fff; color: var(--color-primary); box-shadow: var(--shadow-sm); }
.admin-tab.active-danger { background: #fff; color: var(--red-700); box-shadow: var(--shadow-sm); }

/* Admin Stat Cards */
.admin-stat {
  background: #fff;
  padding: 1.25rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--stone-200);
  box-shadow: var(--shadow-sm);
}

/* ----- Tracking Page ----- */
.order-stepper { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; text-align: center; position: relative; }
.step-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  margin: 0 auto;
}
.step-circle.active { background: var(--color-primary); color: #fff; box-shadow: var(--shadow-md); }
.step-circle.delivered { background: var(--emerald-600); color: #fff; box-shadow: var(--shadow-md); }
.step-circle.inactive { background: var(--stone-100); color: var(--stone-400); }

/* OTP Box */
.otp-box {
  padding: 1rem;
  background: linear-gradient(to right, var(--amber-50), #fff7ed);
  border: 2px dashed var(--amber-300);
  border-radius: var(--radius-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) { .otp-box { flex-direction: row; } }

.otp-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--amber-200);
  box-shadow: var(--shadow-inner);
}
.otp-digits { font-size: 1.5rem; font-family: var(--font-mono); font-weight: 900; letter-spacing: 0.1em; color: var(--stone-900); }

/* OTP Input (delivery) */
.otp-input {
  width: 100%;
  text-align: center;
  font-size: 1.875rem;
  font-family: var(--font-mono);
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 0.75rem;
  border: 2px solid var(--stone-300);
  border-radius: var(--radius-2xl);
  outline: none;
  color: var(--stone-900);
}
.otp-input:focus { border-color: var(--emerald-600); }

/* ----- Skeleton Loading ----- */
.skeleton { background: var(--stone-200); border-radius: var(--radius-xl); animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.skeleton-card { padding: 1rem; background: #fff; border-radius: var(--radius-2xl); border: 1px solid rgba(231, 229, 228, 0.9); box-shadow: var(--shadow-sm); }

/* ----- Logo ----- */
.logo img { height: 3.5rem; width: auto; max-width: 10rem; object-fit: contain; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1)); user-select: none; }
.logo-sm img { height: 2.5rem; max-width: 7.5rem; }
.logo-xs img { height: 1.75rem; max-width: 5.625rem; }

/* Portal Logo w/ glass effect */
.portal-logo { background: rgba(255,255,255,0.1); padding: 0.375rem; border-radius: var(--radius-xl); backdrop-filter: blur(4px); }

/* ----- Mobile Menu Dropdown ----- */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--stone-200);
  background: #fff;
  padding: 0.75rem;
  animation: fadeIn 0.25s ease-out;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: block; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }

.mobile-menu-btn {
  width: 100%;
  text-align: left;
  padding: 0.625rem;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--stone-700);
  background: transparent;
  display: block;
}
.mobile-menu-btn.active { background: var(--red-50); color: var(--color-primary); }

/* Mobile menu toggle */
.mobile-toggle { display: block; padding: 0.5rem; color: var(--stone-600); border-radius: var(--radius-xl); }
.mobile-toggle:hover { background: var(--stone-100); }
@media (min-width: 768px) { .mobile-toggle { display: none; } }

/* ----- Responsive Grid ----- */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
  .sm\:w-64 { width: 16rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:text-3xl { font-size: 1.875rem; }
  .sm\:text-xl { font-size: 1.25rem; }
  .sm\:items-center { align-items: center; }
  .sm\:flex-row { flex-direction: row; }
}
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:flex { display: flex; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:col-span-2 { grid-column: span 2; }
  .lg\:flex { display: flex; }
}

/* SVG icon sizing */
.icon-xs { width: 0.625rem; height: 0.625rem; }
.icon-sm { width: 0.875rem; height: 0.875rem; }
.icon { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 2rem; height: 2rem; }
.icon-2xl { width: 2.5rem; height: 2.5rem; }
.icon-3xl { width: 3rem; height: 3rem; }

/* Tab content panels - only show active */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Spinner */
.spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--stone-400);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Divider */
.divider { height: 1rem; width: 1px; background: rgba(255,255,255,0.3); }

/* Hide on mobile show on desktop */
@media (max-width: 639px) {
  .hide-mobile { display: none !important; }
}
@media (max-width: 1023px) {
  .hide-tablet { display: none !important; }
}
