/* ==========================================================================
   KVALA 2027 — PREMIUM GREEK RESTAURANT DESIGN SYSTEM
   Ultra-Modern Aegean Mobile-First Experience
   ========================================================================== */

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

/* ========================================
   DESIGN TOKENS
   ======================================== */
:root {
  --kvala-blue-deep:    #001733;
  --kvala-blue-navy:    #002244;
  --kvala-blue-primary: #0057B7;
  --kvala-blue-vibrant: #1976D2;
  --kvala-blue-light:   #E3F0FF;
  --kvala-gold:         #C5A059;
  --kvala-gold-bright:  #E5C07B;
  --kvala-gold-light:   #F4E8C1;
  --kvala-gold-dark:    #9E7D3B;
  --kvala-sand:         #FDFBF7;
  --kvala-marble:       #F5F3ED;
  --kvala-olive:        #52796F;
  --kvala-terracotta:   #D9534F;
  --kvala-cream:        #FAF8F2;

  --glass-bg:       rgba(255, 255, 255, 0.92);
  --glass-border:   rgba(197, 160, 89, 0.25);
  --shadow-xs:      0 1px 3px rgba(0,34,68,0.06), 0 1px 2px rgba(0,34,68,0.04);
  --shadow-sm:      0 4px 12px -2px rgba(0,34,68,0.08), 0 2px 6px -2px rgba(0,34,68,0.05);
  --shadow-md:      0 12px 32px -6px rgba(0,34,68,0.12), 0 4px 16px -4px rgba(0,34,68,0.08);
  --shadow-lg:      0 24px 56px -10px rgba(0,34,68,0.18), 0 8px 24px -6px rgba(0,34,68,0.10);
  --shadow-glow:    0 0 0 3px rgba(0,87,183,0.18), 0 8px 24px -4px rgba(0,87,183,0.25);
  --shadow-gold:    0 0 0 3px rgba(197,160,89,0.20), 0 8px 20px -4px rgba(197,160,89,0.30);

  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-sharp:     cubic-bezier(0.4, 0, 0.2, 1);

  --bottom-nav-h:   72px;
  --header-h:       56px;
}

/* ========================================
   RESET & GLOBAL
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background-color: var(--kvala-cream);
  color: #1E293B;
  overflow-x: hidden;
  /* Background texture */
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(0,87,183,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(197,160,89,0.06) 0%, transparent 60%);
}

.font-display { font-family: 'Cinzel', serif; letter-spacing: 0.04em; }
.font-luxury  { font-family: 'Cormorant Garamond', serif; }

/* Hide scrollbar but keep functionality */
.no-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

/* ========================================
   ANIMATIONS
   ======================================== */

/* Card entrance animation */
@keyframes slideUpFadeIn {
  from { opacity: 0; transform: translateY(28px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

/* Gold shimmer for badges & prices */
@keyframes shimmerGold {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Floating animation for hero elements */
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* Pulsing glow for live indicators */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,87,183,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(0,87,183,0); }
}

/* Active tab indicator slide */
@keyframes tabSlide {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Ripple effect on button tap */
@keyframes rippleOut {
  from { transform: scale(0); opacity: 0.5; }
  to   { transform: scale(4); opacity: 0; }
}

/* Cart add bounce */
@keyframes cartBounce {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); }
  70%  { transform: scale(0.94); }
  100% { transform: scale(1); }
}

/* Badge pulse gold */
@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.75; }
}

/* Hero wave entrance */
@keyframes waveIn {
  from { clip-path: ellipse(120% 100% at 50% -10%); opacity: 0; }
  to   { clip-path: ellipse(140% 100% at 50% 50%); opacity: 1; }
}

/* Meander infinite scroll */
@keyframes meanderScroll {
  from { background-position: 0 0; }
  to   { background-position: 80px 0; }
}

/* Success checkmark pop */
@keyframes popIn {
  0%   { transform: scale(0) rotate(-15deg); opacity: 0; }
  70%  { transform: scale(1.15) rotate(3deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* ========================================
   CARD SYSTEM
   ======================================== */

/* Base card */
.kvala-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(197, 160, 89, 0.18);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth);
  overflow: hidden;
  will-change: transform;
  position: relative;
}

.kvala-card:active {
  transform: scale(0.975);
  box-shadow: var(--shadow-xs);
}

/* Menu dish card - mobile friendly */
.dish-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(228, 220, 200, 0.6);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-smooth);
  will-change: transform, box-shadow;
  display: flex;
  flex-direction: column;
}

.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 160, 89, 0.4);
}

/* Staggered entrance animation for cards */
.dish-card.animate-in {
  animation: slideUpFadeIn 0.5s var(--ease-smooth) both;
}

/* Glass card variant */
.glass-card-2027 {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-smooth);
}

.glass-card-2027:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ========================================
   BUTTON SYSTEM
   ======================================== */

/* Primary CTA blue */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #0057B7 0%, #003B7A 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 14px;
  border: none;
  box-shadow: var(--shadow-glow);
  transition: all 0.25s var(--ease-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover  { background: linear-gradient(135deg, #003B7A 0%, #001733 100%); transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.96); box-shadow: none; }

/* Gold CTA */
.btn-gold {
  background: linear-gradient(135deg, #C5A059 0%, #9E7D3B 100%);
  color: #1A1200;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: linear-gradient(135deg, #E5C07B 0%, #C5A059 100%); }

/* Ghost outline */
.btn-ghost {
  background: transparent;
  border: 2px solid rgba(0,87,183,0.3);
  color: #0057B7;
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(0,87,183,0.06); border-color: #0057B7; }

/* Ripple effect */
.btn-ripple { position: relative; overflow: hidden; }
.btn-ripple::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.5s var(--ease-smooth);
  border-radius: inherit;
}
.btn-ripple:active::after { transform: scale(2.5); transition: none; }

/* ========================================
   TOP HEADER (Mobile)
   ======================================== */

.top-header-mobile {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(0, 23, 51, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  display: flex;
  align-items: center;
  padding: 0 16px;
  justify-content: space-between;
}

/* Desktop header */
.top-header-desktop {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: var(--shadow-xs);
}

/* ========================================
   BOTTOM NAVIGATION BAR (Mobile-Only)
   ======================================== */

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--bottom-nav-h);
  background: rgba(0, 23, 51, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(197, 160, 89, 0.25);
  display: flex;
  align-items: center;
  padding: 0 8px 6px;
  gap: 2px;
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  position: relative;
  overflow: hidden;
  min-height: 52px;
}

.bottom-nav-item .nav-icon {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.25s var(--ease-spring);
}

.bottom-nav-item .nav-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  white-space: nowrap;
}

.bottom-nav-item.active .nav-label {
  color: #F4E8C1;
}

.bottom-nav-item.active {
  background: rgba(197, 160, 89, 0.15);
}

.bottom-nav-item.active .nav-icon {
  transform: translateY(-2px) scale(1.12);
}

.bottom-nav-item:active {
  transform: scale(0.9);
  background: rgba(197, 160, 89, 0.2);
}

/* Active indicator dot above icon */
.bottom-nav-item.active::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: linear-gradient(90deg, #C5A059, #E5C07B);
  border-radius: 2px;
  animation: tabSlide 0.25s var(--ease-spring) both;
}

/* Cart badge on bottom nav */
.nav-cart-badge {
  position: absolute;
  top: 4px;
  right: 10px;
  min-width: 18px;
  height: 18px;
  background: var(--kvala-terracotta);
  color: white;
  font-size: 10px;
  font-weight: 900;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  animation: cartBounce 0.4s var(--ease-spring);
}

/* ========================================
   HERO BANNER
   ======================================== */

.hero-section {
  background: linear-gradient(
    160deg,
    #001733 0%,
    #002244 40%,
    #003B7A 70%,
    #0057B7 100%
  );
  position: relative;
  overflow: hidden;
}

/* Greek key / meander decorative border */
.meander-strip {
  height: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='4'%3E%3Cpath d='M0 0h8v2H2v2H0zm8 0h2v4h-2zm2-0h6v2h-2v2h-4zm6 0h2v4H16zm2 0h6v2h-2v2h-4zm6 0h2v4h-2zm2 0h8v4h-2V2h-6zm8 0h2v4h-2zm2 0h6v2h-4v2h-2zm6 0h2v4h-2zm2 0h8v2h-6v2h-2z' fill='%23C5A059' fill-opacity='0.6'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 80px 4px;
  animation: meanderScroll 3s linear infinite;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(197,160,89,0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(0,150,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* ========================================
   CATEGORY RUNWAY (Menu Filter Bar)
   ======================================== */

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid rgba(0, 34, 68, 0.08);
  background: #FFFFFF;
  color: #334155;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 34, 68, 0.04);
  user-select: none;
  flex-shrink: 0;
}

.cat-pill:hover {
  border-color: #C5A059;
  color: #002244;
  background: #FDFBF7;
  transform: translateY(-1px);
}

.cat-pill.active {
  background: linear-gradient(135deg, #001733 0%, #003B7A 50%, #0057B7 100%);
  color: #F4E8C1;
  border-color: #E5C07B;
  box-shadow: 0 6px 18px -2px rgba(0, 34, 68, 0.3), 0 0 10px rgba(197, 160, 89, 0.35);
  font-weight: 800;
}

/* Dietary & Chef Pick Filter Chips */
.diet-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid #E2E8F0;
  background: #FFFFFF;
  color: #475569;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  flex-shrink: 0;
  user-select: none;
}

.diet-filter-chip:hover {
  border-color: #C5A059;
  color: #002244;
  background: #FAF8F2;
}

.diet-filter-chip.active {
  background: #002244;
  color: #F4E8C1;
  border-color: #C5A059;
  box-shadow: 0 3px 10px rgba(0, 34, 68, 0.2);
}

/* Wine type pills */
.wine-type-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid rgba(0,0,0,0.08);
  background: #ffffff;
  color: #475569;
  transition: all 0.2s var(--ease-smooth);
  box-shadow: var(--shadow-xs);
}

.wine-type-btn.active {
  background: linear-gradient(135deg, #C5A059, #9E7D3B);
  color: #1A1200;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

/* ========================================
   DISH CARD IMAGE & BADGES
   ======================================== */

.dish-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .dish-img-wrapper { height: 220px; }
}

.dish-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
  will-change: transform;
}

.dish-card:hover .dish-img-wrapper img,
.dish-card-luxury:hover .dish-img-wrapper img {
  transform: scale(1.06);
}

.dish-card-luxury {
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid rgba(197, 160, 89, 0.24);
  box-shadow: 0 4px 16px -2px rgba(0, 34, 68, 0.06), 0 2px 6px -2px rgba(0, 34, 68, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  position: relative;
}

.dish-card-luxury:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -6px rgba(0, 34, 68, 0.12), 0 6px 16px -4px rgba(197, 160, 89, 0.18);
  border-color: rgba(197, 160, 89, 0.55);
}

.dish-card-luxury.animate-in {
  animation: slideUpFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.greek-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  font-weight: 600;
  color: #C5A059;
  line-height: 1.2;
}

.dish-quick-stat {
  font-size: 10px;
  font-weight: 700;
  background: rgba(0, 23, 51, 0.65);
  backdrop-filter: blur(8px);
  padding: 3px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.ingredient-chip {
  font-size: 10px;
  font-weight: 700;
  color: #334155;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 3px 8px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.favorite-heart-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 23, 51, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.favorite-heart-btn:hover {
  transform: scale(1.15);
  background: rgba(0, 23, 51, 0.85);
}

.favorite-heart-btn:active {
  transform: scale(0.9);
}

.dish-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 23, 51, 0.88) 0%,
    rgba(0, 23, 51, 0.35) 45%,
    transparent 100%
  );
}

/* Badge styles */
.badge-bestseller {
  background: linear-gradient(110deg, #C5A059 0%, #F4E8C1 45%, #C5A059 60%, #9E7D3B 100%);
  background-size: 200% 100%;
  animation: shimmerGold 3s infinite;
  color: #1A1200;
  font-weight: 900;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-tag {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  color: white;
  font-weight: 700;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.badge-incart {
  background: var(--kvala-gold);
  color: #1A1200;
  font-weight: 900;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  animation: popIn 0.35s var(--ease-spring);
}

/* ========================================
   PRICE DISPLAY
   ======================================== */

.price-display {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 800;
  color: #E5C07B;
  line-height: 1;
}

.price-display-dark {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  color: #002244;
}

/* ========================================
   ADD TO CART BUTTON
   ======================================== */

.add-to-cart-btn {
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, #0057B7 0%, #003B7A 100%);
  color: white;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 14px;
  border: none;
  box-shadow: 0 4px 14px -4px rgba(0,87,183,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.add-to-cart-btn:hover  { box-shadow: 0 8px 20px -4px rgba(0,87,183,0.6); transform: translateY(-1px); }
.add-to-cart-btn:active { transform: scale(0.96); box-shadow: none; }

/* Quantity counter (replaces button after adding) */
.qty-counter {
  display: flex;
  align-items: center;
  background: #F0F4FF;
  border: 1.5px solid rgba(0,87,183,0.2);
  border-radius: 14px;
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.15s;
  color: #0057B7;
}

.qty-btn:active { background: rgba(0,87,183,0.15); }

.qty-display {
  flex: 1;
  text-align: center;
  font-weight: 900;
  font-size: 14px;
  color: #002244;
  font-family: 'Cinzel', serif;
}

/* ========================================
   TABLE FLOOR PLAN NODES
   ======================================== */

.table-node {
  border-radius: 18px;
  border: 2px solid;
  padding: 14px;
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.table-node:active { transform: scale(0.95); }

.table-node.available {
  background: rgba(16, 185, 129, 0.06);
  border-color: #10B981;
  color: #065F46;
}

.table-node.occupied {
  background: rgba(0, 87, 183, 0.07);
  border-color: #0057B7;
  color: #003B7A;
}

.table-node.occupied::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  border: 2px solid #0057B7;
  animation: pulseGlow 2s infinite;
}

.table-node.reserved {
  background: rgba(197, 160, 89, 0.08);
  border-color: #C5A059;
  color: #9E7D3B;
}

.table-node.selected {
  border-color: #0057B7 !important;
  background: rgba(0, 87, 183, 0.10) !important;
  box-shadow: var(--shadow-glow);
}

/* ========================================
   NAV TAB PILLS (Desktop/Tablet)
   ======================================== */

.nav-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: all 0.22s var(--ease-smooth);
  color: #64748B;
  background: transparent;
}

.nav-tab-btn:hover { background: rgba(0,87,183,0.05); color: #0057B7; }

.nav-tab-btn.active {
  background: linear-gradient(135deg, #0057B7, #002244);
  color: white;
  box-shadow: var(--shadow-glow);
}

/* ========================================
   MODALS
   ======================================== */

.modal-overlay {
  background: rgba(0, 23, 51, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media (min-width: 640px) {
  .modal-overlay { align-items: center; }
}

.modal-sheet {
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  border-radius: 24px 24px 0 0;
  box-shadow: var(--shadow-lg);
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: slideUpFadeIn 0.38s var(--ease-spring) both;
}

@media (min-width: 640px) {
  .modal-sheet {
    border-radius: 24px;
    max-height: 85vh;
  }
}

.modal-drag-handle {
  width: 40px;
  height: 4px;
  background: #E2E8F0;
  border-radius: 4px;
  margin: 10px auto 6px;
  flex-shrink: 0;
}

/* Cart slideover — full right panel on tablet+ */
.cart-panel {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  animation: slideInRight 0.35s var(--ease-smooth) both;
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

/* ========================================
   KDS KITCHEN COLUMNS
   ======================================== */

.kds-col-header {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Live pulse red dot */
.pulse-live-red {
  animation: pulseGlow 1.5s infinite;
  border-radius: 50%;
}

/* ========================================
   ADMIN DASHBOARD
   ======================================== */

.kpi-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(228, 220, 200, 0.6);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-smooth);
}

.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 2px;
}

.kpi-card.blue::before  { background: linear-gradient(180deg, #0057B7, #002244); }
.kpi-card.gold::before  { background: linear-gradient(180deg, #C5A059, #9E7D3B); }
.kpi-card.green::before { background: linear-gradient(180deg, #10B981, #065F46); }
.kpi-card.purple::before { background: linear-gradient(180deg, #7C3AED, #4C1D95); }

.kpi-value {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin: 6px 0 4px;
}

/* Table consumption card */
.table-consumption-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(228, 220, 200, 0.6);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s var(--ease-smooth);
}

.table-consumption-card.occupied {
  border-color: rgba(0, 87, 183, 0.3);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(0,87,183,0.12);
}

/* ========================================
   MOBILE FLOATING CART BAR
   ======================================== */

.mobile-cart-bar {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + 12px);
  left: 16px;
  right: 16px;
  z-index: 55;
  background: linear-gradient(135deg, #0057B7 0%, #002244 100%);
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 24px -4px rgba(0,87,183,0.4), 0 2px 8px rgba(0,34,68,0.2);
  transform: translateY(0);
  transition: all 0.35s var(--ease-spring);
}

.mobile-cart-bar.hidden-bar {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

/* ========================================
   WAVE DECORATIVE HERO BOTTOM
   ======================================== */

.hero-wave-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 48px;
  overflow: hidden;
}

.hero-wave-bottom svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* ========================================
   GREEK BORDER ACCENT LINE
   ======================================== */

.greek-border-gold {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #C5A059 20%, #F4E8C1 50%, #C5A059 80%, transparent 100%);
  position: sticky;
  top: 0;
  z-index: 51;
}

/* ========================================
   WINE CARD (Sommelier)
   ======================================== */

.wine-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(228, 220, 200, 0.6);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .wine-card { flex-direction: row; }
}

.wine-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 160, 89, 0.35);
}

.flavor-bar-fill {
  height: 6px;
  border-radius: 3px;
  transition: width 1s var(--ease-smooth);
}

/* ========================================
   TOAST NOTIFICATIONS
   ======================================== */

.toast-item {
  background: rgba(0, 23, 51, 0.96);
  backdrop-filter: blur(16px);
  color: white;
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  animation: slideUpFadeIn 0.35s var(--ease-spring) both;
  max-width: 340px;
  pointer-events: auto;
}

.toast-success { border-left: 4px solid #10B981; }
.toast-info    { border-left: 4px solid #0057B7; }
.toast-warning { border-left: 4px solid #C5A059; }
.toast-error   { border-left: 4px solid #EF4444; }

/* ========================================
   SOMMELIER ASSOCIATION PILL (on card)
   ======================================== */

.sommelier-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 87, 183, 0.05);
  border: 1px solid rgba(0, 87, 183, 0.15);
  border-radius: 12px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.sommelier-pill:hover {
  background: rgba(0, 87, 183, 0.10);
  border-color: rgba(0, 87, 183, 0.3);
}

/* ========================================
   RESERVATION TABLE NODE
   ======================================== */

.res-slot-btn {
  padding: 12px 20px;
  border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,0.08);
  background: white;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
  text-align: center;
}

.res-slot-btn:hover, .res-slot-btn.active {
  background: #0057B7;
  border-color: #0057B7;
  color: white;
  box-shadow: var(--shadow-glow);
}

/* ========================================
   UTILITY
   ======================================== */

.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Safe area insets (iPhone notch/home bar) */
.pb-safe { padding-bottom: env(safe-area-inset-bottom, 0px); }

/* Blue glow utility */
.blue-glow-btn { box-shadow: 0 4px 14px -4px rgba(0,87,183,0.5); }
.gold-glow-btn { box-shadow: 0 4px 14px -4px rgba(197,160,89,0.5); }

/* Section title */
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 800;
  color: #002244;
  letter-spacing: 0.04em;
}

/* Horizontal scroll area */
.scroll-x-snap {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.scroll-x-snap > * { scroll-snap-align: start; flex-shrink: 0; }

/* Visible scrollbar styled */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(197, 160, 89, 0.3); border-radius: 4px; }

/* body padding for bottom nav on mobile */
@media (max-width: 767px) {
  body { padding-bottom: var(--bottom-nav-h); }
}

/* ========================================
   RICH LUXURY DISH CARDS & MICRO-INTERACTIONS
   ======================================== */

.greek-subtitle {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-style: italic;
  letter-spacing: 0.03em;
  color: #C5A059;
  font-size: 13px;
  line-height: 1.2;
}

.ingredient-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: #F4F7F6;
  border: 1px solid rgba(82, 121, 111, 0.2);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  color: #354F52;
  white-space: nowrap;
}

.dish-quick-stat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 23, 51, 0.65);
  backdrop-filter: blur(8px);
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  color: #FDFBF7;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.favorite-heart-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
}

.favorite-heart-btn:active, .favorite-heart-btn.active {
  background: #D9534F;
  transform: scale(1.2);
  border-color: #D9534F;
  color: white;
}

.wine-pairing-banner {
  background: linear-gradient(135deg, rgba(0, 87, 183, 0.06) 0%, rgba(197, 160, 89, 0.10) 100%);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 14px;
  padding: 8px 12px;
  transition: all 0.25s var(--ease-smooth);
}

.wine-pairing-banner:hover {
  border-color: #C5A059;
  background: linear-gradient(135deg, rgba(0, 87, 183, 0.10) 0%, rgba(197, 160, 89, 0.18) 100%);
}

.dish-card-luxury {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(197, 160, 89, 0.22);
  box-shadow: 0 4px 20px -4px rgba(0, 34, 68, 0.07), 0 2px 6px -2px rgba(0, 34, 68, 0.04);
  overflow: hidden;
  transition: all 0.35s var(--ease-spring);
  display: flex;
  flex-direction: column;
  position: relative;
}

.dish-card-luxury:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 160, 89, 0.5);
  box-shadow: 0 16px 36px -8px rgba(0, 87, 183, 0.14), 0 4px 12px -2px rgba(197, 160, 89, 0.18);
}

.dish-card-luxury:active {
  transform: scale(0.98);
}

.dish-card-luxury.animate-in {
  animation: slideUpFadeIn 0.5s var(--ease-smooth) both;
}

.allergen-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  color: #92400E;
  font-size: 10px;
  font-weight: 700;
  border-radius: 6px;
}

/* Refined Dietary & Chef Pick Quick Filters */
.diet-filter-chip {
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  color: #4B5563;
  background: #FFFFFF;
  border: 1px solid rgba(0, 87, 183, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.22s var(--ease-spring);
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.diet-filter-chip:hover {
  border-color: var(--color-aegean-blue);
  color: var(--color-deep-navy);
  transform: translateY(-1px);
}

.diet-filter-chip.active {
  background: var(--kvala-blue-deep);
  color: #FDFBF7;
  border-color: var(--kvala-gold);
  box-shadow: 0 4px 14px rgba(0, 23, 51, 0.2);
}

/* 1. Philoxenia Hospitality Banner */
.philoxenia-banner {
  background: linear-gradient(135deg, rgba(253, 251, 247, 0.95) 0%, rgba(245, 239, 235, 0.95) 100%);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: 0 4px 18px -4px rgba(0, 34, 68, 0.05);
  position: relative;
  overflow: hidden;
}

.philoxenia-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #C5A059, #E5C07B, #0057B7);
  border-radius: 4px 0 0 4px;
}

/* 2. Terroir Provenance Seal on Dish Cards */
.terroir-seal {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #9E7D3B;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.3);
  padding: 2.5px 8px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

/* 3. Odyssey Chef Tasting Menu Banner */
.odyssey-card {
  background: linear-gradient(135deg, #05162E 0%, #002244 50%, #003B7A 100%);
  border: 1.5px solid rgba(229, 192, 123, 0.45);
  border-radius: 24px;
  color: #FFFFFF;
  padding: 22px;
  box-shadow: 0 16px 40px -8px rgba(0, 23, 51, 0.35);
  position: relative;
  overflow: hidden;
}

.odyssey-course-step {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 10px 12px;
  backdrop-blur-md: blur(8px);
}

/* 4. Ambient Music Player Pill */
.ambient-music-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(0, 87, 183, 0.08);
  color: #0057B7;
  border: 1px solid rgba(0, 87, 183, 0.2);
  cursor: pointer;
  transition: all 0.2s var(--ease-spring);
}

.ambient-music-btn.playing {
  background: linear-gradient(135deg, #0057B7 0%, #002244 100%);
  color: #FDFBF7;
  border-color: #C5A059;
  box-shadow: 0 0 14px rgba(197, 160, 89, 0.4);
}

/* 5. VIP Preference Chips in Reservation */
.vip-chip {
  padding: 8px 14px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
  background: #FDFBF7;
  color: #334155;
  border: 1.5px solid #E2E8F0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.vip-chip.selected {
  background: #002244;
  color: #F4E8C1;
  border-color: #C5A059;
  box-shadow: 0 4px 12px rgba(0, 34, 68, 0.2);
}

/* ==========================================================================
   6. DIGITAL SERVICE BELL & CONCIERGE (TOP SENIOR DEVELOPER EXPERIENCE)
   ========================================================================== */
.floating-service-bell {
  position: fixed;
  bottom: 82px;
  right: 16px;
  z-index: 45;
  background: linear-gradient(135deg, #001733 0%, #003B7A 100%);
  color: #F4E8C1;
  border: 1.5px solid #E5C07B;
  border-radius: 9999px;
  padding: 9px 15px;
  box-shadow: 0 10px 30px -4px rgba(0, 23, 51, 0.4), 0 0 16px rgba(197, 160, 89, 0.35);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
  .floating-service-bell {
    bottom: 28px;
    right: 28px;
    padding: 12px 20px;
    font-size: 13px;
  }
}

.floating-service-bell:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px -4px rgba(0, 23, 51, 0.5), 0 0 24px rgba(197, 160, 89, 0.55);
}

.floating-service-bell:active {
  transform: scale(0.95);
}

.service-action-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 18px;
  padding: 14px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s var(--ease-spring);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.service-action-card:hover {
  border-color: #C5A059;
  background: #FDFBF7;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.service-action-card:active {
  transform: scale(0.96);
  background: #E3F0FF;
}

/* ==========================================================================
   7. SMART BILL SPLITTER & TIP CALCULATOR
   ========================================================================== */
.bill-splitter-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF8F2 100%);
  border: 1.5px solid rgba(197, 160, 89, 0.35);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow-md);
  margin-top: 16px;
}

.tip-btn {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
  background: #FFFFFF;
  color: #334155;
  border: 1.5px solid #E2E8F0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tip-btn.active {
  background: linear-gradient(135deg, #002244 0%, #0057B7 100%);
  color: #FFFFFF;
  border-color: #C5A059;
  box-shadow: 0 4px 12px rgba(0, 87, 183, 0.25);
}

.split-counter-btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  color: #002244;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.split-counter-btn:active {
  background: #E2E8F0;
  transform: scale(0.9);
}

/* ==========================================================================
   8. SOMMELIER WINE PAIRING & FLAVOR MATRIX
   ========================================================================== */
.flavor-bar {
  height: 6px;
  background: #E2E8F0;
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.flavor-fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, #C5A059 0%, #9E7D3B 100%);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   9. LIVE KITCHEN ORDER TRACKER & TIMELINE
   ========================================================================== */
.kitchen-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 20px;
}

.kitchen-step:last-child {
  padding-bottom: 0;
}

.kitchen-step::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: -4px;
  width: 2px;
  background: #E2E8F0;
}

.kitchen-step:last-child::before {
  display: none;
}

.kitchen-step.completed::before {
  background: #0057B7;
}

.kitchen-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #64748B;
  border: 2px solid #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  z-index: 2;
  transition: all 0.3s ease;
}

.kitchen-step.active .kitchen-step-icon {
  background: #0057B7;
  color: #FFFFFF;
  border-color: #C5A059;
  box-shadow: 0 0 0 4px rgba(0, 87, 183, 0.2);
  animation: pulseGlow 2s infinite;
}

.kitchen-step.completed .kitchen-step-icon {
  background: #10B981;
  color: #FFFFFF;
  border-color: #10B981;
}

/* ==========================================================================
   10. INTERACTIVE COTROCENI VILLA FLOORPLAN
   ========================================================================== */
.floorplan-zone-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.table-pill-interactive {
  padding: 12px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  cursor: pointer;
  transition: all 0.2s var(--ease-spring);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.table-pill-interactive:hover {
  transform: translateY(-2px);
  border-color: #C5A059;
  box-shadow: var(--shadow-sm);
}

.table-pill-interactive.selected {
  background: linear-gradient(135deg, #001733 0%, #003B7A 100%);
  border-color: #E5C07B;
  color: #FFFFFF;
  box-shadow: 0 8px 24px -4px rgba(0, 34, 68, 0.3);
}

.table-pill-interactive.selected .text-slate-500 {
  color: #F4E8C1 !important;
}

.table-pill-interactive.selected .text-slate-800 {
  color: #FFFFFF !important;
}

/* ==========================================================================
   11. MULTI-CURRENCY CONVERTER PILL
   ========================================================================== */
.currency-btn {
  padding: 3px 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  color: #64748B;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}

.currency-btn.active {
  background: #002244;
  color: #F4E8C1;
  box-shadow: 0 2px 6px rgba(0, 34, 68, 0.15);
}

/* ==========================================================================
   12. SLIDE-DOWN QUICK PREFERENCES POPOVER
   ========================================================================== */
.quick-settings-popover {
  box-shadow: 0 20px 40px -10px rgba(0, 23, 51, 0.28), 0 0 0 1px rgba(197, 160, 89, 0.25);
  animation: slideDownSmooth 0.24s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDownSmooth {
  from { opacity: 0; transform: translateY(-10px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.popover-segment-btn {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #64748B;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.popover-segment-btn:hover {
  color: #0F172A;
  background: rgba(255, 255, 255, 0.5);
}

.popover-segment-btn.active {
  background: #FFFFFF;
  color: #0057B7;
  box-shadow: 0 2px 8px rgba(0, 34, 68, 0.12);
  font-weight: 800;
}

/* ==========================================================================
   13. COTROCENI & AEGEAN TERROIR COMPASS SYSTEM
   ========================================================================== */
.terroir-compass-container {
  background: linear-gradient(135deg, rgba(0, 23, 51, 0.03) 0%, rgba(197, 160, 89, 0.08) 100%);
  border: 1.5px solid rgba(197, 160, 89, 0.25);
  border-radius: 24px;
  padding: 16px 20px;
}

.terroir-compass-pill {
  padding: 10px 16px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 34, 68, 0.04);
}

.terroir-compass-pill:hover {
  border-color: #C5A059;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(197, 160, 89, 0.15);
}

.terroir-compass-pill.active {
  background: linear-gradient(135deg, #001733 0%, #002244 50%, #0057B7 100%);
  color: #F4E8C1;
  border-color: #E5C07B;
  box-shadow: 0 8px 24px -4px rgba(0, 34, 68, 0.3), 0 0 14px rgba(197, 160, 89, 0.35);
}

.terroir-compass-pill.active .terroir-sub {
  color: #E5C07B !important;
}

.terroir-seal {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9E7D3B;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.35);
  padding: 3px 8px;
  border-radius: 8px;
}

.wine-pairing-banner {
  background: linear-gradient(135deg, #FAF8F2 0%, #F4EFE6 100%);
  border: 1px dashed rgba(197, 160, 89, 0.5);
  border-radius: 12px;
  padding: 8px 12px;
  transition: all 0.2s ease;
}

.wine-pairing-banner:hover {
  background: #F4EFE6;
  border-color: #0057B7;
}

.cotroceni-seating-live-pill {
  background: rgba(0, 23, 51, 0.04);
  border: 1px solid rgba(0, 34, 68, 0.08);
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   14. BESPOKE DESKTOP & LAPTOP SLIDERS AND CAPSULES (QUIET LUXURY)
   ========================================================================== */
.segmented-capsule {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 23, 51, 0.04);
  padding: 3px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 23, 51, 0.08);
  gap: 2px;
}

.seg-btn {
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  color: #64748B;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  white-space: nowrap;
}

.seg-btn:hover {
  color: #002244;
}

.seg-btn.active {
  background: #FFFFFF;
  color: #0057B7;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0, 34, 68, 0.12);
}

.capsule-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 9999px;
  background: rgba(0, 87, 183, 0.05);
  border: 1px solid rgba(0, 87, 183, 0.15);
  color: #0057B7;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.capsule-btn:hover {
  background: rgba(0, 87, 183, 0.1);
  border-color: #0057B7;
}

.capsule-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #001733 0%, #003B7A 100%);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  border: 1.5px solid #E5C07B;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 23, 51, 0.25);
  white-space: nowrap;
}

.capsule-cart-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 23, 51, 0.35);
}

.cart-pill-badge {
  background: #E5C07B;
  color: #001733;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 9999px;
}

/* ========================================
   HIGH-CONTRAST SOLID LUXURY DROPDOWN MENUS
   ======================================== */
.luxury-dropdown-menu {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  width: 170px !important;
  background-color: #FFFFFF !important;
  background: #FFFFFF !important;
  border-radius: 16px !important;
  border: 1.5px solid #C5A059 !important;
  box-shadow: 0 20px 45px -10px rgba(0, 23, 51, 0.45), 0 0 0 1px rgba(197, 160, 89, 0.3) !important;
  padding: 6px !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
  animation: popIn 0.18s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
  transform-origin: top right !important;
}

.luxury-dropdown-menu.hidden {
  display: none !important;
}

.luxury-dropdown-item {
  width: 100% !important;
  text-align: left !important;
  padding: 9px 12px !important;
  border-radius: 10px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  color: #002244 !important;
  background: transparent !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
}

.luxury-dropdown-item:hover, .luxury-dropdown-item:active {
  background-color: #E3F0FF !important;
  color: #0057B7 !important;
  transform: translateX(2px) !important;
}

.luxury-dropdown-item.active {
  background-color: #002244 !important;
  color: #F4E8C1 !important;
}

.animate-pop {
  animation: popIn 0.18s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: top right;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

