/* ============================================================================
   ABATANADO USER AREA STYLES
   Modern Dashboard Design - 2025/2026 Aesthetic
   Consistent with Abatanado Design System
   ============================================================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Force no horizontal scroll on user area pages */
html {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  box-sizing: border-box;
}

body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  position: relative;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* ===== CORE DESIGN SYSTEM VARIABLES ===== */
:root {
  /* Brand Colors */
  --business-primary: #df691a;
  --business-secondary: #fd7e14;
  --business-accent: #ffc107;
  --business-dark: #1a1d21;
  --business-darker: #121416;
  --business-card: rgba(58, 63, 68, 0.6);
  --business-card-solid: #2a2f34;
  --business-card-hover: rgba(69, 75, 80, 0.8);
  --business-text: #ffffff;
  --business-text-muted: #a8b2bd;
  --business-border: rgba(255, 255, 255, 0.08);
  --business-border-light: rgba(255, 255, 255, 0.12);
  --business-glow: rgba(223, 105, 26, 0.5);
  
  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(223, 105, 26, 0.25);
  --shadow-glow-intense: 0 0 60px rgba(223, 105, 26, 0.4);
  
  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  
  /* Glassmorphism */
  --glass-bg: rgba(42, 47, 52, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(20px);
  
  /* User Area Specific */
  --ua-sidebar-bg: rgba(26, 29, 33, 0.95);
  --ua-sidebar-width: 340px;
  --ua-sidebar-collapsed-width: 80px;
  --ua-header-height: 70px;
  --ua-card-hover-scale: 1.02;
  
  /* Status Colors */
  --ua-status-active: #28a745;
  --ua-status-pending: #ffc107;
  --ua-status-inactive: #6c757d;
  --ua-status-error: #dc3545;
  
  /* Dashboard Gradients */
  --ua-stat-gradient-1: linear-gradient(135deg, #df691a 0%, #fd7e14 100%);
  --ua-stat-gradient-2: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  --ua-stat-gradient-3: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
  --ua-stat-gradient-4: linear-gradient(135deg, #17a2b8 0%, #0dcaf0 100%);
}

/* ===== GLOBAL STYLES ===== */
body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--business-darker);
  color: var(--business-text);
}

/* Smooth scroll and selection */
html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--business-primary);
  color: white;
}

/* Custom Scrollbar - Minimal Modern */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(223, 105, 26, 0.4);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--business-primary);
}

/* ===== ACCESSIBILITY TOGGLE - User Area Override ===== */
.user-area-wrapper ~ .accessibility-toggle,
.accessibility-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  top: auto;
  z-index: 1050;
}

/* ===== USER AREA LAYOUT ===== */
.user-area-wrapper {
  display: flex;
  min-height: 100vh;
  background: var(--business-darker);
  position: relative;
  overflow-x: hidden;
}

/* Prevent horizontal scrollbar on user area pages */
body:has(.user-area-wrapper) {
  overflow-x: hidden;
}

.user-area-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin-left: var(--ua-sidebar-width);
  transition: margin-left var(--transition-normal);
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  max-width: calc(100vw - var(--ua-sidebar-width));
}

.user-area-main.sidebar-collapsed {
  margin-left: var(--ua-sidebar-collapsed-width);
  max-width: calc(100vw - var(--ua-sidebar-collapsed-width));
}

/* ===== SIDEBAR NAVIGATION ===== */
.ua-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--ua-sidebar-width);
  background: linear-gradient(180deg, rgba(26, 29, 33, 0.98) 0%, rgba(18, 20, 22, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid var(--glass-border);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: width var(--transition-normal), transform var(--transition-normal);
  overflow: hidden;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.3);
}

/* Sidebar gradient accent line */
.ua-sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--business-primary) 0%, transparent 50%, var(--business-secondary) 100%);
  opacity: 0.5;
}

.ua-sidebar.collapsed {
  width: var(--ua-sidebar-collapsed-width);
}

/* ===== HOVER-TO-PEEK: collapsed sidebar expands on hover without shifting layout ===== */
.ua-sidebar.collapsed.hover-expanded {
  width: var(--ua-sidebar-width);
  box-shadow: 6px 0 32px rgba(0, 0, 0, 0.5);
}

/* Restore toggle button to normal position */
.ua-sidebar.collapsed.hover-expanded .ua-sidebar-toggle {
  right: 12px;
  top: 22px;
  transform: none;
}
.ua-sidebar.collapsed.hover-expanded .ua-sidebar-toggle:hover {
  transform: scale(1.15);
}
.ua-sidebar.collapsed.hover-expanded .ua-sidebar-toggle i {
  transform: rotate(180deg); /* keep "click to expand permanently" indicator */
}

/* Restore logo text */
.ua-sidebar.collapsed.hover-expanded .ua-sidebar-logo span {
  opacity: 1;
  width: auto;
  overflow: visible;
}

/* Restore profile section */
.ua-sidebar.collapsed.hover-expanded .ua-sidebar-profile {
  opacity: 1;
  visibility: visible;
  max-height: none;
  padding: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

/* Restore profile info */
.ua-sidebar.collapsed.hover-expanded .ua-profile-info {
  opacity: 1;
  width: auto;
  overflow: visible;
}

/* Restore nav padding */
.ua-sidebar.collapsed.hover-expanded .ua-sidebar-nav {
  padding-top: 1rem;
}

/* Restore section titles */
.ua-sidebar.collapsed.hover-expanded .ua-nav-section-title {
  opacity: 1;
  height: auto;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  overflow: visible;
}

/* Restore nav item labels */
.ua-sidebar.collapsed.hover-expanded .ua-nav-item span {
  opacity: 1;
  width: auto;
  overflow: visible;
}

/* Restore badges to inline position */
.ua-sidebar.collapsed.hover-expanded .ua-nav-badge {
  position: relative;
  top: auto;
  right: auto;
  margin-left: auto;
}

/* Restore language flags */
.ua-sidebar.collapsed.hover-expanded .ua-nav-lang-flags {
  display: flex;
}
/* =================================================================== */


.ua-sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--ua-header-height);
}

.ua-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--business-text);
  font-weight: 700;
  font-size: 1.25rem;
}

.ua-sidebar-logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.ua-sidebar-logo span {
  white-space: nowrap;
  opacity: 1;
  transition: opacity var(--transition-fast);
}

.ua-sidebar.collapsed .ua-sidebar-logo span {
  opacity: 0;
  width: 0;
  overflow: hidden;
}

/* Sidebar Toggle Button */
.ua-sidebar-toggle {
  position: absolute;
  right: 12px;
  top: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 1010;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.ua-sidebar-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.ua-sidebar-toggle i {
  font-size: 0.8rem;
  transition: transform var(--transition-fast);
}

.ua-sidebar.collapsed .ua-sidebar-toggle {
  right: 50%;
  top: 12px;
  transform: translateX(50%);
}

.ua-sidebar.collapsed .ua-sidebar-toggle:hover {
  transform: translateX(50%) scale(1.15);
}

.ua-sidebar.collapsed .ua-sidebar-toggle i {
  transform: rotate(180deg);
}

/* Sidebar User Profile Section */
.ua-sidebar-profile {
  padding: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(223, 105, 26, 0.05) 0%, transparent 100%);
  transition: all var(--transition-normal);
}

.ua-sidebar.collapsed .ua-sidebar-profile {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  padding: 0 1.5rem;
  border-bottom: none;
  overflow: hidden;
}

.ua-profile-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ua-stat-gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 
    0 4px 15px rgba(223, 105, 26, 0.4),
    inset 0 -2px 5px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-normal);
}

.ua-profile-avatar:hover {
  transform: scale(1.05);
  box-shadow: 
    0 6px 20px rgba(223, 105, 26, 0.5),
    inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

/* Animated border ring */
.ua-profile-avatar::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--business-primary), var(--business-secondary), var(--business-primary));
  z-index: -1;
  animation: spin 8s linear infinite;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.ua-sidebar-profile:hover .ua-profile-avatar::before {
  opacity: 1;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.ua-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ua-profile-info {
  flex: 1;
  min-width: 0;
  opacity: 1;
  transition: opacity var(--transition-fast);
}

.ua-sidebar.collapsed .ua-profile-info {
  opacity: 0;
  width: 0;
  overflow: hidden;
}

.ua-profile-name {
  font-weight: 600;
  color: var(--business-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.95rem;
}

.ua-profile-email {
  font-size: 0.8rem;
  color: var(--business-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sidebar Navigation */
.ua-sidebar-nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1rem 0;
  transition: padding var(--transition-normal);
}

.ua-sidebar.collapsed .ua-sidebar-nav {
  padding-top: 3.5rem;
}

.ua-nav-section {
  padding: 0 0.75rem;
  margin-bottom: 1.5rem;
}

.ua-nav-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--business-text-muted);
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  opacity: 1;
  transition: opacity var(--transition-fast);
}

.ua-sidebar.collapsed .ua-nav-section-title {
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.ua-nav-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--business-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
  position: relative;
  margin-bottom: 0.25rem;
  cursor: pointer;
  overflow: hidden;
}

/* Hover glow effect */
.ua-nav-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at left center, rgba(223, 105, 26, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.ua-nav-item:hover::after {
  opacity: 1;
}

.ua-nav-item:hover {
  background: rgba(223, 105, 26, 0.08);
  color: var(--business-text);
  transform: translateX(4px);
}

.ua-nav-item.active {
  background: linear-gradient(90deg, rgba(223, 105, 26, 0.2) 0%, rgba(223, 105, 26, 0.05) 100%);
  color: var(--business-primary);
}

.ua-nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: var(--ua-stat-gradient-1);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 15px rgba(223, 105, 26, 0.5);
}

.ua-nav-item i {
  width: 24px;
  text-align: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
}

.ua-nav-item:hover i {
  color: var(--business-primary);
  transform: scale(1.1);
}

.ua-nav-item.active i {
  color: var(--business-primary);
  filter: drop-shadow(0 0 8px rgba(223, 105, 26, 0.5));
}

.ua-nav-item span {
  white-space: nowrap;
  opacity: 1;
  transition: opacity var(--transition-fast);
  position: relative;
  z-index: 1;
}

.ua-sidebar.collapsed .ua-nav-item span {
  opacity: 0;
  width: 0;
  overflow: hidden;
}

.ua-nav-badge {
  margin-left: auto;
  background: var(--ua-stat-gradient-1);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  min-width: 22px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(223, 105, 26, 0.3);
  position: relative;
  z-index: 1;
}

.ua-sidebar.collapsed .ua-nav-badge {
  position: absolute;
  top: 5px;
  right: 10px;
  margin-left: 0;
}

/* Sidebar Footer */
.ua-sidebar-footer {
  padding: 1rem 0.75rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.2);
}

.ua-sidebar-footer .ua-nav-item {
  color: var(--business-text-muted);
}

.ua-sidebar-footer .ua-nav-item:hover {
  color: var(--ua-status-error);
  background: rgba(220, 53, 69, 0.1);
}

/* ===== SIDEBAR LANGUAGE FLAG SWITCHER ===== */
.ua-nav-lang-flags {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem 0.75rem;
}

.ua-flag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 2.25rem;
  font-size: 1.35rem;
  line-height: 1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}

.ua-flag-btn:hover {
  transform: scale(1.1);
  border-color: rgba(223, 105, 26, 0.4);
  box-shadow: 0 4px 10px rgba(223, 105, 26, 0.2);
  background: rgba(223, 105, 26, 0.08);
}

.ua-flag-btn.active {
  border-color: rgba(223, 105, 26, 0.7);
  box-shadow: 0 0 10px rgba(223, 105, 26, 0.35);
  background: rgba(223, 105, 26, 0.18);
}

/* Collapsed sidebar — hide language flags entirely */
.ua-sidebar.collapsed .ua-nav-lang-flags {
  display: none;
}

/* ===== HEADER ===== */
.ua-header {
  height: var(--ua-header-height);
  background: linear-gradient(180deg, rgba(42, 47, 52, 0.95) 0%, rgba(30, 33, 37, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Subtle bottom gradient accent */
.ua-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(223, 105, 26, 0.3) 50%, transparent 100%);
}

.ua-header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ua-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--business-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.ua-header-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--business-text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ua-header-title i {
  background: var(--ua-stat-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(223, 105, 26, 0.3));
}

.ua-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Header Search */
.ua-header-search {
  position: relative;
}

.ua-header-search input {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 0.75rem 1.25rem 0.75rem 3rem;
  color: var(--business-text);
  font-size: 0.9rem;
  width: 300px;
  transition: all var(--transition-normal);
}

.ua-header-search input:focus {
  outline: none;
  border-color: var(--business-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(223, 105, 26, 0.15);
}

.ua-header-search input::placeholder {
  color: var(--business-text-muted);
}

.ua-header-search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--business-text-muted);
}

/* Section Search Box (fm-search-box) */
.fm-search-box {
  flex: 1;
  min-width: 300px;
  position: relative;
  margin-left: auto;
}

.fm-search-box input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3.5rem;
  background: rgba(58, 63, 68, 0.6);
  backdrop-filter: blur(20px);
  border: 2px solid var(--business-border, rgba(255, 255, 255, 0.1));
  border-radius: var(--radius-lg, 16px);
  color: var(--business-text, #ffffff);
  font-size: 1rem;
  font-weight: 400;
  transition: all var(--transition-normal);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fm-search-box input::placeholder {
  color: var(--business-text-muted, #a8b2bd);
  opacity: 0.7;
}

.fm-search-box input:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(58, 63, 68, 0.7);
}

.fm-search-box input:focus {
  outline: none;
  border-color: var(--business-primary, #df691a);
  background: rgba(58, 63, 68, 0.8);
  box-shadow: 0 4px 16px rgba(223, 105, 26, 0.2), 0 0 0 4px rgba(223, 105, 26, 0.1);
}

.fm-search-box i {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--business-primary, #df691a);
  font-size: 1.1rem;
  transition: all var(--transition-normal);
  pointer-events: none;
  z-index: 1;
}

.fm-search-box:hover i {
  color: var(--business-secondary, #fd7e14);
  transform: translateY(-50%) scale(1.1);
}

/* Header Icons/Actions */
.ua-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ua-header-action {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--business-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.ua-header-action:hover {
  background: rgba(223, 105, 26, 0.1);
  border-color: var(--business-primary);
  color: var(--business-primary);
}

.ua-header-action .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ua-status-error);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== MAIN CONTENT AREA ===== */
.ua-content {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}

/* ===== DASHBOARD STATS CARDS ===== */
.ua-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ua-stat-card {
  background: linear-gradient(145deg, rgba(42, 47, 52, 0.8) 0%, rgba(30, 33, 37, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

/* Animated gradient border on hover */
.ua-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transition: all var(--transition-normal);
}

/* Inner glow effect */
.ua-stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(223, 105, 26, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.ua-stat-card:hover::after {
  opacity: 1;
}

.ua-stat-card.stat-primary::before {
  background: var(--ua-stat-gradient-1);
}

.ua-stat-card.stat-success::before {
  background: var(--ua-stat-gradient-2);
}

.ua-stat-card.stat-purple::before {
  background: var(--ua-stat-gradient-3);
}

.ua-stat-card.stat-info::before {
  background: var(--ua-stat-gradient-4);
}

.ua-stat-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(223, 105, 26, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(223, 105, 26, 0.3);
}

.ua-stat-card.stat-primary:hover {
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(223, 105, 26, 0.2);
}

.ua-stat-card.stat-success:hover {
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(40, 167, 69, 0.2);
}

.ua-stat-card.stat-purple:hover {
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(111, 66, 193, 0.2);
}

.ua-stat-card.stat-info:hover {
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(23, 162, 184, 0.2);
}

.ua-stat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.ua-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition-normal);
  position: relative;
}

.ua-stat-card:hover .ua-stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-primary .ua-stat-icon {
  background: linear-gradient(135deg, rgba(223, 105, 26, 0.2) 0%, rgba(253, 126, 20, 0.1) 100%);
  color: var(--business-primary);
  box-shadow: 0 4px 15px rgba(223, 105, 26, 0.2);
}

.stat-success .ua-stat-icon {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.2) 0%, rgba(32, 201, 151, 0.1) 100%);
  color: var(--ua-status-active);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.stat-purple .ua-stat-icon {
  background: linear-gradient(135deg, rgba(111, 66, 193, 0.2) 0%, rgba(232, 62, 140, 0.1) 100%);
  color: #6f42c1;
  box-shadow: 0 4px 15px rgba(111, 66, 193, 0.2);
}

.stat-info .ua-stat-icon {
  background: linear-gradient(135deg, rgba(23, 162, 184, 0.2) 0%, rgba(13, 202, 240, 0.1) 100%);
  color: #17a2b8;
  box-shadow: 0 4px 15px rgba(23, 162, 184, 0.2);
}

.ua-stat-trend {
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
}

.ua-stat-trend.up {
  color: var(--ua-status-active);
  background: rgba(40, 167, 69, 0.1);
}

.ua-stat-trend.down {
  color: var(--ua-status-error);
  background: rgba(220, 53, 69, 0.1);
}

.ua-stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--business-text);
  line-height: 1.2;
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--business-text) 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.ua-stat-label {
  font-size: 0.85rem;
  color: var(--business-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

/* ===== CONTENT CARDS/SECTIONS ===== */
.ua-card {
  background: linear-gradient(145deg, rgba(42, 47, 52, 0.7) 0%, rgba(30, 33, 37, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
  position: relative;
}

/* Subtle top gradient accent */
.ua-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(223, 105, 26, 0.5) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.ua-card:hover::before {
  opacity: 1;
}

.ua-card:hover {
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(223, 105, 26, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.ua-card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.15);
}

.ua-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--business-text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.ua-card-title i {
  color: var(--business-primary);
  font-size: 1.25rem;
}

.ua-card-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ua-card-body {
  padding: 1.5rem;
}

.ua-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.15);
}

/* ===== LISTING MANAGEMENT TABLE ===== */
.ua-table-wrapper {
  overflow-x: auto;
}

.ua-table {
  width: 100%;
  border-collapse: collapse;
}

.ua-table th {
  text-align: left;
  padding: 1rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--business-text-muted);
  border-bottom: 1px solid var(--glass-border);
  white-space: nowrap;
}

.ua-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--glass-border);
  color: var(--business-text);
  vertical-align: middle;
}

.ua-table tbody tr {
  transition: background var(--transition-fast);
}

.ua-table tbody tr:hover {
  background: rgba(223, 105, 26, 0.05);
}

.ua-table tbody tr:last-child td {
  border-bottom: none;
}

/* Table Listing Cell */
.ua-listing-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ua-listing-thumb {
  width: 60px;
  height: 45px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.ua-listing-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ua-listing-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--business-text);
  margin-bottom: 0.25rem;
}

.ua-listing-info span {
  font-size: 0.8rem;
  color: var(--business-text-muted);
}

/* Status Badges */
.ua-status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.ua-status.status-active {
  background: rgba(40, 167, 69, 0.15);
  color: var(--ua-status-active);
}

.ua-status.status-pending {
  background: rgba(255, 193, 7, 0.15);
  color: var(--ua-status-pending);
}

.ua-status.status-inactive {
  background: rgba(108, 117, 125, 0.15);
  color: var(--ua-status-inactive);
}

.ua-status.status-error {
  background: rgba(220, 53, 69, 0.15);
  color: var(--ua-status-error);
}

.ua-status i {
  font-size: 0.5rem;
}

/* Franchise Manager Status Badge */
.fm-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}

.fm-status-badge.offline {
  background: rgba(108, 117, 125, 0.15);
  color: #a8b2bd;
}

.fm-status-badge.approved {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
}

.fm-status-badge.notInUse {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
}

.fm-status-badge.pending {
  background: rgba(253, 126, 20, 0.15);
  color: var(--business-secondary);
}

.fm-status-badge.reported {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

.fm-status-badge i {
  font-size: 0.5rem;
}

/* Franchise Manager Tier Badge */
.fm-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fm-tier-badge.tier-free {
  background: rgba(108, 117, 125, 0.15);
  color: #a8b2bd;
}

.fm-tier-badge.tier-premium {
  background: linear-gradient(135deg, rgba(223, 105, 26, 0.25), rgba(253, 126, 20, 0.15));
  color: var(--business-primary);
  border: 1px solid rgba(223, 105, 26, 0.3);
}

.fm-tier-badge.tier-premium i {
  color: #ffc107;
}

.fm-tier-badge i {
  font-size: 0.625rem;
}

/* Table Actions */
.ua-table-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ua-table-action {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--business-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.ua-table-action:hover {
  background: rgba(223, 105, 26, 0.1);
  border-color: var(--business-primary);
  color: var(--business-primary);
}

.ua-table-action.action-edit:hover {
  background: rgba(23, 162, 184, 0.15);
  border-color: #17a2b8;
  color: #17a2b8;
}

.ua-table-action.action-delete:hover {
  background: rgba(220, 53, 69, 0.15);
  border-color: var(--ua-status-error);
  color: var(--ua-status-error);
}

/* ===== QUICK ACTIONS GRID ===== */
.ua-quick-actions {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.ua-quick-action {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(145deg, rgba(42, 47, 52, 0.6) 0%, rgba(30, 33, 37, 0.7) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  text-decoration: none;
  color: var(--business-text);
  transition: all var(--transition-normal);
  cursor: pointer;
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Animated gradient background on hover */
.ua-quick-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(223, 105, 26, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

/* Bottom border gradient */
.ua-quick-action::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--ua-stat-gradient-1);
  transition: width var(--transition-normal);
  border-radius: 3px 3px 0 0;
}

.ua-quick-action:hover::before {
  opacity: 1;
}

.ua-quick-action:hover::after {
  width: 60%;
}

.ua-quick-action:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 24px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(223, 105, 26, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: var(--business-primary);
  background: rgba(223, 105, 26, 0.08);
}

.ua-quick-action-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(223, 105, 26, 0.15) 0%, rgba(223, 105, 26, 0.05) 100%);
  flex-shrink: 0;
}

.ua-quick-action-icon i {
  font-size: 1rem;
  background: var(--ua-stat-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ua-quick-action:hover .ua-quick-action-icon {
  background: linear-gradient(135deg, rgba(223, 105, 26, 0.25) 0%, rgba(223, 105, 26, 0.1) 100%);
}

.ua-quick-action-text {
  font-weight: 600;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* ===== BUTTONS ===== */
.ua-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.ua-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.ua-btn:hover::before {
  left: 100%;
}

.ua-btn-primary {
  background: var(--ua-stat-gradient-1);
  color: white;
  box-shadow: 0 4px 15px rgba(223, 105, 26, 0.3);
}

.ua-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 12px 30px rgba(223, 105, 26, 0.4),
    0 0 30px rgba(223, 105, 26, 0.2);
}

.ua-btn-secondary {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid var(--glass-border);
  color: var(--business-text);
}

.ua-btn-secondary:hover {
  background: linear-gradient(145deg, rgba(223, 105, 26, 0.15) 0%, rgba(223, 105, 26, 0.05) 100%);
  border-color: var(--business-primary);
  color: var(--business-primary);
  transform: translateY(-2px);
}

.ua-btn-success {
  background: var(--ua-stat-gradient-2);
  color: white;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.ua-btn-success:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 12px 30px rgba(40, 167, 69, 0.4),
    0 0 30px rgba(40, 167, 69, 0.2);
}

.ua-btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

.ua-btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.1rem;
}

/* ===== ACTIVITY FEED ===== */
.ua-activity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ua-activity-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.ua-activity-item:last-child {
  border-bottom: none;
}

.ua-activity-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.ua-activity-icon.icon-view {
  background: rgba(23, 162, 184, 0.15);
  color: #17a2b8;
}

.ua-activity-icon.icon-message {
  background: rgba(111, 66, 193, 0.15);
  color: #6f42c1;
}

.ua-activity-icon.icon-event {
  background: rgba(40, 167, 69, 0.15);
  color: var(--ua-status-active);
}

.ua-activity-icon.icon-sale {
  background: rgba(223, 105, 26, 0.15);
  color: var(--business-primary);
}

.ua-activity-content {
  flex: 1;
  min-width: 0;
}

.ua-activity-content p {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  color: var(--business-text);
}

.ua-activity-content span {
  font-size: 0.8rem;
  color: var(--business-text-muted);
}

/* ===== TABS ===== */
.ua-tabs {
  display: flex;
  gap: 0.25rem;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1px;
}

.ua-tab {
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--business-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.ua-tab:hover {
  color: var(--business-text);
}

.ua-tab.active {
  color: var(--business-primary);
}

.ua-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--business-primary);
  border-radius: 2px 2px 0 0;
}

/* ===== EMPTY STATE ===== */
.ua-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

.ua-empty-state i {
  font-size: 4rem;
  color: var(--business-text-muted);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.ua-empty-state h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--business-text);
  margin-bottom: 0.5rem;
}

.ua-empty-state p {
  font-size: 0.95rem;
  color: var(--business-text-muted);
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.ua-empty-state button,
.ua-empty-state .ua-btn,
.ua-empty-state .fm-btn,
.ua-empty-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 1rem 2.5rem !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #df691a 0%, #ff8c42 100%) !important;
  color: white !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 8px 24px rgba(223, 105, 26, 0.35), 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  width: auto !important;
  min-width: auto !important;
  max-width: none !important;
  height: auto !important;
  min-height: auto !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.ua-empty-state button:hover,
.ua-empty-state .ua-btn:hover,
.ua-empty-state .fm-btn:hover,
.ua-empty-cta:hover {
  background: linear-gradient(135deg, #ff8c42 0%, #df691a 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 32px rgba(223, 105, 26, 0.45), 0 6px 16px rgba(0, 0, 0, 0.25) !important;
}

.ua-empty-state button:active,
.ua-empty-state .ua-btn:active,
.ua-empty-state .fm-btn:active,
.ua-empty-cta:active {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(223, 105, 26, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.ua-empty-state button i,
.ua-empty-state .ua-btn i,
.ua-empty-state .fm-btn i,
.ua-empty-cta i {
  font-size: 1.2rem !important;
  opacity: 1 !important;
  color: #ffffff !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  vertical-align: middle !important;
  margin: 0 !important;
  line-height: 1 !important;
}

/* ===== SUBSCRIPTION CARD ===== */
.ua-subscription-card {
  background: linear-gradient(135deg, rgba(223, 105, 26, 0.15) 0%, rgba(253, 126, 20, 0.05) 100%);
  border: 1px solid rgba(223, 105, 26, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ua-subscription-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--business-text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ua-subscription-info h3 i {
  color: var(--business-primary);
}

.ua-subscription-info p {
  font-size: 0.9rem;
  color: var(--business-text-muted);
  margin: 0;
}

.ua-subscription-badge {
  background: var(--ua-stat-gradient-1);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ===== MEDIA GRID ===== */
.ua-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
}

.ua-media-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.ua-media-item:hover {
  border-color: rgba(193, 158, 103, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.ua-media-item img,
.ua-media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ua-media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 5;
}

.ua-media-item:hover .ua-media-overlay {
  opacity: 1;
}

.ua-media-overlay .delete-media-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  outline: none;
}

.ua-media-overlay .delete-media-btn:hover {
  color: #dc3545;
  transform: scale(1.3);
}

.ua-media-overlay .delete-media-btn:active {
  transform: scale(1.1);
}

.ua-media-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: 3;
  pointer-events: none;
}

.ua-media-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.25rem;
}

.ua-media-size {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Upload Zone */
.ua-upload-zone {
  border: 2px dashed var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.ua-upload-zone:hover {
  border-color: var(--business-primary);
  background: rgba(223, 105, 26, 0.05);
}

.ua-upload-zone i {
  font-size: 2.5rem;
  color: var(--business-text-muted);
  margin-bottom: 1rem;
}

.ua-upload-zone p {
  color: var(--business-text-muted);
  font-size: 0.95rem;
}

.ua-upload-zone span {
  color: var(--business-primary);
  font-weight: 600;
}

/* ===== FORM STYLES ===== */
.ua-form-group {
  margin-bottom: 1.5rem;
}

.ua-form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--business-text);
  margin-bottom: 0.5rem;
}

.ua-form-input,
.ua-form-select,
.ua-form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  color: var(--business-text);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.ua-form-input:focus,
.ua-form-select:focus,
.ua-form-textarea:focus {
  outline: none;
  border-color: var(--business-primary);
  box-shadow: 0 0 0 3px rgba(223, 105, 26, 0.15);
}

.ua-form-select option {
  background: var(--business-dark, #1a1a2e);
  color: var(--business-text, #e2e8f0);
}

.ua-form-input::placeholder,
.ua-form-textarea::placeholder {
  color: var(--business-text-muted);
}

.ua-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.ua-form-help {
  font-size: 0.8rem;
  color: var(--business-text-muted);
  margin-top: 0.5rem;
}

/* ===== SUPPORT FORM - RADIO GROUP ===== */
.ua-radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ua-radio-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--business-text);
  transition: all var(--transition-fast);
  flex: 1;
  min-width: 160px;
}

.ua-radio-option:hover {
  border-color: var(--business-primary);
  background: rgba(223, 105, 26, 0.08);
  color: var(--business-primary);
}

.ua-radio-option input[type="radio"] {
  display: none;
}

.ua-radio-option:has(input[type="radio"]:checked) {
  border-color: var(--business-primary);
  background: rgba(223, 105, 26, 0.15);
  color: var(--business-primary);
  box-shadow: 0 0 0 3px rgba(223, 105, 26, 0.15);
}

.ua-radio-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(223, 105, 26, 0.12);
  border-radius: 50%;
  color: var(--business-primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ===== SUPPORT FORM - INFO TEXT ===== */
.ua-form-info-text {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--business-text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--business-primary);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.ua-form-info-text i {
  color: var(--business-primary);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* ===== PAGINATION ===== */
.ua-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
}

.ua-pagination-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--business-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 600;
  font-size: 0.85rem;
}

.ua-pagination-btn:hover:not(:disabled) {
  background: rgba(223, 105, 26, 0.1);
  border-color: var(--business-primary);
  color: var(--business-primary);
}

.ua-pagination-btn.active {
  background: var(--business-primary);
  border-color: var(--business-primary);
  color: white;
}

.ua-pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== HIGH CONTRAST MODE ===== */
.high-contrast .ua-sidebar {
  background: rgba(0, 0, 0, 0.95) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.high-contrast .ua-nav-item {
  color: #f8f9fa !important;
  font-weight: 600 !important;
}

.high-contrast .ua-nav-item.active {
  background: rgba(223, 105, 26, 0.3) !important;
  color: #fff !important;
}

.high-contrast .ua-card,
.high-contrast .ua-stat-card,
.high-contrast .ua-header {
  background: rgba(69, 74, 80, 0.95) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.high-contrast .ua-card-title,
.high-contrast .ua-stat-value,
.high-contrast .ua-header-title,
.high-contrast .ua-profile-name {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9) !important;
}

.high-contrast .ua-stat-label,
.high-contrast .ua-profile-email,
.high-contrast .ua-activity-content span {
  color: #f8f9fa !important;
  font-weight: 600 !important;
}

.high-contrast .ua-table th,
.high-contrast .ua-table td {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.high-contrast .ua-btn-primary {
  background: var(--business-primary) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}

.high-contrast .ua-form-input,
.high-contrast .ua-form-select,
.high-contrast .ua-form-textarea {
  background: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1200px) {
  .ua-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .ua-stat-card {
    padding: 1.25rem;
  }
  
  .ua-quick-actions {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .ua-quick-action {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 991px) {
  .ua-sidebar {
    transform: translateX(-100%);
    z-index: 1050;
  }
  
  .ua-sidebar.mobile-open {
    transform: translateX(0);
  }
  
  .user-area-main {
    margin-left: 0;
    max-width: 100vw;
    width: 100%;
  }
  
  .ua-header {
    padding: 0 1rem;
    width: 100%;
  }
  
  .ua-mobile-toggle {
    display: flex;
  }
  
  .ua-header-search {
    display: none;
  }
  
  .ua-sidebar-toggle {
    display: none;
  }
  
  .ua-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
  }
  
  .ua-sidebar.mobile-open + .ua-overlay {
    display: block;
  }
  
  .ua-content {
    padding: 1rem;
    width: 100%;
  }
  
  .ua-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
  
  .ua-stat-card {
    padding: 1rem;
  }
  
  .ua-stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .ua-stat-value {
    font-size: 1.5rem;
  }
  
  .ua-stat-label {
    font-size: 0.7rem;
  }
  
  .ua-quick-actions {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .ua-quick-action {
    padding: 1.25rem 0.75rem;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.75rem;
  }
  
  .ua-quick-action-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .ua-quick-action-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .user-area-main {
    max-width: 100vw;
    width: 100%;
  }
  
  .ua-header {
    padding: 0 0.75rem;
    height: 56px;
  }
  
  .ua-header-actions {
    gap: 0.5rem;
  }
  
  .ua-header-action {
    width: 38px;
    height: 38px;
  }
  
  .ua-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .ua-stat-card {
    padding: 0.875rem;
  }
  
  .ua-stat-header {
    margin-bottom: 0.5rem;
  }
  
  .ua-stat-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .ua-stat-value {
    font-size: 1.25rem;
    margin-bottom: 0.125rem;
  }
  
  .ua-stat-label {
    font-size: 0.65rem;
    margin-bottom: 0.25rem;
  }
  
  .ua-stat-trend {
    font-size: 0.7rem;
  }
  
  .ua-stat-detail {
    font-size: 0.7rem;
    margin-top: 0.25rem;
  }
  
  .ua-content {
    padding: 0.75rem;
    width: 100%;
  }
  
  .ua-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .ua-subscription-card {
    flex-direction: column;
    text-align: center;
  }
  
  .ua-quick-actions {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .ua-quick-action {
    padding: 1rem 0.75rem;
  }
  
  .ua-quick-action-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .ua-quick-action-text {
    font-size: 0.85rem;
  }
  
  .ua-table th,
  .ua-table td {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
  
  .ua-listing-thumb {
    width: 50px;
    height: 38px;
  }
  
  /* Ensure proper overflow handling */
  .ua-section {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Make all cards/content sections fit within viewport */
  .ua-card,
  .section-golden-gradient {
    max-width: 100%;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .user-area-main {
    max-width: 100vw;
    width: 100%;
  }
  
  .ua-header {
    padding: 0 0.5rem;
    height: 52px;
  }
  
  .ua-content {
    padding: 0.5rem;
    width: 100%;
  }
  
  .ua-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }
  
  .ua-stat-card {
    padding: 0.65rem;
  }
  
  .ua-stat-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  
  .ua-stat-value {
    font-size: 1rem;
  }
  
  .ua-stat-label {
    font-size: 0.55rem;
    letter-spacing: 0.3px;
  }
  
  .ua-stat-detail {
    font-size: 0.6rem;
  }
  
  .ua-stat-trend {
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
  }
  
  .ua-quick-actions {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }
  
  .ua-quick-action {
    padding: 0.75rem 0.5rem;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.5rem;
  }
  
  .ua-quick-action-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  
  .ua-quick-action-text {
    font-size: 0.7rem;
  }
  
  .ua-tabs {
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  
  .ua-tab {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
  
  .ua-header-actions {
    gap: 0.25rem;
  }
  
  .ua-header-action {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }
  
  .ua-mobile-toggle {
    font-size: 1.25rem;
    padding: 0.25rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ua-animate-in {
  animation: fadeInUp 0.5s ease-out forwards;
}

.ua-animate-in:nth-child(1) { animation-delay: 0.1s; }
.ua-animate-in:nth-child(2) { animation-delay: 0.2s; }
.ua-animate-in:nth-child(3) { animation-delay: 0.3s; }
.ua-animate-in:nth-child(4) { animation-delay: 0.4s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .ua-card:hover,
  .ua-stat-card:hover,
  .ua-quick-action:hover {
    transform: none;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .ua-sidebar,
  .ua-header,
  .ua-mobile-toggle,
  .accessibility-toggle {
    display: none !important;
  }
  
  .user-area-main {
    margin-left: 0 !important;
  }
  
  .ua-card,
  .ua-stat-card {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}

/* ===== CATEGORY BADGES ===== */
.ua-category-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(223, 105, 26, 0.15);
  color: var(--business-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===== EVENTS GRID ===== */
.ua-events-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ua-event-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-fast);
}

.ua-event-card:hover {
  background: rgba(223, 105, 26, 0.05);
  border-color: rgba(223, 105, 26, 0.2);
}

.ua-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--ua-stat-gradient-1);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.ua-event-day {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.ua-event-month {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.ua-event-info {
  flex: 1;
  min-width: 0;
}

.ua-event-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--business-text);
  margin-bottom: 0.5rem;
}

.ua-event-info p {
  font-size: 0.85rem;
  color: var(--business-text-muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ua-event-info p i {
  color: var(--business-primary);
  width: 16px;
}

.ua-event-actions {
  display: flex;
  gap: 0.5rem;
}

/* ===== PRODUCTS GRID ===== */
.ua-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.ua-product-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.ua-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(223, 105, 26, 0.2);
}

.ua-product-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.ua-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.ua-product-card:hover .ua-product-image img {
  transform: scale(1.05);
}

.ua-product-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--ua-stat-gradient-1);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ua-product-info {
  padding: 1.25rem;
}

.ua-product-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--business-text);
  margin-bottom: 0.5rem;
}

.ua-product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--business-primary);
  margin-bottom: 0.5rem;
}

.ua-product-stock {
  font-size: 0.8rem;
  color: var(--ua-status-active);
}

.ua-product-stock i {
  margin-right: 0.25rem;
}

.ua-product-actions {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  gap: 0.5rem;
}

/* ===== CHART PLACEHOLDER ===== */
.ua-chart-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  border: 1px dashed var(--glass-border);
}

.ua-chart-placeholder i {
  font-size: 3rem;
  color: var(--business-text-muted);
  margin-bottom: 1rem;
  opacity: 0.5;
}

.ua-chart-placeholder p {
  color: var(--business-text-muted);
  font-size: 0.9rem;
}

/* ===== SETTINGS STYLES ===== */
.ua-settings-group {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.ua-settings-group--no-border {
  border-bottom: none;
  padding-bottom: 0;
}

.ua-settings-group h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--business-text);
  margin-bottom: 1.25rem;
}

.ua-setting-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ua-setting-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ua-setting-info {
  flex: 1;
  padding-right: 1.5rem;
}

.ua-setting-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--business-text);
  margin-bottom: 0.25rem;
}

.ua-setting-info p {
  font-size: 0.85rem;
  color: var(--business-text-muted);
  margin: 0;
}

/* Toggle Switch */
.ua-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

.ua-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.ua-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  transition: all var(--transition-fast);
}

.ua-toggle-slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.ua-toggle input:checked + .ua-toggle-slider {
  background: var(--ua-stat-gradient-1);
}

.ua-toggle input:checked + .ua-toggle-slider::before {
  transform: translateX(24px);
}

.ua-toggle input:focus + .ua-toggle-slider {
  box-shadow: 0 0 0 3px rgba(223, 105, 26, 0.25);
}

/* ===== TOAST NOTIFICATIONS ===== */
.ua-toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ua-toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  min-width: 300px;
  max-width: 450px;
  transform: translateX(120%);
  transition: transform var(--transition-normal);
}

.ua-toast.show {
  transform: translateX(0);
}

.ua-toast i:first-child {
  font-size: 1.25rem;
}

.ua-toast span {
  flex: 1;
  font-size: 0.9rem;
  color: var(--business-text);
}

.ua-toast-close {
  background: none;
  border: none;
  color: var(--business-text-muted);
  cursor: pointer;
  padding: 0.25rem;
  transition: color var(--transition-fast);
}

.ua-toast-close:hover {
  color: var(--business-text);
}

.ua-toast-success i:first-child { color: var(--ua-status-active); }
.ua-toast-error i:first-child { color: var(--ua-status-error); }
.ua-toast-warning i:first-child { color: var(--ua-status-pending); }
.ua-toast-info i:first-child { color: #17a2b8; }

/* ===== CONFIRM MODAL ===== */
.ua-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.ua-confirm-modal.show {
  display: flex;
}

.ua-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.ua-confirm-dialog {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.ua-confirm-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
}

.ua-confirm-icon-warning {
  background: rgba(255, 193, 7, 0.15);
  color: var(--ua-status-pending);
}

.ua-confirm-icon-danger {
  background: rgba(220, 53, 69, 0.15);
  color: var(--ua-status-error);
}

.ua-confirm-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--business-text);
  margin-bottom: 0.75rem;
}

.ua-confirm-message {
  font-size: 0.95rem;
  color: var(--business-text-muted);
  margin-bottom: 1.5rem;
}

.ua-confirm-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.ua-confirm-actions .ua-btn {
  min-width: 100px;
}

/* ===== ENHANCED ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes glow {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(223, 105, 26, 0.3);
  }
  50% { 
    box-shadow: 0 0 40px rgba(223, 105, 26, 0.5);
  }
}

/* Animate sections on load */
.ua-section {
  animation: fadeInUp 0.5s ease-out;
}

.ua-stat-card {
  animation: fadeInUp 0.5s ease-out backwards;
}

.ua-stat-card:nth-child(1) { animation-delay: 0.1s; }
.ua-stat-card:nth-child(2) { animation-delay: 0.2s; }
.ua-stat-card:nth-child(3) { animation-delay: 0.3s; }
.ua-stat-card:nth-child(4) { animation-delay: 0.4s; }

.ua-quick-action {
  animation: fadeInUp 0.5s ease-out backwards;
}

.ua-quick-action:nth-child(1) { animation-delay: 0.15s; }
.ua-quick-action:nth-child(2) { animation-delay: 0.25s; }
.ua-quick-action:nth-child(3) { animation-delay: 0.35s; }
.ua-quick-action:nth-child(4) { animation-delay: 0.45s; }
.ua-quick-action:nth-child(5) { animation-delay: 0.55s; }
.ua-quick-action:nth-child(6) { animation-delay: 0.65s; }

.ua-card {
  animation: fadeInUp 0.6s ease-out backwards;
  animation-delay: 0.2s;
}

/* Loading skeleton effect */
.ua-skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* Active nav glow animation */
.ua-nav-item.active i {
  animation: glow 2s ease-in-out infinite;
}

/* Enhanced focus states for accessibility */
.ua-btn:focus,
.ua-nav-item:focus,
.ua-quick-action:focus,
.ua-table-action:focus,
.ua-header-action:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(223, 105, 26, 0.4);
}

/* Smooth page transitions */
.ua-section {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ua-section[style*="display: none"] {
  opacity: 0;
  transform: translateY(10px);
}

/* ===== SECTION GOLDEN GRADIENT STYLE ===== */
.section-golden-gradient {
  background: linear-gradient(180deg, var(--glass-bg) 0%, rgba(245, 158, 11, 0.03) 100%) !important;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.section-golden-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.25) 20%, rgba(245, 158, 11, 0.4) 50%, rgba(245, 158, 11, 0.25) 80%, transparent) !important;
}

/* ===== HIGH CONTRAST MODE (Accessibility) ===== */
body.high-contrast .ua-sidebar,
body.high-contrast .ua-header,
body.high-contrast .ua-card,
body.high-contrast .ua-stat-card,
body.high-contrast .ua-quick-action {
  border-width: 2px;
  border-color: var(--business-primary);
}

body.high-contrast .ua-nav-item.active::before {
  width: 6px;
}

body.high-contrast .ua-stat-card::before {
  height: 5px;
}

body.high-contrast .business-text-muted,
body.high-contrast .ua-stat-label,
body.high-contrast .ua-profile-email {
  color: #d0d5db;
}

/* ===== PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .user-area-wrapper::before,
  .user-area-wrapper::after {
    animation: none;
  }
}
/* ===== CHAT WIDGET - Floating Design ===== */
.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 380px;
  max-height: 520px;
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: none;
  flex-direction: column;
  z-index: 1030;
  border: 1px solid var(--glass-border);
  animation: chatSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

@keyframes chatSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chat-widget.show {
  display: flex;
}

.chat-header {
  background: linear-gradient(135deg, var(--business-primary), var(--business-secondary));
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.chat-header-content i {
  font-size: 1.2rem;
}

.chat-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  backdrop-filter: blur(8px);
}

.chat-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg) scale(1.1);
}

.chat-body {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  max-height: 350px;
  background: var(--business-darker);
}

.chat-message {
  margin-bottom: 1rem;
  animation: messageSlide 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.chat-message.received p {
  background: var(--business-card-solid);
  color: var(--business-text);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 4px;
  margin: 0;
  display: inline-block;
  max-width: 85%;
  box-shadow: var(--shadow-sm);
}

.chat-message.sent p {
  background: linear-gradient(135deg, var(--business-primary), var(--business-secondary));
  color: white;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md) var(--radius-md) 4px var(--radius-md);
  margin: 0 0 0 auto;
  display: inline-block;
  max-width: 85%;
  text-align: right;
  box-shadow: 0 4px 12px rgba(223, 105, 26, 0.3);
}

.chat-message.sent {
  text-align: right;
}

.chat-time {
  font-size: 0.65rem;
  color: var(--business-text-muted);
  display: block;
  margin-top: 0.35rem;
  opacity: 0.6;
}

.chat-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--business-card-solid);
}

.chat-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  background: var(--business-darker);
  color: var(--business-text);
  outline: none;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
  min-width: 0;
}

.chat-input:focus {
  border-color: var(--business-primary);
  box-shadow: 0 0 0 3px rgba(223, 105, 26, 0.15);
}

.chat-input::placeholder {
  color: var(--business-text-muted);
  opacity: 0.5;
}

.chat-send {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--business-primary), var(--business-secondary));
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-bounce);
  font-size: 1rem;
  flex-shrink: 0;
}

.chat-send:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(223, 105, 26, 0.4);
}

/* Chat Toggle Button */
.chat-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--business-primary), var(--business-secondary));
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(223, 105, 26, 0.4);
  z-index: 1010;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-bounce);
  animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(223, 105, 26, 0.4);
  }
  50% {
    box-shadow: 0 8px 48px rgba(223, 105, 26, 0.5);
  }
}

.chat-toggle:hover {
  transform: scale(1.1) translateY(-2px);
  animation: none;
  box-shadow: 0 12px 40px rgba(223, 105, 26, 0.5);
}

/* Move chat toggle up when back-to-top is visible */
.chat-toggle.elevated {
  bottom: 100px;
}

.chat-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  border: 3px solid var(--business-darker);
  animation: badgePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes badgePop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--business-primary), var(--business-secondary));
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(223, 105, 26, 0.4);
  z-index: 1009;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(223, 105, 26, 0.5);
}

.back-to-top-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.back-to-top-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(223, 105, 26, 0.3), 0 4px 20px rgba(223, 105, 26, 0.4);
}

/* Responsive chat widget */
@media (max-width: 768px) {
  .chat-widget {
    width: calc(100% - 40px);
    right: 20px;
    bottom: 90px;
    max-height: 70vh;
  }
  
  .chat-toggle {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
    bottom: 16px;
    right: 16px;
  }
  
  .chat-toggle.elevated {
    bottom: 76px;
  }
  
  .back-to-top-btn {
    display: none !important; /* replaced by bottom nav Top button on mobile */
  }
}

/* ============================================================================
   NEW LISTING WIZARD STYLES
   Modern multi-step wizard with card selections
   ============================================================================ */

/* Wizard Container - prevent overflow */
#newListingWizard {
  overflow-x: hidden;
  max-width: 100%;
}

/* Wizard Header */
.nl-wizard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: linear-gradient(145deg, rgba(42, 47, 52, 0.9) 0%, rgba(30, 33, 37, 0.95) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  margin-bottom: 2rem;
}

.nl-wizard-title h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--business-text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.25rem 0;
}

.nl-wizard-title h2 i {
  color: var(--business-primary);
  font-size: 1.5rem;
}

.nl-wizard-title p {
  margin: 0;
  color: var(--business-text-muted);
  font-size: 0.95rem;
}

.nl-wizard-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--business-text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nl-wizard-close:hover {
  background: rgba(220, 53, 69, 0.15);
  border-color: var(--ua-status-error);
  color: var(--ua-status-error);
  transform: rotate(90deg);
}

/* Progress Steps */
.nl-wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: linear-gradient(145deg, rgba(42, 47, 52, 0.7) 0%, rgba(30, 33, 37, 0.8) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.nl-progress-track {
  position: absolute;
  top: calc(50% - 10px);
  left: 60px;
  right: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  z-index: 0;
  transform: translateY(-50%);
}

.nl-progress-fill {
  position: absolute;
  top: calc(50% - 10px);
  left: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--business-primary), var(--business-secondary));
  border-radius: 3px;
  z-index: 1;
  width: 0%;
  transition: width 0.5s ease;
  box-shadow: 0 0 10px rgba(223, 105, 26, 0.5);
  transform: translateY(-50%);
}

.nl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex: 1;
  min-width: 70px;
  max-width: 110px;
  text-align: center;
  padding: 0 0.25rem;
}

.nl-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(30, 33, 37, 0.95);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--business-text-muted);
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

.nl-step span {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--business-text-muted);
  white-space: nowrap;
  transition: color var(--transition-fast);
  line-height: 1.2;
}

.nl-step.active .nl-step-icon,
.nl-step.completed .nl-step-icon {
  background: linear-gradient(135deg, var(--business-primary), var(--business-secondary));
  border-color: var(--business-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(223, 105, 26, 0.4);
}

.nl-step.active span,
.nl-step.completed span {
  color: var(--business-primary);
}

.nl-step.completed .nl-step-icon::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  font-size: 0.9rem;
}

.nl-step:hover:not(.active):not(.completed) .nl-step-icon {
  border-color: var(--business-primary);
  background: rgba(223, 105, 26, 0.1);
}

/* Wizard Content */
.nl-wizard-content {
  background: linear-gradient(145deg, rgba(42, 47, 52, 0.7) 0%, rgba(30, 33, 37, 0.8) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  min-height: 400px;
  margin-bottom: 1.5rem;
  overflow-x: hidden;
}

.nl-wizard-step {
  display: none;
  animation: fadeInStep 0.4s ease;
}

.nl-wizard-step.active {
  display: block;
}

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

/* Substeps */
.nl-substep {
  display: none;
  animation: fadeInSubstep 0.3s ease;
}

.nl-substep.active {
  display: block;
}

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

/* Step Header */
.nl-step-header {
  text-align: center;
  margin-bottom: 2rem;
}

.nl-step-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--business-text);
  margin: 0 0 0.5rem 0;
}

.nl-step-header p {
  margin: 0;
  color: var(--business-text-muted);
  font-size: 0.95rem;
}

/* Selected Badge */
.nl-selected-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(223, 105, 26, 0.15);
  border: 1px solid rgba(223, 105, 26, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--business-primary);
  margin-top: 1rem;
}

.nl-selected-badge::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
}

/* Selection Cards Grid */
.nl-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
}

.nl-selection-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.nl-selection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(223, 105, 26, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.nl-selection-card:hover {
  border-color: var(--business-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 0 0 30px rgba(223, 105, 26, 0.1);
}

.nl-selection-card:hover::before {
  opacity: 1;
}

.nl-selection-card.selected {
  border-color: var(--business-primary);
  background: linear-gradient(145deg, rgba(223, 105, 26, 0.15) 0%, rgba(223, 105, 26, 0.05) 100%);
  box-shadow: 0 4px 20px rgba(223, 105, 26, 0.25);
}

.nl-selection-card.selected::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background: var(--business-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: white;
}

.nl-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(223, 105, 26, 0.2) 0%, rgba(223, 105, 26, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--business-primary);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
}

.nl-selection-card:hover .nl-card-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(223, 105, 26, 0.3);
}

.nl-selection-card.selected .nl-card-icon {
  background: linear-gradient(135deg, var(--business-primary), var(--business-secondary));
  color: white;
}

.nl-selection-card h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--business-text);
  position: relative;
  z-index: 1;
}

/* Multi-select Services */
.nl-multi-select .nl-selection-card {
  position: relative;
}

.nl-card-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: transparent;
  transition: all var(--transition-fast);
}

.nl-multi-select .nl-selection-card.selected .nl-card-check {
  background: var(--business-primary);
  border-color: var(--business-primary);
  color: white;
}

.nl-multi-select .nl-selection-card.selected::after {
  display: none;
}

/* Loading State */
.nl-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  color: var(--business-text-muted);
  gap: 1rem;
}

.nl-loading i {
  font-size: 2rem;
  color: var(--business-primary);
}

/* Map Container */
.nl-map-container {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--glass-border);
}

.nl-map-search {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.nl-map-search input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--business-text);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.nl-map-search input:focus {
  outline: none;
  border-color: var(--business-primary);
  box-shadow: 0 0 0 3px rgba(223, 105, 26, 0.15);
}

.nl-map-search input::placeholder {
  color: var(--business-text-muted);
}

.nl-map {
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  margin-bottom: 1rem;
}

.nl-address-display {
  margin-bottom: 1rem;
}

.nl-map-coordinates {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
}

.nl-coord {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nl-coord label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--business-text-muted);
}

.nl-coord span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--business-primary);
  font-family: monospace;
}

.nl-map-hint {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--business-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nl-map-hint i {
  color: var(--business-primary);
}

/* Form Styles */
.nl-form-section {
  max-width: 700px;
  margin: 0 auto;
}

.nl-form-group {
  margin-bottom: 1.5rem;
}

.nl-form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--business-text);
  margin-bottom: 0.5rem;
}

.nl-form-group label .required {
  color: var(--ua-status-error);
}

.nl-input,
.nl-textarea,
.nl-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  color: var(--business-text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all var(--transition-fast);
}

.nl-input:focus,
.nl-textarea:focus,
.nl-select:focus {
  outline: none;
  border-color: var(--business-primary);
  box-shadow: 0 0 0 3px rgba(223, 105, 26, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.nl-input::placeholder,
.nl-textarea::placeholder {
  color: var(--business-text-muted);
}

.nl-textarea {
  resize: vertical;
  min-height: 120px;
}

.nl-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a8b2bd' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.nl-select option {
  background: var(--business-card-solid);
  color: var(--business-text);
}

.nl-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Logo Upload Dropzone */
.nl-logo-upload {
  margin-bottom: 2rem;
}

.nl-logo-dropzone {
  position: relative;
  border: 2px dashed var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
  background: rgba(255, 255, 255, 0.02);
}

.nl-logo-dropzone:hover,
.nl-logo-dropzone.dragover {
  border-color: var(--business-primary);
  background: rgba(223, 105, 26, 0.05);
}

.nl-logo-dropzone.has-image {
  border-style: solid;
  border-color: var(--business-primary);
}

.nl-logo-dropzone.error {
  border-color: var(--ua-status-error);
  background: rgba(220, 53, 69, 0.05);
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.nl-logo-preview {
  margin-bottom: 1rem;
}

.nl-logo-preview img {
  max-width: 150px;
  max-height: 150px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nl-logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
}

.nl-logo-placeholder i {
  font-size: 2.5rem;
  color: var(--business-primary);
  opacity: 0.7;
}

.nl-logo-placeholder span {
  font-size: 0.95rem;
  color: var(--business-text);
  font-weight: 500;
}

.nl-logo-placeholder small {
  font-size: 0.8rem;
  color: var(--business-text-muted);
}

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

.nl-btn-browse {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, var(--business-primary) 0%, var(--business-secondary) 100%);
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  z-index: 3;
}

.nl-btn-browse:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(223, 105, 26, 0.4);
}

.nl-hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--business-text-muted);
}

/* Language-specific field styling */
.nl-lang-field {
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid var(--business-primary);
  margin-left: 0.5rem;
}

.nl-lang-field label {
  color: var(--business-primary);
}

.nl-lang-field::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--business-primary) 0%, var(--business-secondary) 100%);
  border-radius: 3px;
}

/* Phone Input */
/* Language input group - spacing for translate buttons */
.nl-lang-input-group {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.nl-lang-input-group .nl-input,
.nl-lang-input-group .nl-textarea {
  width: 100%;
}

.nl-lang-input-group .nl-btn {
  margin-left: 0.25rem;
}

/* Add vertical spacing between language fields */
.nl-lang-field {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.nl-phone-input {
  display: flex;
  gap: 0.5rem;
}

.nl-country-code {
  width: 120px;
  flex-shrink: 0;
}

.nl-phone-input .nl-input {
  flex: 1;
}

/* Social Media Groups */
.nl-social-group label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nl-social-group label i {
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
}

.nl-social-group label i.fa-globe { color: var(--business-primary); }
.nl-social-group label i.fa-facebook { color: #1877f2; }
.nl-social-group label i.fa-youtube { color: #ff0000; }
.nl-social-group label i.fa-instagram { color: #e4405f; }
.nl-social-group label i.fa-linkedin { color: #0a66c2; }

/* Business Hours */
.nl-hours-section {
  max-width: 800px;
}

.nl-hours-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  border: 1px solid var(--glass-border);
  transition: all var(--transition-fast);
}

.nl-hours-row:hover {
  border-color: rgba(223, 105, 26, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.nl-hours-day {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 160px;
}

.nl-hours-day i {
  font-size: 1.25rem;
  color: var(--business-primary);
}

.nl-hours-day span {
  font-weight: 600;
  color: var(--business-text);
}

.nl-hours-inputs {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.nl-time-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nl-time-group label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--business-text-muted);
  margin-bottom: 0;
}

.nl-time-input {
  width: 130px;
  padding: 0.625rem 0.75rem;
}

.nl-time-separator {
  font-size: 1.25rem;
  color: var(--business-text-muted);
  margin-top: 1rem;
}

.nl-closed-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  margin-left: auto;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-fast);
}

.nl-closed-toggle:hover {
  border-color: var(--business-primary);
}

.nl-closed-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--business-primary);
}

.nl-closed-toggle span {
  font-size: 0.85rem;
  color: var(--business-text-muted);
}

.nl-closed-toggle input:checked + span {
  color: var(--business-primary);
}

/* Amenities Grid */
.nl-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.nl-amenity-card {
  cursor: pointer;
  display: block;
}

.nl-amenity-card input {
  display: none;
}

.nl-amenity-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.nl-amenity-card:hover .nl-amenity-content {
  border-color: rgba(223, 105, 26, 0.4);
  background: rgba(223, 105, 26, 0.03);
  transform: translateY(-2px);
}

.nl-amenity-card input:checked + .nl-amenity-content {
  border-color: var(--business-primary);
  background: linear-gradient(145deg, rgba(223, 105, 26, 0.12) 0%, rgba(223, 105, 26, 0.04) 100%);
  box-shadow: 0 4px 20px rgba(223, 105, 26, 0.15);
}

.nl-amenity-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(223, 105, 26, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--business-primary);
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.nl-amenity-card input:checked + .nl-amenity-content .nl-amenity-icon {
  background: linear-gradient(135deg, var(--business-primary), var(--business-secondary));
  color: white;
  box-shadow: 0 4px 12px rgba(223, 105, 26, 0.3);
}

.nl-amenity-info {
  flex: 1;
  min-width: 0;
}

.nl-amenity-info h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--business-text);
  line-height: 1.3;
}

.nl-amenity-info p {
  margin: 0.25rem 0 0 0;
  font-size: 0.8rem;
  color: var(--business-text-muted);
  line-height: 1.4;
}

.nl-amenity-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: transparent;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.nl-amenity-card input:checked + .nl-amenity-content .nl-amenity-check {
  background: var(--business-primary);
  border-color: var(--business-primary);
  color: white;
  box-shadow: 0 2px 8px rgba(223, 105, 26, 0.3);
}

/* Tip button next to wizard field labels */
.nl-tip-btn {
  background: none;
  border: none;
  padding: 0 0 0 0.25rem;
  cursor: pointer;
  color: var(--ua-text-secondary, rgba(255,255,255,0.4));
  font-size: 0.85rem;
  vertical-align: middle;
  transition: color 0.2s;
  line-height: 1;
}
.nl-tip-btn:hover {
  color: var(--business-primary, #df691a);
}

/* Tip modal list */
.nl-tip-list {
  margin: 0;
  padding-left: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.nl-tip-list li {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
}

/* I understand checkbox row */
.nl-tip-understood {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  flex: 1;
}
.nl-tip-understood input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  accent-color: var(--business-primary, #df691a);
}

/* AI tip notice inside description tips modal */
.nl-ai-tip-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(193, 158, 103, 0.1), rgba(193, 158, 103, 0.04));
  border: 1px solid rgba(193, 158, 103, 0.3);
  border-radius: 8px;
}
.nl-ai-tip-notice > i {
  font-size: 1.1rem;
  color: #c19e67;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.nl-ai-tip-notice strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #c19e67;
  margin-bottom: 0.3rem;
}
.nl-ai-tip-notice p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}

/* Persistent word count below description */
.nl-word-count {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--ua-text-secondary, rgba(255,255,255,0.45));
}
.nl-word-count span {
  font-weight: 700;
  transition: color 0.2s;
}

/* Usage (listing use-case) card grid override */
.nl-usage-grid {
  grid-template-columns: 1fr;
  max-width: 100%;
}

.nl-usage-card .nl-amenity-content {
  align-items: center;
}

.nl-usage-card .nl-amenity-icon {
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.nl-usage-card .nl-amenity-info p {
  font-size: 0.82rem;
  line-height: 1.5;
  margin-top: 0.35rem;
}

/* Review Section */
.nl-review-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.nl-review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.nl-review-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--glass-border);
}

.nl-review-card-header i {
  font-size: 1rem;
  color: var(--business-primary);
  width: 20px;
  text-align: center;
}

.nl-review-card-header h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--business-text);
}

.nl-review-card-body {
  padding: 0.75rem 1.25rem;
  overflow: hidden;
}

.nl-review-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 1rem;
  min-width: 0;
}

.nl-review-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.nl-review-row:first-child {
  padding-top: 0;
}

.nl-review-label {
  font-size: 0.8rem;
  color: var(--business-text-muted);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.nl-review-value {
  font-size: 0.85rem;
  color: var(--business-text);
  font-weight: 500;
  text-align: right;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
  min-width: 0;
  max-width: 100%;
}

.nl-review-value.nl-review-description {
  text-align: left;
  display: block;
  margin-top: 0.25rem;
  font-weight: 400;
  line-height: 1.5;
}

/* Services row needs to wrap */
.nl-review-row-services {
  flex-direction: column;
  gap: 0.5rem;
}

.nl-review-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.nl-review-services span {
  background: rgba(223, 105, 26, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--business-primary);
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .nl-review-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nl-review-section {
    grid-template-columns: 1fr;
  }
}

/* Wizard Navigation */
.nl-wizard-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
}

.nl-nav-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 800px;
}

.nl-step-indicator {
  font-size: 0.9rem;
  color: var(--business-text-muted);
}

/* Buttons */
.nl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
}

.nl-btn-primary {
  background: linear-gradient(135deg, var(--business-primary), var(--business-secondary));
  color: white;
  box-shadow: 0 4px 15px rgba(223, 105, 26, 0.3);
  position: relative;
  z-index: 1050;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.nl-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(223, 105, 26, 0.4);
}

.nl-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.nl-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--business-text);
  border: 1px solid var(--glass-border);
}

.nl-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--business-primary);
}

.nl-btn-secondary:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Validation Error */
.nl-input.error,
.nl-textarea.error,
.nl-select.error {
  border-color: var(--ua-status-error);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.nl-error-message {
  color: var(--ua-status-error);
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: rgba(220, 53, 69, 0.1);
  border-radius: 4px;
  border-left: 3px solid var(--ua-status-error);
}

.nl-error-message::before {
  content: '\f06a';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 0.5rem;
}

/* Ensure phone input doesn't break with error */
.nl-phone-group .nl-error-message {
  margin-top: 0.5rem;
}

.nl-form-group {
  position: relative;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .nl-wizard-progress {
    overflow-x: auto;
    padding: 1rem;
    gap: 0.5rem;
  }
  
  .nl-progress-track,
  .nl-progress-fill {
    display: none;
  }
  
  .nl-step {
    flex-shrink: 0;
  }
  
  .nl-step-icon {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  .nl-step span {
    font-size: 0.6rem;
  }
  
  .nl-form-row {
    grid-template-columns: 1fr;
  }
  
  .nl-hours-row {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nl-hours-inputs {
    flex-wrap: wrap;
    width: 100%;
  }
  
  .nl-closed-toggle {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  .nl-wizard-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .nl-wizard-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  
  .nl-wizard-content {
    padding: 1.5rem 1rem;
  }
  
  .nl-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .nl-selection-card {
    padding: 1rem 0.75rem;
  }
  
  .nl-card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  
  .nl-map {
    height: 300px;
  }
  
  .nl-map-coordinates {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nl-review-section {
    grid-template-columns: 1fr;
  }
  
  .nl-wizard-navigation {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .nl-step-indicator {
    order: -1;
    width: 100%;
    text-align: center;
  }
  
  .nl-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .nl-amenities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 680px) {
  .nl-amenities-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .nl-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .nl-amenities-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  
  .nl-amenity-content {
    padding: 1rem 1.25rem;
    gap: 0.875rem;
  }
  
  .nl-amenity-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .nl-amenity-info h4 {
    font-size: 0.9rem;
  }
  
  .nl-amenity-check {
    width: 24px;
    height: 24px;
  }
  
  .nl-phone-input {
    flex-direction: column;
  }
  
  .nl-country-code {
    width: 100%;
  }
}

/* ============================================================================
   LISTING TIER SELECTION STYLES
   ============================================================================ */

.nl-tier-selection {
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  animation: fadeInUp 0.4s ease;
}

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

.nl-tier-content {
  padding: 2rem;
}

.nl-tier-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.nl-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.2), rgba(40, 167, 69, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successPulse 2s ease-in-out infinite;
}

.nl-success-icon i {
  font-size: 2.5rem;
  color: #28a745;
}

@keyframes successPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
  }
}

.nl-tier-intro h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--business-text);
  margin-bottom: 0.5rem;
}

.nl-tier-intro p {
  color: var(--business-text-muted);
  font-size: 1rem;
}

/* Pricing Grid */
.nl-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Pricing Card */
.nl-pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: all var(--transition-normal);
}

.nl-pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nl-pricing-card.featured {
  border-color: var(--business-primary);
  background: linear-gradient(135deg, rgba(223, 105, 26, 0.1), rgba(223, 105, 26, 0.02));
}

.nl-pricing-card.featured:hover {
  border-color: var(--business-primary);
  box-shadow: 0 10px 40px rgba(223, 105, 26, 0.2);
}

.nl-popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--business-primary), var(--business-secondary));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  border-radius: 0 0 0 var(--radius-md);
}

.nl-pricing-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}

.nl-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.nl-tier-badge.free {
  background: rgba(108, 117, 125, 0.2);
  color: #a8b2bd;
}

.nl-tier-badge.premium {
  background: linear-gradient(135deg, rgba(223, 105, 26, 0.3), rgba(253, 126, 20, 0.2));
  color: var(--business-primary);
}

.nl-pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--business-text);
  margin-bottom: 1rem;
}

.nl-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.nl-price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--business-text);
  line-height: 1;
}

.nl-tier-premium .nl-price-amount {
  color: var(--business-primary);
}

.nl-price-period {
  font-size: 1rem;
  color: var(--business-text-muted);
}

.nl-price-desc {
  font-size: 0.9rem;
  color: var(--business-text-muted);
  margin: 0;
}

/* Pricing Features */
.nl-pricing-features {
  padding: 1.5rem 2rem;
}

.nl-pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nl-pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.9rem;
  color: var(--business-text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nl-pricing-features li:last-child {
  border-bottom: none;
}

.nl-pricing-features li i {
  width: 20px;
  text-align: center;
  font-size: 0.85rem;
}

.nl-pricing-features li.included {
  color: var(--business-text);
}

.nl-pricing-features li.included i {
  color: #28a745;
}

.nl-pricing-features li.included.highlight {
  color: var(--business-text);
}

.nl-pricing-features li.included.highlight i {
  color: var(--business-primary);
}

.nl-pricing-features li.not-included {
  opacity: 0.5;
}

.nl-pricing-features li.not-included i {
  color: #dc3545;
}

/* Pricing Footer */
.nl-pricing-footer {
  padding: 1.5rem 2rem 2rem;
}

.nl-btn-tier {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

/* Tier Footer Note */
.nl-tier-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.nl-tier-note {
  font-size: 0.85rem;
  color: var(--business-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.nl-tier-note i {
  color: var(--business-primary);
}

/* Responsive Pricing Grid */
@media (max-width: 768px) {
  .nl-pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .nl-tier-content {
    padding: 1.5rem;
  }
  
  .nl-pricing-header {
    padding: 1.5rem;
  }
  
  .nl-price-amount {
    font-size: 2.5rem;
  }
  
  .nl-pricing-features {
    padding: 1rem 1.5rem;
  }
  
  .nl-pricing-footer {
    padding: 1rem 1.5rem 1.5rem;
  }
}

/* ============================================================================
   AI DESCRIPTION IMPROVEMENT FEATURE
   ============================================================================ */

/* AI Improve Button Wrapper */
.nl-ai-improve-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, rgba(193, 158, 103, 0.08), rgba(193, 158, 103, 0.03));
  border: 1px solid rgba(193, 158, 103, 0.2);
  border-radius: 8px;
}

.nl-ai-improve-wrapper.hidden {
  display: none;
}

/* AI Improve Button */
.nl-btn-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, #c19e67, #a88a5a);
  color: #1a1a2e;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(193, 158, 103, 0.3);
}

.nl-btn-ai:hover {
  background: linear-gradient(135deg, #d4b07a, #b89a6a);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(193, 158, 103, 0.4);
}

.nl-btn-ai:active {
  transform: translateY(0);
}

.nl-btn-ai:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.nl-btn-ai i {
  font-size: 1rem;
}

/* AI Credit Indicator */
.nl-ai-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #c19e67;
  font-weight: 500;
}

.nl-ai-credit i {
  color: #c19e67;
  font-size: 0.9rem;
}

.nl-ai-credit.used {
  color: #666;
}

.nl-ai-credit.used i {
  color: #666;
}

/* ============================================================================
   AI LOADING OVERLAY
   ============================================================================ */

.nl-ai-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nl-ai-overlay.show {
  display: flex;
  opacity: 1;
}

.nl-ai-loading {
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.nl-ai-loading h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 0.5rem;
  color: #c19e67;
  font-weight: 600;
}

.nl-ai-loading p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.nl-ai-overlay-warning {
  display: none;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

/* AI Loading Spinner */
.nl-ai-loading-spinner {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.nl-ai-spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
  animation: nl-spin 1.5s linear infinite;
}

.nl-ai-spinner-ring:nth-child(1) {
  border-top-color: #c19e67;
  animation-delay: 0s;
}

.nl-ai-spinner-ring:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-right-color: #d4b07a;
  animation-delay: 0.15s;
  animation-direction: reverse;
}

.nl-ai-spinner-ring:nth-child(3) {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-bottom-color: #a88a5a;
  animation-delay: 0.3s;
}

.nl-ai-spinner-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: #c19e67;
  animation: nl-pulse 1.5s ease-in-out infinite;
}

@keyframes nl-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes nl-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Loading Dots */
.nl-ai-loading-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.nl-ai-loading-dots span {
  width: 8px;
  height: 8px;
  background: #c19e67;
  border-radius: 50%;
  animation: nl-bounce 1.4s ease-in-out infinite both;
}

.nl-ai-loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.nl-ai-loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.nl-ai-loading-dots span:nth-child(3) { animation-delay: 0s; }

@keyframes nl-bounce {
  0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

/* ============================================================================
   FORM SUBMISSION OVERLAY
   ============================================================================ */

.nl-submit-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nl-submit-overlay.show {
  display: flex;
  opacity: 1;
}

.nl-submit-loading {
  text-align: center;
  color: #fff;
  padding: 2rem;
  max-width: 400px;
}

.nl-submit-loading h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--business-primary);
  font-weight: 600;
}

.nl-submit-loading p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Submission Spinner */
.nl-submit-spinner {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.nl-submit-spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
  animation: nl-spin 1.5s linear infinite;
}

.nl-submit-spinner-ring:nth-child(1) {
  border-top-color: var(--business-primary);
  animation-delay: 0s;
}

.nl-submit-spinner-ring:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-right-color: var(--business-primary-light);
  animation-delay: 0.15s;
  animation-direction: reverse;
}

.nl-submit-spinner-ring:nth-child(3) {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-bottom-color: #28a745;
  animation-delay: 0.3s;
}

.nl-submit-spinner-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.75rem;
  color: var(--business-primary);
  animation: nl-pulse 1.5s ease-in-out infinite;
}

/* ============================================================================
   AI MODAL
   ============================================================================ */

.nl-ai-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.nl-ai-modal.show {
  display: flex;
}

.nl-ai-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.nl-ai-modal-content {
  position: relative;
  background: linear-gradient(145deg, #1e1e32, #252540);
  border: 1px solid rgba(193, 158, 103, 0.3);
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(193, 158, 103, 0.1);
  animation: nl-modal-appear 0.3s ease;
}

@keyframes nl-modal-appear {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.nl-ai-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(193, 158, 103, 0.15);
  background: linear-gradient(135deg, rgba(193, 158, 103, 0.1), transparent);
}

.nl-ai-modal-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nl-ai-modal-title i {
  font-size: 1.5rem;
  color: #c19e67;
}

.nl-ai-modal-title h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
}

.nl-ai-modal-close {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.nl-ai-modal-close:hover {
  background: rgba(193, 158, 103, 0.3);
  color: #c19e67;
}

.nl-ai-modal-subtitle {
  padding: 1rem 1.5rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nl-ai-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* AI Description Cards */
.nl-ai-desc-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nl-ai-desc-card:hover {
  border-color: rgba(193, 158, 103, 0.5);
  background: rgba(193, 158, 103, 0.05);
  transform: translateY(-2px);
}

.nl-ai-desc-card.selected {
  border-color: #c19e67;
  background: rgba(193, 158, 103, 0.1);
  box-shadow: 0 0 0 2px rgba(193, 158, 103, 0.2);
}

.nl-ai-desc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.nl-ai-desc-version {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nl-ai-desc-version span {
  background: linear-gradient(135deg, #c19e67, #a88a5a);
  color: #1a1a2e;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.nl-ai-desc-style {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-style: italic;
}

.nl-ai-desc-select {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.nl-ai-desc-card.selected .nl-ai-desc-select {
  background: #c19e67;
  border-color: #c19e67;
}

.nl-ai-desc-card.selected .nl-ai-desc-select::after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #1a1a2e;
  font-size: 0.75rem;
}

.nl-ai-desc-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.nl-ai-desc-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nl-ai-desc-keywords span {
  background: rgba(193, 158, 103, 0.15);
  color: #c19e67;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.nl-ai-modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive for AI Modal */
@media (max-width: 768px) {
  .nl-ai-modal-content {
    max-height: 95vh;
    border-radius: 12px;
  }
  
  .nl-ai-modal-header {
    padding: 1rem;
  }
  
  .nl-ai-modal-title h3 {
    font-size: 1.1rem;
  }
  
  .nl-ai-modal-body {
    padding: 1rem;
  }
  
  .nl-ai-desc-card {
    padding: 1rem;
  }
  
  .nl-ai-improve-wrapper {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }
  
  .nl-btn-ai {
    justify-content: center;
  }
  
  .nl-ai-credit {
    justify-content: center;
  }
}

/* =========================================================================
   URL SLUG FIELD STYLES
   ========================================================================= */

.nl-slug-group {
  margin-top: 0.5rem;
}

.nl-slug-wrapper {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  gap: 0.25rem;
}

.nl-slug-prefix {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  white-space: nowrap;
}

.nl-slug-input-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
}

.nl-slug-input {
  background: transparent !important;
  border: none !important;
  padding: 0.25rem 0.25rem 0.25rem 0 !important;
  color: #8dc63f !important;
  font-family: monospace;
  font-size: 0.85rem;
  flex: 1;
  min-width: 0;
}

.nl-slug-input:focus {
  outline: none;
  box-shadow: none !important;
}

.nl-slug-status {
  display: flex;
  align-items: center;
  padding-left: 0.5rem;
}

.nl-slug-status i {
  font-size: 1.1rem;
}

#nlSlugChecking {
  color: #ffc107;
}

#nlSlugValid {
  color: #8dc63f;
}

#nlSlugInvalid {
  color: #dc3545;
}

.nl-slug-hint small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.nl-slug-error {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: 0.75rem;
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 6px;
}

.nl-slug-error small {
  color: #dc3545;
  flex: 1;
}

.nl-btn-sm {
  padding: 0.35rem 0.75rem !important;
  font-size: 0.8rem !important;
}

/* Slug Suggestions Modal */
.nl-slug-modal-content {
  max-width: 600px;
}

.nl-slug-suggestions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nl-slug-suggestion-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nl-slug-suggestion-card:hover {
  background: rgba(141, 198, 63, 0.1);
  border-color: rgba(141, 198, 63, 0.5);
  transform: translateY(-2px);
}

.nl-slug-suggestion-url {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.nl-slug-suggestion-prefix {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.nl-slug-suggestion-value {
  color: #8dc63f;
  font-family: monospace;
  font-size: 0.9rem;
  word-break: break-all;
}

.nl-slug-suggestion-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-style: italic;
}

/* Mobile responsive for slug */
@media (max-width: 768px) {
  .nl-slug-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .nl-slug-prefix {
    font-size: 0.75rem;
  }
  
  .nl-slug-input-wrapper {
    width: 100%;
  }
  
  .nl-slug-error {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .nl-slug-error .nl-btn-sm {
    width: 100%;
  }
}

/* ============================================================================
   MULTI-LANGUAGE INPUT SECTIONS
   ============================================================================ */

.nl-lang-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(193, 158, 103, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.nl-lang-section-header {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(193, 158, 103, 0.15);
}

.nl-lang-section-header h4 {
  color: #c19e67;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nl-lang-section-header h4 i {
  font-size: 0.95rem;
  opacity: 0.8;
}

.nl-lang-hint {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

/* Language field styling */
.nl-lang-field {
  position: relative;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.nl-lang-field label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nl-lang-flag {
  font-size: 1.1rem;
}

.nl-lang-badge {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nl-lang-badge.nl-lang-default {
  background: rgba(193, 158, 103, 0.2);
  color: #c19e67;
  border: 1px solid rgba(193, 158, 103, 0.3);
}

.nl-lang-status {
  margin-left: auto;
  font-size: 0.9rem;
}

.nl-lang-status i {
  transition: all 0.3s ease;
}

/* AI Translate wrapper */
.nl-ai-translate-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(193, 158, 103, 0.2);
}

.nl-ai-translate-wrapper .nl-btn-ai {
  white-space: nowrap;
}

.nl-ai-hint {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-style: italic;
}

/* AI Toast notification */
.nl-ai-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 10001;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.nl-ai-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.nl-ai-toast-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(193, 158, 103, 0.3);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.nl-ai-toast-icon {
  font-size: 1.25rem;
  color: #10b981;
}

.nl-ai-toast.error .nl-ai-toast-icon {
  color: #ef4444;
}

.nl-ai-toast.info .nl-ai-toast-icon {
  color: #3b82f6;
}

#elAiToastMessage {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Mobile responsive for language sections */
@media (max-width: 768px) {
  .nl-lang-section {
    padding: 1rem;
  }
  
  .nl-ai-translate-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nl-ai-translate-wrapper .nl-btn-ai {
    width: 100%;
  }
  
  .nl-ai-hint {
    text-align: center;
    width: 100%;
  }
  
  .nl-lang-field label {
    flex-wrap: wrap;
  }
  
  .nl-lang-status {
    margin-left: 0;
    margin-top: 0.25rem;
    width: 100%;
  }
}

/* ============================================================================
   Media Library Display Styles
   ============================================================================ */

.media-library-section {
  margin-top: 2rem;
}

.media-library-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.media-library-title i {
  color: #df691a;
}

.media-count {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin-left: auto;
}

.media-library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.media-library-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(193, 158, 103, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.media-library-item:hover {
  box-shadow: 0 4px 12px rgba(193, 158, 103, 0.3);
  transform: translateY(-2px);
  border-color: rgba(193, 158, 103, 0.4);
}

.media-library-image {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  line-height: 0;
  font-size: 0;
}

.media-library-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-library-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-library-item:hover .media-library-overlay {
  opacity: 1;
}

.media-lib-btn {
  background: rgba(193, 158, 103, 0.9);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.media-lib-btn:hover {
  background: #c19e67;
  transform: scale(1.1);
}

.media-library-info {
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.2);
}

.media-library-filename {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Media Lightbox */
.media-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-lightbox.show {
  display: flex;
  opacity: 1;
}

.media-lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.media-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.media-lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
}

/* Media Edit Modal */
.media-edit-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-edit-modal.show {
  display: flex;
  opacity: 1;
}

.media-edit-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(8px);
}

.media-edit-content {
  position: relative;
  background: #1a1a2e;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(223, 105, 26, 0.2);
}

.media-edit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.media-edit-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.media-edit-header h3 i {
  color: #df691a;
}

.media-edit-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-edit-close:hover {
  color: #df691a;
}

.media-edit-content form {
  padding: 1.5rem;
}

.media-edit-content .form-group {
  margin-bottom: 1.25rem;
}

.media-edit-content label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.media-edit-content .form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.media-edit-content .form-control:focus {
  outline: none;
  border-color: #df691a;
  background: rgba(255, 255, 255, 0.08);
}

.media-remove-box {
  padding: 1rem;
  background: rgba(211, 47, 47, 0.1);
  border: 1px solid rgba(211, 47, 47, 0.3);
  border-radius: 6px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.media-remove-checkbox {
  margin: 0;
  padding: 0;
  cursor: pointer;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  vertical-align: middle;
}

.media-remove-label {
  color: #ff6b6b;
  font-weight: 500;
  cursor: pointer;
  margin: 0;
  padding: 0;
  user-select: none;
  display: inline-block;
  vertical-align: middle;
}

.media-edit-footer {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .media-library-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .media-edit-content {
    width: 95%;
  }
}

/* ============================================================================
   CPS ITEMS (CLASSIFIEDS, PRODUCTS, SERVICES) STYLES
   ============================================================================ */

.cps-items-wrapper {
  margin-top: 1.5rem;
}

.cps-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.cps-item-card {
  background: var(--business-card-solid);
  border: 1px solid var(--business-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.cps-item-card:hover {
  box-shadow: 0 8px 24px rgba(223, 105, 26, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: rgba(223, 105, 26, 0.3);
}

.cps-item-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(193, 158, 103, 0.1) 0%, rgba(193, 158, 103, 0.05) 100%);
}

.cps-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cps-item-card:hover .cps-item-image img {
  transform: scale(1.05);
}

.cps-no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(193, 158, 103, 0.3);
}

.cps-item-type-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cps-item-content {
  padding: 1.25rem;
}

.cps-item-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cps-item-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 1rem 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cps-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(193, 158, 103, 0.05) 0%, rgba(193, 158, 103, 0.02) 100%);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  border: 1px solid rgba(193, 158, 103, 0.15);
}

.cps-item-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  font-weight: 500;
}

.cps-item-meta i {
  color: var(--primary);
  font-size: 0.875rem;
  opacity: 0.9;
}

.cps-item-price {
  font-weight: 700;
  color: var(--primary) !important;
  background: rgba(223, 105, 26, 0.1) !important;
  border: 1px solid rgba(223, 105, 26, 0.2);
}

.cps-item-price i {
  color: #df691a !important;
}

.cps-item-date {
  font-weight: 500;
}

.cps-item-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.cps-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  text-decoration: none;
}

.cps-btn-view {
  background: linear-gradient(135deg, #df691a 0%, #ff8c42 100%);
  color: #fff;
  flex: 1;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(223, 105, 26, 0.3);
}

.cps-btn-view:hover {
  background: linear-gradient(135deg, #ff8c42 0%, #df691a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(223, 105, 26, 0.45);
}

.cps-btn-edit {
  background: rgba(23, 162, 184, 0.1);
  color: #17a2b8;
  padding: 0.5rem 0.75rem;
}

.cps-btn-edit:hover {
  background: rgba(23, 162, 184, 0.2);
  transform: translateY(-2px);
}

.cps-btn-delete {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  padding: 0.5rem 0.75rem;
}

.cps-btn-delete:hover {
  background: rgba(220, 53, 69, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .cps-items-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .cps-items-grid {
    grid-template-columns: 1fr;
  }

  .cps-item-card {
    margin: 0;
  }

  .cps-item-actions {
    flex-wrap: wrap;
  }

  .cps-btn-view {
    width: 100%;
  }
}

/* ===== FRANCHISE ANALYTICS STYLES ===== */

/* Chart Container */
.fm-chart-container {
  background: var(--business-card-solid);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  margin-top: 2rem;
  border: 1px solid var(--business-border);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.fm-chart-container:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.fm-chart-container h3 {
  margin: 0 0 1.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--business-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fm-chart-container h3 i {
  color: var(--business-primary);
}

/* Panel Styles */
.fm-panel {
  background: var(--business-card-solid);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  border: 1px solid var(--business-border);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.fm-panel:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.fm-panel-title {
  margin: 0 0 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--business-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--business-border);
}

.fm-panel-title i {
  color: var(--business-primary);
}

/* Top List Styles */
.fm-top-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fm-top-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid var(--business-border);
  transition: all var(--transition-normal);
}

.fm-top-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--business-primary);
  transform: translateX(4px);
}

.fm-top-rank {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--business-primary) 0%, var(--business-secondary) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(223, 105, 26, 0.3);
}

.fm-top-content {
  flex: 1;
  min-width: 0;
}

.fm-top-name {
  font-weight: 500;
  color: var(--business-text);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fm-top-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--business-text-muted);
  flex-wrap: wrap;
}

.fm-top-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.fm-top-meta i {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Empty State for Analytics */
.fm-empty-state {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--business-text-muted);
}

.fm-empty-state i {
  font-size: 2.5rem;
  opacity: 0.3;
  margin-bottom: 0.75rem;
  display: block;
}

.fm-empty-state p {
  margin: 0;
  font-size: 0.95rem;
}

/* Grid Layout for Analytics */
.fm-grid-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .fm-grid-2col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .fm-grid-2col {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .fm-grid-2col {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  .fm-chart-container,
  .fm-panel {
    padding: 1rem;
  }
  
  .fm-chart-container h3,
  .fm-panel-title {
    font-size: 0.95rem;
  }
  
  .fm-top-item {
    padding: 0.75rem;
    gap: 0.75rem;
  }
  
  .fm-top-rank {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .fm-top-name {
    font-size: 0.9rem;
  }
  
  .fm-top-meta {
    font-size: 0.75rem;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .fm-grid-2col {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .fm-top-meta {
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* ============================================
   OAuth / Google Sign-in Notice
   ============================================ */
.ua-oauth-notice {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.08), rgba(66, 133, 244, 0.04));
    border: 1px solid rgba(66, 133, 244, 0.25);
    border-radius: 12px;
    margin-top: 0.5rem;
}

.ua-oauth-notice-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(66, 133, 244, 0.3);
}

.ua-oauth-notice-icon .fa-google {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ua-oauth-notice-body {
    flex: 1;
}

.ua-oauth-notice-body strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary, #ffffff);
    margin-bottom: 0.4rem;
}

.ua-oauth-notice-body p {
    font-size: 0.875rem;
    color: var(--text-muted, #a8b2bd);
    margin: 0 0 0.75rem 0;
    line-height: 1.6;
}

.ua-oauth-notice-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #4285F4;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.ua-oauth-notice-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ===================================================
   New Listing Wizard – Category Highlighting
   =================================================== */

/* Hint bar above the category grid */
.nl-cat-hint-bar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1rem;
    margin-bottom: 1rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-primary, #e2e8f0);
    line-height: 1.4;
}

.nl-cat-hint-bar i {
    color: #f97316;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.nl-cat-hint-bar a {
    color: #f97316;
    text-decoration: underline;
    cursor: pointer;
    white-space: nowrap;
}

.nl-cat-hint-bar a:hover {
    color: #fb923c;
}

/* Dimmed (non-suggested) category cards */
.nl-cat-dimmed {
    opacity: 0.4;
    filter: grayscale(40%);
    transition: opacity 0.25s, filter 0.25s;
}

.nl-cat-dimmed:hover {
    opacity: 0.75;
    filter: grayscale(10%);
}

/* Hidden category cards (e.g. non-business categories when Business is selected) */
.nl-cat-hidden {
    display: none !important;
}

/* Suggested category card – pulsing orange ring */
@keyframes nl-cat-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.6), 0 4px 20px rgba(249, 115, 22, 0.25); }
    70%  { box-shadow: 0 0 0 8px rgba(249, 115, 22, 0), 0 4px 20px rgba(249, 115, 22, 0.25); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0), 0 4px 20px rgba(249, 115, 22, 0.25); }
}

.nl-cat-suggested {
    border-color: #f97316 !important;
    animation: nl-cat-pulse 2s ease-in-out infinite;
    position: relative;
}

/* "Suggested for you" badge inside the card */
.nl-cat-suggested-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.55rem;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.02em;
}
