/* ==========================================================
   THEME: 01. RESTAURANT - Aetheria Bistro (Warm & Appetizing)
   ========================================================== */

:root {
  --theme-restaurant-primary: #f97316;
  --theme-restaurant-primary-hover: #ea580c;
  --theme-restaurant-primary-rgb: 249, 115, 22;
  --theme-restaurant-secondary: #ea580c;
  --theme-restaurant-accent: #f59e0b;
  --theme-restaurant-dark-bg: #0f172a;
  --theme-restaurant-dark-card: #1e293b;
  --theme-restaurant-dark-text: #f8fafc;
  --theme-restaurant-light-bg: #f8fafc;
  --theme-restaurant-light-card: #ffffff;
  --theme-restaurant-light-text: #0f172a;
  --theme-restaurant-radius: 24px;
}

/* Base theme styling */
.theme-restaurant {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.01em;
}

/* Warm appetizing card styling */
.theme-restaurant .product-card-grid {
  background-color: var(--card-bg);
  border: 1px solid color-mix(in srgb, var(--text-color) 8%, transparent);
  border-radius: var(--border-radius);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
}

.theme-restaurant .product-card-grid:hover {
  border-color: rgba(var(--theme-restaurant-primary-rgb), 0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -4px rgba(var(--theme-restaurant-primary-rgb), 0.15);
}

/* Glowing action buttons */
.theme-restaurant .btn-primary-action {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
  transition: all 0.2s ease;
}

.theme-restaurant .btn-primary-action:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

/* Category round badge icon */
.theme-restaurant .cat-circle-pill {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.theme-restaurant .cat-circle-pill.active {
  background: var(--primary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
  transform: scale(1.05);
}
