/* ==========================================================================
   THE DUCK CAFE - DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-dark: #070D12;
  --bg-card: rgba(18, 28, 36, 0.75);
  --bg-card-hover: rgba(28, 42, 54, 0.85);
  --accent-gold: #E5B94A;
  --accent-gold-glow: rgba(229, 185, 74, 0.3);
  --accent-emerald: #10B981;
  --accent-emerald-dark: #064E3B;
  --accent-amber: #F59E0B;
  --text-main: #F3F4F6;
  --text-muted: #9CA3AF;
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(229, 185, 74, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-glow: 0 10px 30px -5px rgba(229, 185, 74, 0.15);
  --font-title: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(229, 185, 74, 0.07) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Background Ambient Glow Blur */
.ambient-blur {
  position: fixed;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.ambient-1 { top: -100px; left: -100px; background: rgba(229, 185, 74, 0.12); }
.ambient-2 { bottom: -100px; right: -100px; background: rgba(16, 185, 129, 0.12); }

/* Layout Wrapper */
.app-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 120px 16px;
  position: relative;
  z-index: 1;
}

/* Navigation Bar */
header.navbar {
  position: sticky;
  top: 12px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(11, 19, 25, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  margin-top: 16px;
  margin-bottom: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 12px var(--accent-gold-glow);
}

/* Premium Vertical Feather Logo Container */
.vertical-feather-logo {
  width: 44px;
  height: 52px;
  background: linear-gradient(180deg, #1C242B 0%, #0E1317 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 185, 74, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vertical-feather-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.vertical-feather-logo i {
  color: var(--accent-gold);
  font-size: 1.5rem;
  transform: rotate(0deg);
  filter: drop-shadow(0 2px 8px rgba(229, 185, 74, 0.5));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.brand:hover .vertical-feather-logo {
  border-color: rgba(229, 185, 74, 0.8);
  box-shadow: 0 6px 25px rgba(229, 185, 74, 0.35);
  transform: translateY(-2px);
}

.brand:hover .vertical-feather-logo i {
  transform: scale(1.12) rotate(-8deg);
  filter: drop-shadow(0 4px 12px rgba(229, 185, 74, 0.8));
}

.brand-text h1 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #FFF;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-sub-badge {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  background: rgba(229, 185, 74, 0.12);
  border: 1px solid rgba(229, 185, 74, 0.3);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.brand-text span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2.2px;
  margin-top: 2px;
  display: block;
}

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

/* Google Auth Widget Styling */
.auth-widget {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-profile-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(229, 185, 74, 0.35);
  padding: 4px 12px 4px 5px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--accent-gold);
}

.user-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #FFFFFF;
}

.logout-btn {
  background: none;
  border: none;
  color: var(--accent-gold);
  cursor: pointer;
  padding: 4px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.logout-btn:hover {
  transform: scale(1.15);
  color: #ff6b6b;
}

/* Navigation Tabs */
.nav-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tab-btn:hover {
  color: var(--text-main);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--accent-gold), #B3861F);
  color: #070D12;
  box-shadow: 0 4px 15px var(--accent-gold-glow);
}

/* Badge & Indicator Pill */
.badge-pill {
  background: var(--accent-emerald-dark);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-pill.pulsing::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* Hero Section */
.hero-card {
  position: relative;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 13, 18, 0.95) 0%, rgba(7, 13, 18, 0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.hero-overlay h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  color: #FFF;
  margin-bottom: 4px;
}

.hero-overlay p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Glass Section Container */
.section-panel {
  display: none;
  animation: fadeIn 0.4s ease-in-out forwards;
}

.section-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }

/* Glass Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(229, 185, 74, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.card-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: #FFF;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-icon {
  font-size: 1.4rem;
  color: var(--accent-gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), #C99B28);
  color: #070D12;
  box-shadow: 0 4px 15px var(--accent-gold-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-gold-glow);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-emerald {
  background: linear-gradient(135deg, var(--accent-emerald), #059669);
  color: #FFF;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.btn-emerald:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Menu Item Card */
.menu-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.menu-item-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #FFF;
}

.menu-item-price {
  font-family: var(--font-title);
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.menu-item-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
  flex-grow: 1;
}

.menu-category-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.category-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.category-chip.active, .category-chip:hover {
  background: rgba(229, 185, 74, 0.15);
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* Form Inputs */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-input, .form-select {
  width: 100%;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: #FFF;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold-glow);
}

/* Floating Cart Drawer Bar */
.cart-floating-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 600px;
  background: rgba(11, 19, 25, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px var(--accent-gold-glow);
  z-index: 90;
  transition: var(--transition);
}

.cart-summary {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-icon-badge {
  position: relative;
  background: var(--accent-gold);
  color: #070D12;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #EF4444;
  color: #FFF;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wheel Canvas */
.wheel-container {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 20px auto;
}

#wheelCanvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(229, 185, 74, 0.2);
}

.wheel-pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 24px solid var(--accent-gold);
  z-index: 10;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

/* Loyalty Stamp Card */
.loyalty-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.loyalty-stamp {
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  border: 2px dashed rgba(229, 185, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.loyalty-stamp.stamped {
  background: linear-gradient(135deg, var(--accent-gold), #B3861F);
  border-style: solid;
  border-color: var(--accent-gold);
  color: #070D12;
  box-shadow: 0 0 15px var(--accent-gold-glow);
  transform: scale(1.05);
}

/* QR Display Canvas Container */
.qr-preview-box {
  background: #FFF;
  padding: 16px;
  border-radius: var(--radius-md);
  display: inline-block;
  margin-top: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

#qrCanvas {
  display: block;
  margin: 0 auto;
}

/* Toast Notifications */
#toastContainer {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Top Standby Header Banner Layout */
.standby-header-banner {
  background: rgba(18, 24, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(229, 185, 74, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.standby-header-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #D4A359, transparent);
}

.standby-banner-content {
  display: block;
}

.standby-banner-title {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 8px;
}

.standby-banner-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  max-width: 620px;
}

.standby-banner-form {
  background: rgba(0, 0, 0, 0.35);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

/* Single Under Construction Card Layout */
.under-construction-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: 0;
}

.construction-card {
  max-width: 680px;
  width: 100%;
  text-align: center;
  padding: 56px 40px;
  background: rgba(18, 24, 30, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(229, 185, 74, 0.3);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.construction-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #D4A359, transparent);
}

.construction-icon-wrap {
  width: 68px;
  height: 68px;
  background: rgba(229, 185, 74, 0.12);
  border: 1px solid rgba(229, 185, 74, 0.35);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  color: #D4A359;
  font-size: 1.9rem;
  box-shadow: 0 6px 24px rgba(229, 185, 74, 0.2);
}

.construction-badge-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #D4A359;
  text-transform: uppercase;
  background: rgba(229, 185, 74, 0.1);
  padding: 5px 16px;
  border-radius: 999px;
  border: 1px solid rgba(229, 185, 74, 0.25);
  display: inline-block;
  margin-bottom: 20px;
}

.construction-title {
  font-family: var(--font-title);
  font-size: 1.95rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.construction-desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 32px auto;
}

.construction-status-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 22px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: fit-content;
  margin: 0 auto;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
}

.status-pulse-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10B981;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.toast {
  background: rgba(18, 28, 36, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  color: #FFF;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn 0.3s ease-out forwards;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive adjust */
@media (max-width: 768px) {
  header.navbar {
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px;
  }
  .nav-tabs {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }
  .tab-btn {
    padding: 6px 12px;
    font-size: 0.78rem;
  }
  .loyalty-card-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
  .drawer-panel {
    width: 85vw;
    min-width: 280px;
  }
}

/* Side Navigation Drawer (Left-Aligned, ~20% Screen Width) */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99990;
  display: flex;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer-panel {
  width: 22vw;
  min-width: 320px;
  max-width: 460px;
  height: 100%;
  background: rgba(14, 20, 26, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow-y: auto;
  padding: 24px;
  border-right: 1px solid rgba(229, 185, 74, 0.3);
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.6);
  position: relative;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-backdrop.active .drawer-panel {
  transform: translateX(0);
}

@media (max-width: 1200px) {
  .drawer-panel {
    width: 320px;
  }
}

/* Navigation List in Side Drawer */
.drawer-menu-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: #FFF;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-nav-item:hover {
  background: rgba(229, 185, 74, 0.12);
  border-color: rgba(229, 185, 74, 0.4);
  transform: translateX(4px);
}

.nav-icon {
  font-size: 1.25rem;
  color: var(--accent-gold);
  min-width: 24px;
  text-align: center;
}

.nav-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.nav-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
}

.nav-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.arrow-icon {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.drawer-nav-item:hover .arrow-icon {
  color: var(--accent-gold);
  transform: translateX(3px);
}

/* ==========================================================================
   GPS LOYALTY CHECK-IN & STAMP CARD STYLES
   ========================================================================== */
.gps-checkin-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(229, 185, 74, 0.45) !important;
}

.gps-checkin-btn:active:not(:disabled) {
  transform: translateY(1px);
}

.stamp-slot:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 185, 74, 0.6) !important;
}

.stamp-slot.stamped {
  animation: stampBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes stampBounce {
  0% { transform: scale(0.7); opacity: 0.5; }
  70% { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); }
}

@keyframes popIn {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.custom-leaflet-marker {
  background: none;
  border: none;
}



