/* ==========================================================================
   AYAM GEPREK TIGADIS - MODERN ENERGETIC DESIGN SYSTEM & STYLES
   Colors: Fiery Red (#D32F2F), Warm Gold (#FFB300), Deep Charcoal (#121214)
   ========================================================================== */

:root {
  --primary-red: #D32F2F;
  --primary-red-dark: #9A0007;
  --primary-red-light: #FF6659;
  --accent-yellow: #FFB300;
  --accent-yellow-light: #FFE082;
  --accent-orange: #FF6F00;
  
  --bg-gradient: linear-gradient(135deg, #180505 0%, #2b0808 40%, #1a0a00 100%);
  --card-bg: rgba(30, 15, 15, 0.75);
  --card-border: rgba(255, 179, 0, 0.25);
  --card-border-hover: rgba(255, 179, 0, 0.7);
  
  --text-main: #FFFFFF;
  --text-muted: #D1C4E9;
  --text-muted-dark: #A095A8;
  
  --font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --header-height: 80px;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  
  --shadow-glow-red: 0 8px 32px rgba(211, 47, 47, 0.35);
  --shadow-glow-yellow: 0 8px 32px rgba(255, 179, 0, 0.3);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Background Little Chickens Pattern */
.chicken-bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='55' rx='30' ry='25' fill='%23FFC107'/%3E%3Ccircle cx='65' cy='40' r='20' fill='%23FFC107'/%3E%3Cpolygon points='80,38 93,42 80,48' fill='%23FF9800'/%3E%3Cpath d='M 60 22 Q 65 15 70 20 Q 72 13 77 20 Z' fill='%23E53935'/%3E%3C/svg%3E");
  background-size: 90px 90px;
  animation: bgDrift 60s linear infinite;
}

@keyframes bgDrift {
  from { background-position: 0 0; }
  to { background-position: 1000px 500px; }
}

/* ==========================================================================
   INTRO ANIMATION OVERLAY
   ========================================================================== */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(circle at center, #3A0000 0%, #150000 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-content {
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 600px;
}

.chick-container {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
  transition: transform 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55), top 1.2s ease, left 1.2s ease;
}

.speech-bubble {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: var(--accent-yellow);
  color: #1A1A1A;
  font-weight: 800;
  font-size: 1.2rem;
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  animation: bubblePop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s forwards;
  z-index: 10;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: var(--accent-yellow) transparent;
}

@keyframes bubblePop {
  to { transform: translateX(-50%) scale(1); }
}

.running-chick {
  width: 100%;
  height: 100%;
  animation: bounceJoy 0.5s ease infinite alternate;
}

@keyframes bounceJoy {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}

.intro-mascot-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, #FFD54F 0%, #E65100 100%);
  padding: 3px;
  box-shadow: 0 0 30px rgba(255, 179, 0, 0.7), 0 0 60px rgba(230, 81, 0, 0.5);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoPulseGlow 1.2s ease-in-out infinite alternate;
}

.intro-mascot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@keyframes logoPulseGlow {
  from {
    box-shadow: 0 0 20px rgba(255, 179, 0, 0.6), 0 0 40px rgba(230, 81, 0, 0.4);
    transform: scale(1) rotate(-2deg);
  }
  to {
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.95), 0 0 70px rgba(255, 82, 82, 0.8);
    transform: scale(1.08) rotate(3deg);
  }
}

.intro-text {
  opacity: 0;
  transform: translateY(20px);
  animation: textSlideUp 0.6s ease 0.6s forwards;
}

.intro-text h2 {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(to right, #FFB300, #FF5252);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.intro-text p {
  color: #FFA726;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

@keyframes textSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chick-container.run-to-corner {
  position: fixed !important;
  z-index: 10000;
  top: 15px !important;
  left: 20px !important;
  transform: translate(0, 0) scale(0.45) !important;
  margin: 0 !important;
  transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.chick-container.run-to-corner .speech-bubble {
  display: none !important;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(20, 5, 5, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.brand-logo-container:hover {
  background: rgba(255, 179, 0, 0.08);
}

.logo-mascot-wrapper {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFD54F 0%, #E65100 100%);
  padding: 2px;
  box-shadow: 0 4px 15px rgba(255, 179, 0, 0.4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.brand-logo-container:hover .logo-mascot-wrapper {
  transform: scale(1.08) rotate(-5deg);
}

.header-mascot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.brand-titles .brand-title {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #FFF;
}

.brand-titles .brand-title span {
  color: var(--accent-yellow);
  text-shadow: 0 0 10px rgba(255, 179, 0, 0.5);
}

.brand-tagline {
  font-size: 0.8rem;
  color: #FF8F00;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.admin-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid #4CAF50;
  padding: 4px 12px;
  border-radius: 20px;
}

.admin-status-text {
  color: #81C784;
  font-size: 0.82rem;
  font-weight: 800;
}

.btn-logout-admin {
  background: #E53935;
  color: white;
  border: none;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-logout-admin:hover {
  background: #B71C1C;
}

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  background: rgba(255, 179, 0, 0.15);
  color: var(--accent-yellow);
}

.btn-replay-intro {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFB300;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-replay-intro:hover {
  background: rgba(255, 179, 0, 0.2);
  border-color: var(--accent-yellow);
  transform: translateY(-2px);
}

.cart-badge-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  color: white;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-glow-red);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

.cart-badge-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(211, 47, 47, 0.6);
}

.cart-count {
  background: var(--accent-yellow);
  color: #1A1A1A;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 900;
}

/* ==========================================================================
   PAGE CONTENT & HERO
   ========================================================================== */
.page-content {
  margin-top: var(--header-height);
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.page-content.visible {
  opacity: 1;
}

.hero-section {
  padding: 70px 20px 50px;
  text-align: center;
  position: relative;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 179, 0, 0.15);
  border: 1px solid var(--accent-yellow);
  color: var(--accent-yellow);
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
  from { box-shadow: 0 0 5px rgba(255, 179, 0, 0.3); }
  to { box-shadow: 0 0 20px rgba(255, 179, 0, 0.7); }
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.highlight-yellow {
  background: linear-gradient(135deg, #FFD54F 0%, #FF8F00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  color: #E0E0E0;
  max-width: 720px;
  margin: 0 auto 35px;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #FFB300 0%, #E65100 100%);
  color: #1A1A1A;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: 40px;
  box-shadow: var(--shadow-glow-yellow);
  transition: var(--transition-smooth);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 179, 0, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 32px;
  border-radius: 40px;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

/* ==========================================================================
   MENU SECTION & CARDS
   ========================================================================== */
.menu-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  color: var(--accent-yellow);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.section-desc {
  color: #B0BEC5;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.menu-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-border-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 179, 0, 0.25);
}

/* 100% UNCLIPPED & SYMMETRICAL FOOD IMAGE FRAME */
.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: radial-gradient(circle, rgba(35, 12, 12, 0.9) 0%, rgba(12, 4, 4, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 179, 0, 0.15);
}

.card-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.menu-card:hover .card-img {
  transform: scale(1.05);
}

.card-top-actions {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.btn-card-action {
  background: rgba(20, 10, 10, 0.85);
  border: 1px solid var(--accent-yellow);
  color: var(--accent-yellow);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: var(--transition-smooth);
}

.btn-card-action:hover {
  background: var(--accent-yellow);
  color: #1A1A1A;
  transform: scale(1.06);
}

.btn-card-delete {
  border-color: #E53935;
  color: #FF8A80;
}

.btn-card-delete:hover {
  background: #E53935;
  color: white;
}

.card-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 5;
}

.tag-red { background: linear-gradient(135deg, #E53935 0%, #D32F2F 100%); }
.tag-yellow { background: linear-gradient(135deg, #FFB300 0%, #F57F17 100%); color: #1A1A1A; }
.tag-orange { background: linear-gradient(135deg, #FF6D00 0%, #DD2C00 100%); }
.tag-green { background: linear-gradient(135deg, #43A047 0%, #2E7D32 100%); }

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-desc {
  color: #B0BEC5;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.card-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent-yellow);
  margin-bottom: 18px;
}

.card-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qty-selector {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 4px;
}

.btn-qty {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.qty-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: white;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: inherit;
  width: 50px;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.extra-rice-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 179, 0, 0.08);
  border: 1px solid rgba(255, 179, 0, 0.3);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  user-select: none;
  transition: var(--transition-smooth);
}

.extra-rice-label:hover {
  background: rgba(255, 179, 0, 0.18);
  border-color: var(--accent-yellow);
}

.chk-extra-rice {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-yellow);
  cursor: pointer;
}

.extra-rice-text {
  font-size: 0.92rem;
  color: #ECEFF1;
  font-weight: 600;
}

.extra-rice-text strong {
  color: var(--accent-yellow);
}

.item-rice-badge {
  font-size: 0.8rem;
  color: var(--accent-yellow);
  font-weight: 700;
  margin-top: 2px;
}

.item-notes-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: white;
  font-size: 0.88rem;
  font-family: inherit;
  transition: var(--transition-smooth);
}

.item-notes-input:focus {
  outline: none;
  border-color: var(--accent-yellow);
  background: rgba(0, 0, 0, 0.6);
}

.btn-add-cart {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-red) 0%, #B71C1C 100%);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-add-cart:hover {
  background: linear-gradient(135deg, #E53935 0%, #D32F2F 100%);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.5);
  transform: translateY(-2px);
}

.btn-add-cart.added-anim {
  animation: pulseSuccess 0.4s ease;
}

@keyframes pulseSuccess {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); background: #4CAF50; }
  100% { transform: scale(1); }
}

/* CARD TAMBAH MENU BARU */
.add-menu-card {
  border: 2px dashed var(--accent-yellow);
  background: rgba(45, 20, 20, 0.5);
  justify-content: center;
  align-items: center;
  min-height: 480px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.add-menu-card:hover {
  border-color: #FFE082;
  background: rgba(60, 25, 25, 0.8);
  box-shadow: 0 15px 35px rgba(255, 179, 0, 0.3);
  transform: translateY(-8px);
}

.add-card-content {
  text-align: center;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.add-icon-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
  color: #1A1A1A;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(255, 179, 0, 0.4);
  transition: transform 0.3s ease;
}

.add-menu-card:hover .add-icon-circle {
  transform: scale(1.15) rotate(90deg);
}

.add-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}

.add-card-desc {
  color: #B0BEC5;
  font-size: 0.95rem;
  margin-bottom: 25px;
  max-width: 250px;
}

.btn-trigger-add {
  background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
  color: #1A1A1A;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(255, 179, 0, 0.4);
  transition: var(--transition-smooth);
}

.btn-trigger-add:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 179, 0, 0.6);
}

/* ==========================================================================
   ORDER SECTION & CART SUMMARY
   ========================================================================== */
.order-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.order-container {
  background: rgba(20, 10, 10, 0.85);
  border: 2px solid var(--accent-yellow);
  border-radius: 28px;
  padding: 35px;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(255, 179, 0, 0.15);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 179, 0, 0.2);
}

.order-subtitle {
  color: var(--accent-yellow);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  display: block;
}

.order-title {
  font-size: 2rem;
  font-weight: 900;
}

.btn-reset-cart {
  background: rgba(244, 67, 54, 0.15);
  border: 1px solid #F44336;
  color: #FF8A80;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-reset-cart:hover {
  background: #F44336;
  color: white;
}

.order-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

@media (max-width: 900px) {
  .order-grid {
    grid-template-columns: 1fr;
  }
}

.cart-items-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.cart-empty-state {
  text-align: center;
  padding: 50px 20px;
  color: #90A4AE;
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 15px;
  opacity: 0.8;
}

.cart-empty-state h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 5px;
}

.cart-items-list::-webkit-scrollbar {
  width: 6px;
}
.cart-items-list::-webkit-scrollbar-thumb {
  background: var(--accent-yellow);
  border-radius: 10px;
}

.cart-item-row {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.item-info {
  flex-grow: 1;
}

.item-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: white;
  margin-bottom: 4px;
}

.item-notes-text {
  font-size: 0.82rem;
  color: #FFA726;
  font-style: italic;
}

.item-controls-price {
  display: flex;
  align-items: center;
  gap: 15px;
}

.item-subtotal {
  font-weight: 800;
  color: var(--accent-yellow);
  font-size: 1.1rem;
  min-width: 90px;
  text-align: right;
}

.btn-remove-item {
  background: transparent;
  border: none;
  color: #EF5350;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  transition: transform 0.2s ease;
}

.btn-remove-item:hover {
  transform: scale(1.2);
}

.cart-summary-footer {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px stroke rgba(255, 179, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: #CFD8DC;
}

.total-line {
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
  margin-top: 5px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.grand-total-amount {
  color: var(--accent-yellow);
  font-size: 1.7rem;
}

.checkout-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.checkout-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.checkout-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
}

.btn-edit-order-types {
  background: rgba(255, 179, 0, 0.12);
  border: 1px solid var(--accent-yellow);
  color: var(--accent-yellow);
  padding: 5px 12px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-edit-order-types:hover {
  background: var(--accent-yellow);
  color: #1A1A1A;
  transform: translateY(-2px);
}

.label-with-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-types-manage-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 220px;
  overflow-y: auto;
}

.order-type-item-row {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ot-info {
  display: flex;
  flex-direction: column;
}

.ot-title {
  font-weight: 800;
  color: white;
  font-size: 0.95rem;
}

.ot-sub {
  font-size: 0.8rem;
  color: var(--accent-yellow);
}

.ot-actions {
  display: flex;
  gap: 6px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #E0E0E0;
}

.req { color: #FF5252; }

.form-input {
  width: 100%;
  background: rgba(30, 15, 15, 0.95) !important;
  border: 1px solid rgba(255, 179, 0, 0.4) !important;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: #FFFFFF !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  font-family: inherit;
  transition: var(--transition-smooth);
}

.form-input::placeholder {
  color: #90A4AE !important;
  opacity: 1;
}

.form-input option {
  background: #1A0505;
  color: #FFFFFF !important;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-yellow) !important;
  background: rgba(45, 20, 20, 0.98) !important;
  box-shadow: 0 0 15px rgba(255, 179, 0, 0.5) !important;
}

.whatsapp-preview-box {
  background: #0D1418;
  border: 1px solid #25D366;
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 20px;
}

.preview-header {
  font-size: 0.8rem;
  font-weight: 700;
  color: #25D366;
  margin-bottom: 8px;
}

.wa-preview-text {
  font-family: monospace;
  font-size: 0.82rem;
  color: #E0E0E0;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 140px;
  overflow-y: auto;
}

.btn-whatsapp-send {
  width: 100%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border: none;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-send:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp-send:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.wa-icon {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   ADMIN EXCLUSIVE FINANCE DASHBOARD
   ========================================================================== */
.admin-finance-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.finance-container {
  background: rgba(25, 10, 10, 0.9);
  border: 2px solid var(--accent-yellow);
  border-radius: 28px;
  padding: 35px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 35px rgba(255, 179, 0, 0.2);
}

.finance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 179, 0, 0.25);
}

.finance-subtitle {
  color: var(--accent-yellow);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  display: block;
}

.finance-title {
  font-size: 2rem;
  font-weight: 900;
}

.btn-reset-finance {
  background: rgba(255, 152, 0, 0.15);
  border: 1px solid #FF9800;
  color: #FFE082;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-reset-finance:hover {
  background: #FF9800;
  color: #1A1A1A;
}

.finance-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 35px;
}

.stat-card {
  background: rgba(0, 0, 0, 0.45);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.stat-income { border-left: 5px solid #4CAF50; }
.stat-expense { border-left: 5px solid #EF5350; }
.stat-balance { border-left: 5px solid var(--accent-yellow); }

.stat-icon {
  font-size: 2.5rem;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.9rem;
  color: #B0BEC5;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 900;
}

.text-income { color: #66BB6A; }
.text-expense { color: #EF5350; }
.text-balance { color: var(--accent-yellow); }

.finance-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
}

@media (max-width: 900px) {
  .finance-main-grid {
    grid-template-columns: 1fr;
  }
}

.finance-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.card-inner-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.btn-primary-finance {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
  color: #1A1A1A;
  border: none;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
  transition: var(--transition-smooth);
}

.btn-primary-finance:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 179, 0, 0.6);
}

.table-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.table-filter-group {
  display: flex;
  gap: 6px;
}

.btn-filter {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #CFD8DC;
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-filter.active, .btn-filter:hover {
  background: var(--accent-yellow);
  color: #1A1A1A;
  border-color: var(--accent-yellow);
}

.finance-empty-state {
  text-align: center;
  padding: 40px 15px;
  color: #90A4AE;
}

.finance-table-wrapper {
  max-height: 380px;
  overflow-y: auto;
}

.finance-table-wrapper::-webkit-scrollbar {
  width: 6px;
}
.finance-table-wrapper::-webkit-scrollbar-thumb {
  background: var(--accent-yellow);
  border-radius: 10px;
}

.finance-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.finance-table th {
  background: rgba(255, 255, 255, 0.06);
  color: #FFE082;
  font-weight: 800;
  padding: 12px;
  border-bottom: 2px solid rgba(255, 179, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 2;
}

.finance-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #E0E0E0;
}

.badge-fin-type {
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 800;
}

.badge-income { background: rgba(76, 175, 80, 0.2); color: #81C784; border: 1px solid #4CAF50; }
.badge-expense { background: rgba(239, 83, 80, 0.2); color: #FF8A80; border: 1px solid #EF5350; }

.btn-del-fin {
  background: transparent;
  border: none;
  color: #EF5350;
  cursor: pointer;
  font-size: 1.1rem;
}

.btn-del-fin:hover {
  transform: scale(1.2);
}

/* ==========================================================================
   EDIT / ADD MODAL & LOGIN DIALOG
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  display: none !important;
}

.modal-card {
  background: rgba(25, 10, 10, 0.95);
  border: 2px solid var(--accent-yellow);
  border-radius: 24px;
  width: 100%;
  max-width: 550px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 179, 0, 0.25);
  animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.login-card {
  max-width: 420px;
}

.login-subtext {
  font-size: 0.9rem;
  color: #B0BEC5;
  margin-bottom: 20px;
}

.login-error-msg {
  background: rgba(229, 57, 53, 0.2);
  border: 1px solid #E53935;
  color: #FF8A80;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 16px;
}

@keyframes modalPop {
  from { transform: scale(0.9) translateY(20px); }
  to { transform: scale(1) translateY(0); }
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 179, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-yellow);
}

.btn-close-modal {
  background: transparent;
  border: none;
  color: #B0BEC5;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-close-modal:hover { color: white; }

.modal-body {
  padding: 24px;
}

.file-upload-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}

.file-input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload-box {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 179, 0, 0.4);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.file-upload-wrapper:hover .file-upload-box {
  border-color: var(--accent-yellow);
  background: rgba(255, 179, 0, 0.1);
}

.upload-icon { font-size: 1.4rem; }
.upload-text { font-size: 0.9rem; color: #CFD8DC; font-weight: 600; }

.image-preview-wrapper {
  margin-top: 12px;
  text-align: center;
}

.img-preview {
  max-width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--accent-yellow);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.preview-note {
  display: block;
  font-size: 0.75rem;
  color: #4CAF50;
  margin-top: 5px;
  font-weight: 600;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 25px;
}

.btn-cancel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-cancel:hover { background: rgba(255, 255, 255, 0.2); }

.btn-save-menu {
  background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
  color: #1A1A1A;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-glow-yellow);
  transition: var(--transition-smooth);
}

.btn-save-menu:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 179, 0, 0.5);
}

/* FOOTER */
.main-footer {
  background: #0A0202;
  border-top: 1px solid rgba(255, 179, 0, 0.2);
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
}

.footer-admin-action {
  margin-bottom: 24px;
}

.btn-edit-footer {
  background: rgba(255, 179, 0, 0.12);
  border: 1px solid var(--accent-yellow);
  color: var(--accent-yellow);
  padding: 8px 22px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-edit-footer:hover {
  background: var(--accent-yellow);
  color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-yellow);
  margin-bottom: 6px;
}

.footer-brand p {
  color: #B0BEC5;
  margin-bottom: 20px;
}

.footer-info p {
  margin-bottom: 6px;
  color: #E0E0E0;
}

.footer-info a {
  color: #25D366;
  text-decoration: none;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #78909C;
  font-size: 0.85rem;
}

/* Utilities & Responsiveness */
.hidden { display: none !important; }

@media (max-width: 768px) {
  :root {
    --header-height: 65px;
  }

  .main-header {
    height: auto;
    min-height: 60px;
    padding: 4px 0;
  }

  .header-container {
    padding: 0 10px;
    gap: 6px;
    justify-content: space-between;
    align-items: center;
  }

  .brand-logo-container {
    gap: 8px;
    padding: 2px 4px;
    flex-shrink: 0;
  }

  .logo-mascot-wrapper {
    width: 40px;
    height: 40px;
  }

  .brand-titles .brand-title {
    font-size: 0.95rem;
    line-height: 1.1;
    white-space: nowrap;
  }

  .brand-tagline {
    font-size: 0.7rem;
  }

  .nav-links {
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 0;
  }

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

  .nav-link {
    font-size: 0.8rem;
    padding: 6px 10px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .cart-badge-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    white-space: nowrap;
    border-radius: 20px;
    flex-shrink: 0;
  }

  .cart-count {
    padding: 1px 6px;
    font-size: 0.75rem;
  }

  .admin-badge {
    padding: 3px 8px;
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .admin-status-text {
    font-size: 0.75rem;
  }

  .btn-logout-admin {
    padding: 2px 6px;
    font-size: 0.7rem;
  }

  .btn-replay-intro {
    display: none;
  }

  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 6px;
    gap: 4px;
  }

  .brand-logo-container {
    gap: 6px;
  }

  .logo-mascot-wrapper {
    width: 36px;
    height: 36px;
  }

  .brand-titles .brand-title {
    font-size: 0.88rem;
  }

  .brand-tagline {
    display: none;
  }

  .nav-link {
    font-size: 0.75rem;
    padding: 5px 8px;
  }

  .cart-badge-btn {
    padding: 5px 10px;
    font-size: 0.78rem;
  }

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION BAR (App-Like Fixed Bottom Menu)
   ========================================================================== */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 68px !important;
  }

  .nav-links {
    display: none !important;
  }

  .mobile-bottom-nav {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 64px !important;
    background: rgba(18, 6, 6, 0.95) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-top: 1px solid rgba(255, 179, 0, 0.3) !important;
    justify-content: space-around !important;
    align-items: center !important;
    z-index: 9999 !important;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.6) !important;
    padding-bottom: env(safe-area-inset-bottom) !important;
  }

  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #B0BEC5;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    background: none;
    border: none;
    padding: 6px 8px;
    flex: 1;
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: inherit;
  }

  .mobile-nav-item.active,
  .mobile-nav-item:hover {
    color: var(--accent-yellow);
  }

  .mobile-nav-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav-icon {
    font-size: 1.35rem;
    margin-bottom: 2px;
  }

  .mobile-cart-badge {
    position: absolute;
    top: -4px;
    right: -10px;
    background: var(--primary-red);
    color: white;
    border-radius: 10px;
    padding: 1px 6px;
    font-size: 0.68rem;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.6);
  }

  .mobile-nav-admin-btn {
    color: #81C784;
  }
}
