/* ===================================================
   HOTEL MARE & MONTE BISTRO - ALTINOLUK (EST. 1985)
   LUXURY MEDITERRANEAN RIVIERA QR MENU SYSTEM (menu.css)
   =================================================== */

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

:root {
  /* Mediterranean Riviera & Gold Palette */
  --primary: #C5A059;
  --primary-rgb: 197, 160, 89;
  --primary-light: #E2C785;
  --primary-dark: #9E7A2E;
  --primary-glow: rgba(197, 160, 89, 0.35);
  --primary-grad: linear-gradient(135deg, #C5A059 0%, #D8B76E 50%, #9F7A2D 100%);
  --primary-grad-hover: linear-gradient(135deg, #D4AF37 0%, #E8CB7E 50%, #B08A35 100%);

  /* Aegean Pine & Sea Accents */
  --aegean-teal: #1A4B4B;
  --aegean-teal-rgb: 26, 75, 75;
  --aegean-sea: #204051;
  --aegean-accent: #2E6F6F;

  /* Typography */
  --font-serif: 'Playfair Display', 'Cinzel', Georgia, serif;
  --font-display: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Light Theme (Varsayılan - Warm Linen & Parchment Luxury) */
  --bg-body: #FAF7F2;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FCFAF7;
  --bg-surface: #F3EFE6;
  --bg-glass: rgba(250, 247, 242, 0.92);
  --bg-glass-card: rgba(255, 255, 255, 0.90);
  
  --text-main: #1C232B;
  --text-serif: #15222E;
  --text-muted: #5E6D7E;
  --text-dim: #94A3B8;
  
  --border-color: rgba(197, 160, 89, 0.22);
  --border-subtle: rgba(0, 0, 0, 0.06);
  --border-active: #C5A059;
  
  --shadow-sm: 0 3px 12px rgba(28, 35, 43, 0.05);
  --shadow-md: 0 8px 24px rgba(28, 35, 43, 0.08);
  --shadow-lg: 0 16px 36px rgba(28, 35, 43, 0.12);
  --shadow-gold: 0 6px 20px rgba(197, 160, 89, 0.28);
  
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --bottom-bar-height: 74px;
  --header-height: 62px;
}

/* Dark Mode (Aegean Midnight & Gold) */
[data-theme="dark"] {
  --bg-body: #0C1217;
  --bg-card: #141D26;
  --bg-card-hover: #1A2633;
  --bg-surface: #1B2633;
  --bg-glass: rgba(12, 18, 23, 0.92);
  --bg-glass-card: rgba(20, 29, 38, 0.88);
  
  --text-main: #F4F6F8;
  --text-serif: #FFFFFF;
  --text-muted: #9AA7B5;
  --text-dim: #64748B;
  
  --border-color: rgba(197, 160, 89, 0.25);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: #D4AF37;
  
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 6px 24px rgba(197, 160, 89, 0.35);
}

/* RTL Support for Arabic */
[dir="rtl"] {
  text-align: right;
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-family: var(--font-sans);
  font-size: 15px;
  scroll-behavior: smooth;
  background-color: var(--bg-body);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: calc(var(--bottom-bar-height) + 36px);
  background-color: var(--bg-body);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(197, 160, 89, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(26, 75, 75, 0.03) 0%, transparent 40%);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ===================================================
   1. APP HEADER (LUXURY GLASS HEADER)
   =================================================== */
.app-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  min-height: 62px;
  height: 62px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  gap: 8px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  flex-shrink: 1;
}

.brand-logo-wrap {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 2px;
  background: var(--primary-grad);
  box-shadow: 0 2px 8px rgba(197, 160, 89, 0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-card);
}

.brand-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.brand-info h1 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-serif);
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-info p {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-theme="dark"] .brand-info p {
  color: var(--primary-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.table-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary-dark);
  border: 1px solid var(--primary);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

[data-theme="dark"] .table-pill {
  color: var(--primary-light);
}

.icon-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.84rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.icon-btn:hover, .icon-btn:active {
  background: var(--primary-grad);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Language Selector */
.lang-selector-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 9px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.lang-selector-btn:hover {
  border-color: var(--primary);
}

/* Responsive Header */
@media (max-width: 480px) {
  :root {
    --header-height: 60px;
  }
  .app-header {
    padding: 0 12px;
    gap: 8px;
    min-height: 60px;
    height: 60px;
  }
  .brand-logo-wrap {
    width: 40px;
    height: 40px;
  }
  .brand-info h1 {
    font-size: 0.90rem;
    letter-spacing: 0.3px;
  }
  .brand-info p {
    font-size: 0.64rem;
  }
  .lang-selector-btn {
    padding: 5px 8px;
    font-size: 0.72rem;
  }
}

/* ===================================================
   2. INSTAGRAM HIGHLIGHTS (STORIES BAR)
   =================================================== */
.stories-container {
  padding: 14px 16px 8px;
  overflow-x: auto;
  display: flex;
  gap: 14px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.stories-container::-webkit-scrollbar { display: none; }

.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  width: 68px;
  min-width: 68px;
  text-decoration: none;
}

.story-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 2.5px;
  background: var(--primary-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.35);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.story-item:hover .story-ring,
.story-item:active .story-ring {
  transform: scale(1.08);
}

.story-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-body);
}

.story-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/* Story Viewer Modal */
.story-viewer-modal {
  position: fixed;
  inset: 0;
  background: #000000;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.story-viewer-modal.active {
  opacity: 1;
  visibility: visible;
}

.story-viewer-content {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  max-height: 880px;
  background: #111;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.story-progress-bar {
  position: absolute;
  top: 14px;
  left: 12px;
  right: 12px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
  overflow: hidden;
  z-index: 20;
}

.story-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--primary-light);
  transition: width 0.1s linear;
}

.story-viewer-header {
  position: absolute;
  top: 26px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.story-viewer-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

.story-viewer-close {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  color: #FFFFFF;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
}

.story-viewer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-viewer-cta {
  position: absolute;
  bottom: 28px;
  left: 20px;
  right: 20px;
  z-index: 20;
}

/* ===================================================
   3. RESORT HERO & WELCOME BANNER
   =================================================== */
.hero-section {
  position: relative;
  padding: 10px 16px 12px;
}

.resort-welcome-card {
  position: relative;
  background: linear-gradient(135deg, rgba(26, 75, 75, 0.95) 0%, rgba(14, 45, 45, 0.95) 100%);
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: 16px;
  padding: 12px 16px;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(14, 45, 45, 0.20), var(--shadow-gold);
  overflow: hidden;
  margin-bottom: 12px;
}

.resort-welcome-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.resort-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(197, 160, 89, 0.2);
  border: 1px solid rgba(197, 160, 89, 0.6);
  color: var(--primary-light);
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 5px;
}

.resort-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  line-height: 1.2;
}

.resort-subtitle {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 3px;
  font-weight: 400;
  line-height: 1.35;
}

.resort-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.resort-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}

.resort-feature-chip i {
  color: var(--primary-light);
  font-size: 0.75rem;
}

.resort-feature-chip:hover {
  background: rgba(197, 160, 89, 0.25);
  border-color: var(--primary-light);
  transform: translateY(-1px);
}

/* Search Bar */
.search-container {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  height: 48px;
  padding: 0 46px 0 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.90rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-card);
  box-shadow: 0 0 0 3.5px rgba(197, 160, 89, 0.25);
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 0.95rem;
  pointer-events: none;
}

.search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  display: none;
  font-size: 1rem;
  padding: 4px;
}

/* Quick Filter Badges */
.quick-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-top: 12px;
  scrollbar-width: none;
}
.quick-filters::-webkit-scrollbar { display: none; }

.filter-badge {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.filter-badge i {
  color: var(--primary);
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.filter-badge.active,
.filter-badge:hover {
  background: var(--primary-grad);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.filter-badge.active i,
.filter-badge:hover i {
  color: #FFFFFF;
}

/* ===================================================
   4. STICKY CATEGORIES SLIDE BAR (GRAND LUXURY CAROUSEL)
   =================================================== */
.categories-bar {
  position: sticky;
  top: var(--header-height);
  background: var(--bg-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 2px solid var(--border-color);
  padding: 14px 14px 16px;
  z-index: 90;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1140px;
  margin: 0 auto;
}

.category-slide-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 5;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
}

.category-slide-btn:hover {
  background: var(--primary-grad);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: scale(1.10);
  box-shadow: 0 6px 18px rgba(197, 160, 89, 0.45);
}

.category-slide-btn:disabled {
  opacity: 0.22;
  pointer-events: none;
}

.categories-carousel {
  flex: 1;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 6px 4px 8px;
}
.categories-carousel::-webkit-scrollbar { display: none; }

/* Grand Category Item */
.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  width: 104px;
  min-width: 104px;
  padding: 6px 6px 8px;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  scroll-snap-align: start;
}

.category-item:hover {
  transform: translateY(-3px);
}

.category-thumb-box {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  border: 2.5px solid var(--border-color);
  background: var(--bg-card);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.09);
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-item:hover .category-thumb-box img {
  transform: scale(1.12);
}

.category-item-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(20, 50, 50, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--primary-light);
  font-size: 0.74rem;
  font-weight: 850;
  min-width: 25px;
  height: 22px;
  padding: 0 6px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(197, 160, 89, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.category-item-name {
  font-size: 0.88rem;
  font-weight: 750;
  color: var(--text-main);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  line-height: 1.25;
  transition: all 0.2s ease;
}

/* Grand Active Category State */
.category-item.active {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.16) 0%, rgba(var(--primary-rgb), 0.04) 100%);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.category-item.active .category-thumb-box {
  border: 3.5px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.35), 0 10px 28px rgba(197, 160, 89, 0.50);
  transform: scale(1.08) translateY(-3px);
}

.category-item.active .category-item-name {
  color: var(--primary-dark);
  font-weight: 850;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
}

[data-theme="dark"] .category-item.active .category-item-name {
  color: var(--primary-light);
}

.category-item.active::after {
  content: '';
  width: 48px;
  height: 5px;
  background: var(--primary-grad);
  border-radius: 5px;
  margin-top: 3px;
  box-shadow: 0 3px 12px rgba(197, 160, 89, 0.95);
  animation: glowHighlighter 2s infinite alternate ease-in-out;
}

@keyframes glowHighlighter {
  0% { box-shadow: 0 2px 8px rgba(197, 160, 89, 0.6); }
  100% { box-shadow: 0 3px 16px rgba(197, 160, 89, 1.0); }
}

@media (max-width: 480px) {
  .categories-bar {
    padding: 10px 10px 12px;
    gap: 8px;
  }
  .category-slide-btn {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }
  .category-thumb-box {
    width: 76px;
    height: 76px;
    border-radius: 19px;
  }
  .category-item {
    width: 94px;
    min-width: 94px;
    gap: 5px;
    padding: 4px 4px 6px;
  }
  .category-item-name {
    font-size: 0.82rem;
    font-weight: 750;
  }
  .category-item.active .category-thumb-box {
    transform: scale(1.06) translateY(-2px);
    border-width: 3px;
  }
  .category-item.active::after {
    width: 40px;
    height: 4.5px;
  }
}

/* ===================================================
   5. MENU CONTAINER & PRODUCT CARDS (LUXURY EDITORIAL)
   =================================================== */
.menu-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px;
}

.category-section {
  margin-bottom: 34px;
  scroll-margin-top: 145px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 12px 18px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.14) 0%, rgba(var(--primary-rgb), 0.03) 60%, var(--bg-card) 100%);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(var(--primary-rgb), 0.35);
  border-left: 5px solid var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(var(--primary-rgb), 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

.section-header::after {
  content: '';
  position: absolute;
  right: -25px;
  top: -25px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-serif);
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.3px;
  margin: 0;
}

.section-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-grad);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.0rem;
  box-shadow: 0 3px 10px rgba(197, 160, 89, 0.38);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-badge {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  color: var(--primary-dark);
  border: 1.5px solid var(--primary);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

[data-theme="dark"] .section-badge {
  background: rgba(var(--primary-rgb), 0.18);
  color: var(--primary-light);
}

@media (max-width: 480px) {
  .section-header {
    padding: 10px 14px;
    margin-bottom: 14px;
    border-radius: 14px;
  }
  .section-title {
    font-size: 1.10rem;
    gap: 10px;
  }
  .section-icon-box {
    width: 32px;
    height: 32px;
    font-size: 0.88rem;
    border-radius: 9px;
  }
  .section-badge {
    font-size: 0.72rem;
    padding: 4px 10px;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 680px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Product Card - 100% Uniform Height */
.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  height: 126px;
  min-height: 126px;
  max-height: 126px;
  box-sizing: border-box;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--shadow-gold);
  border-color: var(--primary);
}

.product-card.unavailable {
  opacity: 0.60;
  filter: grayscale(0.6);
}

/* Image Wrap */
.product-image-wrap {
  position: relative;
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  height: 100%;
  overflow: hidden;
  background: var(--bg-surface);
  flex-shrink: 0;
}

.product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

/* Luxury Micro Badges */
.product-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 3px 7px;
  border-radius: var(--radius-xs);
  background: var(--primary-grad);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.badge-chef {
  background: linear-gradient(135deg, #1A4B4B 0%, #0E2D2D 100%);
  color: var(--primary-light);
  border-color: var(--primary);
}

.badge-popular {
  background: linear-gradient(135deg, #C5A059 0%, #9E7A2E 100%);
}

.badge-new {
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
}

.badge-spicy {
  background: linear-gradient(135deg, #C62828 0%, #8E0000 100%);
}

.sold-out-tag {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 23, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B6B;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(2px);
  z-index: 3;
}

/* Product Content */
.product-content {
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--text-serif);
  line-height: 1.24;
  margin-bottom: 3px;
  letter-spacing: 0.1px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 2px;
}

.product-price-box {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.product-price {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.3px;
}

[data-theme="dark"] .product-price {
  color: var(--primary-light);
}

.product-old-price {
  font-size: 0.76rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.product-action-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary-dark);
  border: 1px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.80rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

[data-theme="dark"] .product-action-btn {
  color: var(--primary-light);
}

.product-card:hover .product-action-btn {
  background: var(--primary-grad);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: scale(1.08);
}

@media (max-width: 480px) {
  .product-card {
    height: 118px;
    min-height: 118px;
    max-height: 118px;
    border-radius: 14px;
  }
  .product-image-wrap {
    width: 105px;
    min-width: 105px;
    max-width: 105px;
  }
  .product-content {
    padding: 8px 12px;
  }
  .product-name {
    font-size: 0.92rem;
    margin-bottom: 2px;
  }
  .product-desc {
    font-size: 0.70rem;
    line-height: 1.30;
  }
  .product-price {
    font-size: 0.98rem;
  }
  .product-action-btn {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
}

/* ===================================================
   6. PRODUCT DETAIL DRAWER / BOTTOM SHEET
   =================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 18, 23, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.drawer-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 90vh;
  background: var(--bg-card);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.5);
  z-index: 201;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 560px;
  margin: 0 auto;
}

.drawer-backdrop.active .drawer-modal {
  transform: translateY(0);
}

.drawer-handle {
  width: 44px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--border-color);
  margin: 10px auto 4px;
}

.drawer-image-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: var(--bg-surface);
}

.drawer-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(12, 18, 23, 0.65);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.05rem;
  transition: all 0.2s ease;
}

.drawer-close-btn:hover {
  background: rgba(12, 18, 23, 0.9);
}

.drawer-body {
  padding: 20px 22px 24px;
}

.drawer-meta-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.drawer-title {
  font-family: var(--font-serif);
  font-size: 1.40rem;
  font-weight: 700;
  color: var(--text-serif);
  margin-bottom: 8px;
  line-height: 1.25;
}

.drawer-description {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Drawer Options Group */
.drawer-options-group {
  margin-bottom: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
}

.options-group-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
  cursor: pointer;
}
.option-row:last-child { border-bottom: none; }

.option-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text-main);
}

.drawer-allergens-box {
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 18px;
}

.drawer-allergens-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

[data-theme="dark"] .drawer-allergens-title {
  color: var(--primary-light);
}

.drawer-allergens-text {
  font-size: 0.80rem;
  color: var(--text-muted);
}

.drawer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.drawer-price-box {
  display: flex;
  flex-direction: column;
}

.drawer-price {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
}

[data-theme="dark"] .drawer-price {
  color: var(--primary-light);
}

/* ===================================================
   7. GUEST FEEDBACK & RATINGS WIDGET
   =================================================== */
.feedback-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  margin: 28px 0;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.star-rating-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 18px;
}

.star-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #CBD5E1;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
}

.star-btn.active, .star-btn:hover {
  color: #D4AF37;
  transform: scale(1.18);
}

/* ===================================================
   8. BOTTOM FLOATING BAR (LUXURY GOLD CTA)
   =================================================== */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-bar-height);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 16px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.bottom-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bottom-action-btn i { font-size: 1.25rem; }
.bottom-action-btn:hover, .bottom-action-btn.active { color: var(--primary-dark); }
[data-theme="dark"] .bottom-action-btn:hover { color: var(--primary-light); }

.bottom-cta-btn {
  background: var(--primary-grad);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-full);
  padding: 11px 22px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.bottom-cta-btn:hover, .bottom-cta-btn:active {
  background: var(--primary-grad-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.45);
}

/* ===================================================
   9. ACTION MODALS (WAITER, WIFI, POPUP)
   =================================================== */
.action-modal {
  position: fixed;
  inset: 0;
  background: rgba(12, 18, 23, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.action-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.action-modal.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-serif);
}

.call-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.call-option-btn {
  padding: 14px 10px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.80rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.call-option-btn i {
  font-size: 1.35rem;
  color: var(--primary);
}

.call-option-btn:hover, .call-option-btn.selected {
  background: rgba(var(--primary-rgb), 0.15);
  border-color: var(--primary);
  color: var(--primary-dark);
}

[data-theme="dark"] .call-option-btn.selected {
  color: var(--primary-light);
}

/* ===================================================
   10. TOAST NOTIFICATIONS
   =================================================== */
.toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  background: #1A2633;
  color: #FFFFFF;
  border: 1px solid rgba(197, 160, 89, 0.4);
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  animation: toastIn 0.3s ease forwards;
}

.toast.success { background: #0E3B33; border-color: #2E7D32; }
.toast.error { background: #4A1212; border-color: #C62828; }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   11. NEW MODULES: CURRENCY, HAPPY HOUR, EVENTS, WHEEL
   =================================================== */

/* Currency Switcher */
.currency-switcher {
  display: inline-flex;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 2px;
  gap: 2px;
}

.currency-btn {
  background: none;
  border: none;
  padding: 4px 7px;
  border-radius: var(--radius-full);
  font-size: 0.70rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

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

.currency-btn.active {
  background: var(--primary-grad);
  color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(197, 160, 89, 0.35);
}

@media (max-width: 480px) {
  .currency-btn {
    padding: 3px 6px;
    font-size: 0.66rem;
  }
}

@media (max-width: 390px) {
  .currency-btn {
    padding: 2px 4px;
    font-size: 0.62rem;
  }
}

/* Sunset Happy Hour Ribbon */
.happy-hour-banner {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: glowPulse 3s infinite;
}

@keyframes glowPulse {
  0% { box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3); }
  50% { box-shadow: 0 4px 24px rgba(245, 158, 11, 0.6); }
  100% { box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3); }
}

.happy-hour-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  flex-wrap: wrap;
}

.happy-hour-time-badge {
  background: rgba(0, 0, 0, 0.25);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
}

/* Events & Live Music Section (Compact & Sleek) */
.events-section {
  margin-bottom: 20px;
}

.events-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.events-carousel::-webkit-scrollbar { display: none; }

.event-card {
  flex: 0 0 200px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.event-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.event-poster-wrap {
  position: relative;
  width: 100%;
  height: 95px;
  background: var(--bg-surface);
}

.event-poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-date-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: var(--primary-light);
  border: 1px solid var(--primary);
  padding: 2px 7px;
  border-radius: var(--radius-xs);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.event-info {
  padding: 8px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-title {
  font-family: var(--font-serif);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-serif);
  margin-bottom: 2px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-performer {
  font-size: 0.72rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-theme="dark"] .event-performer {
  color: var(--primary-light);
}

.event-desc {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 480px) {
  .event-card {
    flex: 0 0 185px;
  }
  .event-poster-wrap {
    height: 85px;
  }
}

/* Chef's Smart Pairing Box */
.drawer-pairing-box {
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.12) 0%, rgba(26, 75, 75, 0.12) 100%);
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 16px;
}

.pairing-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

[data-theme="dark"] .pairing-badge {
  color: var(--primary-light);
}

.pairing-title {
  font-size: 0.84rem;
  color: var(--text-main);
  line-height: 1.45;
  font-weight: 600;
}

/* Resort Area Chips Selector */
.resort-area-selector {
  margin-bottom: 12px;
}

.resort-area-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.resort-area-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.resort-chip {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.resort-chip:hover {
  color: var(--text-main);
  border-color: var(--primary);
}

.resort-chip.active {
  background: var(--primary-grad);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* Lucky Wheel Gamification */
.floating-wheel-btn {
  position: fixed;
  bottom: 84px;
  right: 18px;
  z-index: 100;
  background: linear-gradient(135deg, #C5A059 0%, #D4AF37 50%, #9E7A2E 100%);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.45);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: floatBounce 3s infinite ease-in-out;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.floating-wheel-btn:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 12px 30px rgba(197, 160, 89, 0.65);
}

.wheel-icon-pulse {
  font-size: 1.25rem;
  animation: rotateWiggle 2s infinite ease-in-out;
}

@keyframes rotateWiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-12deg); }
  75% { transform: rotate(12deg); }
}

.wheel-canvas-container {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 10px auto;
}

.wheel-pointer {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.6rem;
  color: #EF4444;
  z-index: 10;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

#luckyWheelCanvas {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border: 4px solid var(--primary);
}

.reward-box {
  background: rgba(var(--primary-rgb), 0.15);
  border: 2px dashed var(--primary);
  border-radius: var(--radius-md);
  padding: 14px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

[data-theme="dark"] .reward-box {
  color: var(--primary-light);
}

.reward-code-box {
  background: #0f172a;
  color: #fbbf24;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  display: inline-block;
}

