/* === ROOM8 APP - CLEAN DESIGN === */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Primaere Farben - Blau (App-Theme) */
  --primary-color: #3B82F6;
  --primary-dark: #2563EB;
  --primary-light: #60A5FA;
  --secondary-color: #00A699;
  --secondary-dark: #008F84;
  /* Accent = Coral nur fuer Abbrechen/Sekundaer-Aktionen */
  --accent-color: #E8604C;
  --accent-light: #F0857A;

  /* Gradient Definitionen - Primary = Blau */
  --gradient-primary: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  --gradient-secondary: linear-gradient(135deg, #00A699 0%, #008F84 100%);
  --gradient-accent: linear-gradient(135deg, #E8604C 0%, #F0857A 100%);
  --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
  --gradient-mesh: none;

  /* Aliasse — werden in mehreren HTML-Pages referenziert */
  --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  --shadow-glow: 0 4px 12px rgba(59, 130, 246, 0.35);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --radius-sm: 6px;
  --radius-md: 10px;

  /* Glassmorphism -> Solide Flaechen */
  --glass-bg: rgba(255, 255, 255, 1);
  --glass-bg-strong: rgba(255, 255, 255, 1);
  --glass-border: #EBEBEB;
  --glass-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --glass-blur: none;

  /* Basis Farben */
  --background-color: #F7F7F5;
  --surface-color: #FFFFFF;
  --text-color: #1A1A2E;
  --text-main: #1A1A2E;
  --text-heading: #1A1A2E;
  --text-light: #6A6A6A;
  --text-muted: #929292;
  --border-color: #EBEBEB;

  /* Design Tokens */
  --border-radius: 0.75rem;
  --border-radius-lg: 1rem;
  --border-radius-full: 9999px;
  --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --box-shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.1);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
}

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

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--background-color);
  background-attachment: fixed;
  color: var(--text-color);
  height: 100%;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* iOS Safe Area Support */
@supports (padding-top: env(safe-area-inset-top)) {
  html {
    --safe-area-top: env(safe-area-inset-top);
    --safe-area-bottom: env(safe-area-inset-bottom);
    --safe-area-left: env(safe-area-inset-left);
    --safe-area-right: env(safe-area-inset-right);
  }
}

/* === GLASSMORPHISM UTILITIES === */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass-strong {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass-dark {
  background: rgba(30, 27, 75, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glow Effects */
.glow {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.glow-accent {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.app-container {
  max-width: 500px;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
  box-shadow: var(--box-shadow-lg);
  border-left: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  position: relative;
  /* Platz für Floating Menu + extra Abstand */
  padding-bottom: calc(100px + env(safe-area-inset-bottom, 20px) + 30px);
}

/* === HEADER === */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  /* iOS Safe Area - Notch Support */
  padding-top: calc(var(--space-md) + env(safe-area-inset-top, 0px));
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.app-header .back-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-color);
  background: var(--glass-bg);
  border-radius: var(--border-radius-full);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.app-header .back-arrow:hover {
  background: var(--primary-color);
  color: white;
  transform: translateX(-3px);
}

.app-header h1 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  flex-grow: 1;
  margin-left: var(--space-md);
  color: white;
}

.header-actions {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.header-action-btn {
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.header-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.header-icon-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-full);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-icon-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.05);
}

/* === PROFILE GREETING === */
.profile-greeting {
  display: flex;
  align-items: center;
  padding: var(--space-xl) var(--space-lg);
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.profile-greeting::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.profile-greeting::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.avatar-display {
  width: 90px;
  height: 90px;
  border-radius: var(--border-radius-full);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.4);
  margin-right: var(--space-lg);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.greeting-text {
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.greeting-text h2 {
  font-size: 1.4rem;
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.profile-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.profile-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.85);
  backdrop-filter: blur(10px);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.profile-btn:hover {
  background: rgba(37, 99, 235, 0.95);
  transform: translateY(-2px);
}

.profile-btn.secondary {
  background: transparent;
  border: 1px solid rgba(59, 130, 246, 0.5);
}

.profile-btn.secondary:hover {
  background: rgba(59, 130, 246, 0.15);
}

/* === MAIN CONTENT === */
.app-content {
  flex-grow: 1;
  padding: 1.5rem;
  overflow-y: auto;
}

/* === MY LISTINGS === */
.my-listings-header {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.my-listings-header h3 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-color);
}

.my-listings-header span {
  color: var(--text-light);
  font-weight: 400;
}

/* === LISTINGS GRID === */
.listings-grid {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

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

/* === LISTING CARD (für Profil-Seite) === */
.listing-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.2s ease;
}

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

.card-image-link {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #f0f0f0;
}

.card-content {
  padding: 1rem;
}

.card-content h4 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  color: var(--text-color);
}

.card-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

.btn-small {
  flex: 1;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-edit {
  background-color: #3B82F6;
  color: white;
}

.btn-edit:hover {
  background-color: #2563EB;
}

.btn-delete {
  background-color: #ef4444;
  color: white;
}

.btn-delete:hover {
  background-color: #dc2626;
}

/* === CARD (für Übersichtsseiten) === */
.card {
  display: flex;
  flex-direction: column;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--glass-shadow);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--box-shadow-lg);
  border-color: var(--primary-light);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #EBEBEB;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card-body {
  padding: var(--space-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 var(--space-xs) 0;
  color: var(--text-color);
}

.card-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.card-footer {
  padding: 0.75rem var(--space-md);
  background: rgba(59, 130, 246, 0.05);
  font-size: 0.8rem;
  border-top: 1px solid var(--glass-border);
  color: var(--primary-color);
  font-weight: 600;
}

/* Card Price Tag */
.card-price {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  color: white;
  border-radius: var(--border-radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
  letter-spacing: 0.02em;
}

/* Card Badge */
.card-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  padding: 0.3rem 0.7rem;
  background: var(--gradient-accent);
  color: white;
  border-radius: var(--border-radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === EMPTY STATE === */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  grid-column: 1 / -1;
}

.empty-state svg {
  width: 60px;
  height: 60px;
  stroke-width: 1.5;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.empty-state h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}

.empty-state p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  max-width: 400px;
}

/* === FORMS === */
.form-group {
  margin-bottom: var(--space-lg);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid var(--glass-border);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  color: var(--text-color);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--glass-bg-strong);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.submit-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: var(--border-radius-full);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.45);
}

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

.submit-btn:disabled {
  background: var(--text-muted);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* Secondary Button - Coral fuer Abbrechen/Sekundaer-Aktionen */
.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--accent-color);
  color: white;
}

/* === COLLAPSIBLE SIDEBAR NAVIGATION - ULTRA TRANSPARENT GLASS === */

/* Toggle Button (Arrow) - Crystal Clear */
.sidebar-toggle {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  width: 26px;
  height: 60px;
  /* Ultra-transparent */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: none;
  border-radius: 0 18px 18px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    4px 0 16px rgba(59, 130, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-toggle:hover {
  width: 30px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow:
    6px 0 20px rgba(59, 130, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.sidebar-toggle:active {
  transform: translateY(-50%) scale(0.95);
}

.sidebar-toggle .toggle-icon {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.sidebar-toggle .toggle-icon svg {
  width: 100%;
  height: 100%;
}

.sidebar-toggle:hover .toggle-icon {
  color: var(--primary-dark);
  transform: translateX(2px);
}

/* Toggle rotates when open */
.sidebar-toggle.open .toggle-icon {
  transform: rotate(180deg);
}

/* Sidebar Panel - Crystal Glass */
.sidebar-nav {
  position: fixed;
  left: -220px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 16px;
  /* Super transparent glass */
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: none;
  border-radius: 0 28px 28px 0;
  box-shadow:
    10px 0 35px rgba(59, 130, 246, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
}

.sidebar-nav.open {
  left: 0;
  opacity: 1;
  visibility: visible;
}

/* Nav Items - Floating Pills */
.sidebar-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 155px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-nav-item:active {
  transform: scale(0.96);
}

.sidebar-nav-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
}

.sidebar-nav-item.active {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.45);
  transform: translateX(4px);
}

/* Nav Icons - Clean Style */
.sidebar-nav-icon {
  width: 22px;
  height: 22px;
  color: var(--primary-color);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.sidebar-nav-icon svg {
  width: 100%;
  height: 100%;
}

.sidebar-nav-item:hover .sidebar-nav-icon {
  color: var(--primary-dark);
  transform: scale(1.1);
}

.sidebar-nav-item.active .sidebar-nav-icon {
  color: white;
}

/* Nav Labels */
.sidebar-nav-label {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  white-space: nowrap;
  transition: all 0.3s ease;
  letter-spacing: 0.4px;
}

.sidebar-nav-item:hover .sidebar-nav-label {
  color: var(--primary-dark);
  font-weight: 700;
}

.sidebar-nav-item.active .sidebar-nav-label {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

/* Hide toggle when sidebar is open */
.sidebar-toggle.open {
  left: -50px;
  opacity: 0;
  pointer-events: none;
}

/* NO body padding */
body.has-sidebar-nav {
  padding-left: 0;
}

body.has-sidebar-nav .app-container {
  max-width: 100%;
  width: 100%;
}

/* Create Listing Button (Plus) */
.create-listing-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.create-listing-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.6);
}

.create-listing-btn:active {
  transform: scale(0.95);
}

.create-listing-btn svg {
  width: 28px;
  height: 28px;
  color: white;
}

/* Legacy nav styles for compatibility */
.app-footer-nav {
  display: none;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-light);
  padding: 0.5rem;
  font-size: 0.7rem;
  width: 65px;
  transition: color 0.2s;
  position: relative;
}

.nav-item:hover,
.nav-item.active {
  color: var(--primary-color);
}

.nav-item i {
  margin-bottom: 4px;
}

.nav-item i svg {
  width: 24px;
  height: 24px;
}

/* === RESPONSIVE === */
@media (min-width: 768px) {
  .app-container {
    max-width: 1200px;
    border-radius: var(--border-radius-lg);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
    min-height: calc(100vh - var(--space-xl) * 2);
  }

  .listings-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .sidebar-toggle {
    width: 32px;
    height: 64px;
  }

  .sidebar-nav.open {
    padding: 20px 16px;
  }

  .sidebar-nav-item {
    padding: 14px 20px;
    min-width: 160px;
  }

  .sidebar-nav-icon {
    width: 24px;
    height: 24px;
  }

  .sidebar-nav-label {
    font-size: 15px;
  }

  .create-listing-btn {
    bottom: 40px;
    right: 40px;
  }
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .sidebar-toggle {
    width: 24px;
    height: 48px;
    border-radius: 0 12px 12px 0;
  }

  .sidebar-toggle .toggle-icon {
    width: 16px;
    height: 16px;
  }

  .sidebar-nav {
    padding: 12px 10px;
    border-radius: 0 16px 16px 0;
  }

  .sidebar-nav-item {
    padding: 10px 14px;
    min-width: 130px;
    gap: 10px;
  }

  .sidebar-nav-icon {
    width: 20px;
    height: 20px;
  }

  .sidebar-nav-label {
    font-size: 13px;
  }

  .create-listing-btn {
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
  }

  .create-listing-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* 🔔 BADGE-COUNTER STYLES */
/* Füge das zu deiner style.css hinzu! */

.nav-item {
  position: relative;
}

.nav-badge {
  position: absolute;
  top: 0.25rem;
  right: 0.75rem;
  background-color: #ef4444;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
  line-height: 1;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  animation: badge-pulse 2s ease-in-out infinite;
}

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

/* Für größere Bildschirme */
@media (min-width: 768px) {
  .nav-badge {
    top: 0.5rem;
    right: 1rem;
  }
}

/* === ADDITIONAL GLASSMORPHISM COMPONENTS === */

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 1rem 1.5rem;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-full);
  box-shadow: var(--box-shadow-lg);
  font-weight: 600;
  color: var(--text-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
}

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

.toast.success {
  border-left: 4px solid var(--secondary-color);
}

.toast.error {
  border-left: 4px solid var(--accent-color);
}

/* Loading Spinner */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--glass-border);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Empty State Enhanced */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  grid-column: 1 / -1;
}

.empty-state-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.empty-state-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.empty-state h3 {
  margin: 0 0 var(--space-sm) 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-color);
}

.empty-state p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  max-width: 400px;
  line-height: 1.6;
}

/* Chip/Tag Styles */
.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.4rem 0.9rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color);
  transition: all 0.2s ease;
}

.chip:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.chip.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
}

/* Search Bar Enhanced */
.search-bar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.25rem;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid var(--glass-border);
  border-radius: var(--border-radius-full);
  transition: all 0.3s ease;
}

.search-bar:focus-within {
  border-color: var(--primary-color);
  background: var(--glass-bg-strong);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: var(--text-color);
  outline: none;
}

.search-bar input::placeholder {
  color: var(--text-muted);
}

.search-bar svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
}

/* Pagination Enhanced */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-lg) 0;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  color: var(--text-color);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

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

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

/* ============================================
   ROOM8 PREMIUM DESIGN ENHANCEMENTS
   "WOW Effect" Upgrade - Glassmorphism 2.0
   ============================================ */

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
}

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

/* === PREMIUM CARD STYLES === */
.premium-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 10px 20px -5px rgba(59, 130, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  animation: fadeInUp 0.5s ease-out;
}

.premium-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 12px 24px -6px rgba(0, 0, 0, 0.08),
    0 20px 40px -10px rgba(59, 130, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* === ENHANCED BUTTONS === */
.btn-premium {
  position: relative;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 15px rgba(59, 130, 246, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

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

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 25px rgba(59, 130, 246, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-premium:active {
  transform: translateY(-1px);
}

/* === GLASSMORPHISM INPUT FIELDS === */
.input-premium {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  font-size: 1rem;
  color: var(--text-color);
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.input-premium:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 0 4px rgba(59, 130, 246, 0.15),
    inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.input-premium::placeholder {
  color: var(--text-muted);
}

/* === PREMIUM SECTION HEADERS === */
.section-header-premium {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--primary-color), transparent) 1;
}

.section-header-premium h2,
.section-header-premium h3 {
  margin: 0;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header-premium .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 12px;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* === ENHANCED BADGES === */
.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.badge-premium.success {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  border-color: transparent;
}

.badge-premium.warning {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: white;
  border-color: transparent;
}

.badge-premium.info {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  color: white;
  border-color: transparent;
}

.badge-premium.accent {
  background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
  color: white;
  border-color: transparent;
}

/* === FLOATING ACTION CARD === */
.floating-action-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 20px 40px -10px rgba(59, 130, 246, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-action-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 12px -2px rgba(0, 0, 0, 0.08),
    0 25px 50px -12px rgba(59, 130, 246, 0.25);
}

.floating-action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 24px 24px 0 0;
}

/* === PREMIUM LIST ITEMS === */
.list-item-premium {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.list-item-premium:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--primary-light);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.list-item-premium .icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(212, 80, 62, 0.1));
  border-radius: 12px;
  font-size: 1.3rem;
}

.list-item-premium .content {
  flex: 1;
}

.list-item-premium .title {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.2rem;
}

.list-item-premium .subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
}

.list-item-premium .arrow {
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.list-item-premium:hover .arrow {
  transform: translateX(4px);
  color: var(--primary-color);
}

/* === STATS CARD PREMIUM === */
.stats-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
}

.stat-card-premium {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.stat-card-premium .value {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.stat-card-premium .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 600;
}

/* === ENHANCED LOADING SKELETON === */
.skeleton-premium {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.3) 25%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.3) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 12px;
}

/* === TOOLTIP PREMIUM === */
.tooltip-premium {
  position: relative;
}

.tooltip-premium::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  padding: 0.5rem 0.9rem;
  background: rgba(30, 27, 75, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
}

.tooltip-premium:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-10px);
}

/* === CONTENT DIVIDER === */
.divider-premium {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
  margin: 2rem 0;
  border: none;
}

/* === HERO SECTION ENHANCEMENTS === */
.hero-premium {
  position: relative;
  padding: 2.5rem 1.5rem;
  background: var(--gradient-primary);
  border-radius: 0 0 28px 28px;
  color: white;
  overflow: hidden;
}

.hero-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hero-premium::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-premium > * {
  position: relative;
  z-index: 1;
}

/* === NOTIFICATION DOT === */
.notification-dot-premium {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: var(--accent-color);
  border-radius: 50%;
  border: 2px solid white;
  animation: pulse-glow 2s ease-in-out infinite;
}

/* === PRICE TAG PREMIUM === */
.price-tag-premium {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(212, 80, 62, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  font-weight: 700;
  color: var(--primary-color);
}

.price-tag-premium.large {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  border-radius: 16px;
}

/* === FEATURE HIGHLIGHT === */
.feature-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 14px;
  color: #059669;
  font-weight: 600;
}

.feature-highlight .check-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #10B981;
  border-radius: 50%;
  color: white;
  font-size: 0.8rem;
}

/* === CARD GRID ANIMATIONS === */
.card-grid-animated > * {
  animation: fadeInUp 0.5s ease-out both;
}

.card-grid-animated > *:nth-child(1) { animation-delay: 0.1s; }
.card-grid-animated > *:nth-child(2) { animation-delay: 0.15s; }
.card-grid-animated > *:nth-child(3) { animation-delay: 0.2s; }
.card-grid-animated > *:nth-child(4) { animation-delay: 0.25s; }
.card-grid-animated > *:nth-child(5) { animation-delay: 0.3s; }
.card-grid-animated > *:nth-child(6) { animation-delay: 0.35s; }
.card-grid-animated > *:nth-child(7) { animation-delay: 0.4s; }
.card-grid-animated > *:nth-child(8) { animation-delay: 0.45s; }

/* === ENHANCED SHADOWS FOR DEPTH === */
.shadow-elevated {
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 10px 20px rgba(59, 130, 246, 0.08),
    0 20px 40px rgba(59, 130, 246, 0.06);
}

.shadow-elevated-hover:hover {
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.06),
    0 16px 32px rgba(59, 130, 246, 0.12),
    0 32px 64px rgba(59, 130, 246, 0.1);
}

/* === MICRO-INTERACTIONS === */
.interactive-scale {
  transition: transform 0.2s ease;
}

.interactive-scale:hover {
  transform: scale(1.02);
}

.interactive-scale:active {
  transform: scale(0.98);
}

.interactive-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interactive-lift:hover {
  transform: translateY(-4px);
}

/* === APPLY PREMIUM STYLES TO EXISTING ELEMENTS === */

/* Enhanced Submit Button */
.submit-btn {
  position: relative;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 15px rgba(59, 130, 246, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

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

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 25px rgba(59, 130, 246, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* Enhanced housing/marketplace cards */
.housing-card,
.marketplace-card,
.job-card,
.coupon-card {
  animation: fadeInUp 0.5s ease-out;
}

/* Enhanced info sections */
.info-box,
.info-section {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
}

/* Settings items enhancement */
.settings-item {
  transition: all 0.3s ease;
}

.settings-item:hover {
  background: rgba(59, 130, 246, 0.05);
  transform: translateX(4px);
}

/* Inline-Spinner fuer Lade-Buttons (Upload/Submit laeuft) */
.btn-spin {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: -0.15em;
}

/* Form groups enhancement */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
  background: rgba(255, 255, 255, 0.95);
}
/* Speichern-Button (Coupons/Jobs/Events) */
.save-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #6b7280;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  transition: color 0.15s ease, transform 0.1s ease, background 0.15s ease;
}
.save-btn:hover { background: #fff; color: var(--primary-color); }
.save-btn:active { transform: scale(0.92); }
.save-btn.is-saved { color: var(--primary-color); }
.save-btn:disabled { opacity: 0.5; cursor: default; }
/* Karten-Overlay-Variante (Bild oben rechts) */
.card-save-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
}

/* Stadt-Filter Chip (Coupons/Jobs/Events) */
.city-chip {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.45rem 0.9rem; border-radius: 999px; cursor: pointer;
  border: 1.5px solid var(--primary-color, #2563EB);
  background: #fff; color: var(--primary-color, #2563EB);
  font-weight: 600; font-size: 0.85rem; white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.city-chip.active { background: var(--primary-color, #2563EB); color: #fff; }
.city-filter-row { display: flex; align-items: center; gap: 0.5rem; padding: 0 1.25rem; margin-bottom: 0.75rem; }
.city-filter-hint { font-size: 0.78rem; color: #9CA3AF; }
