/* NaturZone – FKK & Naturisten Design */
/* Warm, natuerlich, Strand & Sonne */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

:root {
  /* Hauptfarben – Natur & Strand */
  --green:        #2D8653;
  --green-dark:   #1A6038;
  --green-light:  #E8F5EE;
  --amber:        #D4854A;
  --amber-light:  #FDF0E6;
  --sand:         #E8D5B0;
  --sand-dark:    #C4A97A;
  --sky:          #5B9FBF;
  --sky-light:    #E8F4FA;
  --purple:       #7F77DD;
  --purple-light: #EEEDFE;
  --red:          #C0522A;
  --red-light:    #FAEAE3;

  /* Hintergrund – warmes Sandbeige */
  --bg:           #F5EFE3;
  --bg2:          #EDE4D3;
  --card:         #FFFEF9;
  --card-warm:    #FBF6ED;

  /* Borders */
  --border:       rgba(140,110,60,0.12);
  --border-md:    rgba(140,110,60,0.22);

  /* Text */
  --text:         #2C2416;
  --text-muted:   #7A6A50;
  --text-hint:    #B0A080;

  /* Radien */
  --radius:       14px;
  --radius-sm:    9px;
  --radius-pill:  99px;

  /* Schatten */
  --shadow-sm:    0 1px 4px rgba(100,70,20,.08);
  --shadow:       0 2px 12px rgba(100,70,20,.12);
  --shadow-lg:    0 4px 24px rgba(100,70,20,.16);
  --ivory:        #F5F0E8;
}

/* ── Dark Mode ─────────────────────────────────────────────── */
[data-theme="dark"] {
  --bg:           #1C1A14;
  --bg2:          #25221A;
  --card:         #2A2620;
  --card-warm:    #302C24;
  --border:       rgba(200,170,100,.1);
  --border-md:    rgba(200,170,100,.2);
  --text:         #F0E8D8;
  --text-muted:   #A89878;
  --text-hint:    #7A6A52;
  --green:        #3DAA6A;
  --green-dark:   #2A7A4A;
  --green-light:  rgba(61,170,106,.12);
  --amber:        #E8A060;
  --amber-light:  rgba(232,160,96,.12);
  --sky:          #6AAACF;
  --sky-light:    rgba(106,170,207,.12);
  --red:          #D86040;
  --red-light:    rgba(216,96,64,.12);
  --sand:         #4A3E2A;
  --sand-dark:    #6A5A3A;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.3);
  --shadow:       0 2px 12px rgba(0,0,0,.35);
  --shadow-lg:    0 4px 24px rgba(0,0,0,.45);
}

/* ── Base ──────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(212,133,74,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(45,134,83,.05) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
}
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ── Layout ─────────────────────────────────────────────────── */
.wrap { max-width: 960px; margin: 0 auto; padding: 0 16px; }
.page-grid { display: grid; grid-template-columns: 1fr 230px; gap: 22px; padding: 22px 0; }
.page-main-col { min-width: 0; }
@media(max-width:680px) { .page-grid { grid-template-columns: 1fr; } .side-col { display: none; } }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  background: var(--card);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.nav-inner { max-width: 960px; margin: 0 auto; padding: 0 16px; display: flex; align-items: center; gap: 8px; height: 58px; }
.logo { display: flex; align-items: center; gap: 9px; font-size: 18px; font-weight: 800; color: var(--text); flex-shrink: 0; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(45,134,83,.3);
}
.logo-sun { width: 16px; height: 16px; background: #F9CB42; border-radius: 50%; box-shadow: 0 0 6px rgba(249,203,66,.6); }
.logo span { color: var(--green); }
.nav-links { display: flex; gap: 2px; margin-left: 12px; }
.nav-link { padding: 5px 12px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; color: var(--text-muted); transition: all .15s; }
.nav-link:hover { background: var(--bg2); color: var(--text); text-decoration: none; }
.nav-link.active { background: var(--green-light); color: var(--green-dark); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700;
  border: none; cursor: pointer;
  transition: all .18s;
  text-decoration: none;
  letter-spacing: .01em;
}
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--ivory);
  box-shadow: 0 2px 10px rgba(45,134,83,.25);
}
.btn-green:hover {
  background: linear-gradient(135deg, var(--green-dark), #124428);
  color: var(--ivory);
  text-decoration: none;
  box-shadow: 0 3px 14px rgba(45,134,83,.35);
  transform: translateY(-1px);
}
.btn-outline { background: transparent; border: 1.5px solid var(--border-md); color: var(--text); }
.btn-outline:hover { background: var(--bg2); text-decoration: none; border-color: var(--sand-dark); }
.btn-amber {
  background: linear-gradient(135deg, var(--amber), #B86A30);
  color: var(--ivory);
  box-shadow: 0 2px 10px rgba(212,133,74,.25);
}
.btn-amber:hover { transform: translateY(-1px); text-decoration: none; color: var(--ivory); }
.btn-danger { background: linear-gradient(135deg, var(--red), #8B3010); color: var(--ivory); }
.btn-full { width: 100%; }
.btn-ghost { background: none; border: none; cursor: pointer; color: var(--text-muted); padding: 5px 9px; border-radius: var(--radius-sm); font-size: 14px; transition: all .15s; }
.btn-ghost:hover { background: var(--bg2); color: var(--text); }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.card:hover { box-shadow: var(--shadow); }
.card-pad { padding: 16px; }

/* ── Forms ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 14px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 5px; }
input[type=text], input[type=email], input[type=password], input[type=url],
input[type=search], input[type=number], textarea, select {
  width: 100%; padding: 9px 13px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--radius-sm);
  font-size: 14px; font-family: inherit;
  background: var(--card-warm);
  color: var(--text); outline: none;
  transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,134,83,.1);
}
textarea { resize: vertical; min-height: 80px; }

/* ── Alerts ──────────────────────────────────────────────────── */
.alert { padding: 11px 15px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 14px; font-weight: 500; }
.alert-success { background: var(--green-light);  color: var(--green-dark); border: 1px solid rgba(45,134,83,.25); }
.alert-error   { background: var(--red-light);    color: var(--red);        border: 1px solid rgba(192,82,42,.25); }
.alert-info    { background: var(--sky-light);    color: #2A6A8A;           border: 1px solid rgba(91,159,191,.25); }
.alert-warn    { background: var(--amber-light);  color: #8A4A18;           border: 1px solid rgba(212,133,74,.25); }

/* ── Badges ──────────────────────────────────────────────────── */
.badge { display: inline-block; padding: 2px 9px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 700; }
.badge-green  { background: var(--green-light);  color: var(--green-dark); }
.badge-amber  { background: var(--amber-light);  color: #8A4A18; }
.badge-purple { background: var(--purple-light); color: #3C3489; }
.badge-red    { background: var(--red-light);    color: var(--red); }
.badge-gray   { background: var(--bg2); color: var(--text-muted); }
.badge-lock   { background: var(--sand); color: var(--text-muted); }

/* ── Avatars ─────────────────────────────────────────────────── */
.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--ivory); display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 15px;
  flex-shrink: 0; overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-sm { width: 30px; height: 30px; font-size: 12px; }
.avatar-lg { width: 56px; height: 56px; font-size: 21px; }
.avatar-xl { width: 80px; height: 80px; font-size: 28px; }

/* ── Trust Badges ───────────────────────────────────────────── */
.trust-row { display: flex; gap: 6px; flex-wrap: wrap; }
.trust-badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 9px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 600; }
.tb-verified { background: var(--green-light);  color: var(--green-dark); }
.tb-active   { background: var(--sky-light);    color: #2A6A8A; }
.tb-anon     { background: var(--bg2);          color: var(--text-muted); }
.tb-private  { background: var(--red-light);    color: var(--red); }

/* ── Group header ───────────────────────────────────────────── */
.group-cover { height: 160px; background: linear-gradient(135deg, var(--green), var(--amber)); overflow: hidden; }
.group-cover img { width: 100%; height: 100%; object-fit: cover; }
.group-info { padding: 0 16px 16px; }
.group-avatar {
  width: 70px; height: 70px; border-radius: 50%;
  border: 3px solid var(--card); margin-top: -35px;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; overflow: hidden;
  box-shadow: var(--shadow);
}
.group-avatar img { width: 100%; height: 100%; object-fit: cover; }
.group-name { font-size: 19px; font-weight: 800; margin: 8px 0 2px; }
.group-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.group-stats { display: flex; gap: 14px; font-size: 13px; color: var(--text-muted); }
.group-stats strong { color: var(--text); }

/* ── Posts / Chat ───────────────────────────────────────────── */
.post { padding: 14px 16px; border-bottom: 1px solid var(--border); }
.post:last-child { border-bottom: none; }
.post-header { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 8px; }
.post-meta { flex: 1; }
.post-author { font-size: 14px; font-weight: 700; }
.post-time { font-size: 12px; color: var(--text-hint); }
.post-text { font-size: 14px; line-height: 1.65; margin-bottom: 10px; white-space: pre-wrap; word-break: break-word; }
.post-img { width: 100%; border-radius: var(--radius-sm); max-height: 420px; object-fit: cover; display: block; margin-bottom: 10px; cursor: zoom-in; border: 1px solid var(--border); }
.post-actions { display: flex; gap: 8px; }
.action-btn { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text-muted); cursor: pointer; padding: 5px 10px; border-radius: var(--radius-pill); border: none; background: none; transition: all .15s; font-family: inherit; }
.action-btn:hover { background: var(--bg2); color: var(--text); }
.action-btn.liked { color: var(--red); font-weight: 600; }

/* ── Compose Box ─────────────────────────────────────────────── */
.compose-box { padding: 14px 16px; border-bottom: 1px solid var(--border); background: var(--card-warm); }
.compose-inner { display: flex; gap: 10px; }
.compose-body { flex: 1; }
.compose-area {
  width: 100%; border: 1.5px solid var(--border-md); border-radius: 11px;
  padding: 10px 13px; font-size: 14px; font-family: inherit;
  resize: none; min-height: 72px; outline: none; transition: all .15s;
  background: var(--bg);
}
.compose-area:focus { border-color: var(--green); background: var(--card); box-shadow: 0 0 0 3px rgba(45,134,83,.08); }
.compose-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.compose-tools { display: flex; gap: 4px; }
.compose-tool { background: none; border: none; cursor: pointer; padding: 5px 8px; border-radius: var(--radius-sm); color: var(--text-muted); font-size: 19px; transition: all .15s; }
.compose-tool:hover { background: var(--green-light); color: var(--green); }
.img-preview-wrap { position: relative; display: inline-block; margin-top: 8px; }
.img-preview { max-height: 110px; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.img-remove { position: absolute; top: 4px; right: 4px; background: rgba(0,0,0,.65); color: var(--ivory); border: none; border-radius: 50%; width: 22px; height: 22px; cursor: pointer; font-size: 12px; display: flex; align-items: center; justify-content: center; }

/* ── Filter Chips ────────────────────────────────────────────── */
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  padding: 5px 13px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--border-md); background: var(--card); color: var(--text-muted);
  cursor: pointer; transition: all .15s; white-space: nowrap;
}
.chip.on { background: var(--green); color: var(--ivory); border-color: var(--green); box-shadow: 0 2px 8px rgba(45,134,83,.2); }
.chip:hover:not(.on) { border-color: var(--green); color: var(--green); background: var(--green-light); }

/* ── Sidebar Widgets ─────────────────────────────────────────── */
.sidebar-widget {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.widget-title {
  font-size: 12px; font-weight: 700; color: var(--text-muted);
  padding: 11px 14px; border-bottom: 1px solid var(--border);
  text-transform: uppercase; letter-spacing: .06em;
  background: var(--card-warm);
}
.widget-body { padding: 12px 14px; }
.widget-row { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 1px solid var(--border); }
.widget-row:last-child { border-bottom: none; }
.widget-row-info { flex: 1; min-width: 0; }
.widget-row-name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.widget-row-sub  { font-size: 12px; color: var(--text-muted); }

/* ── Spot Card List ──────────────────────────────────────────── */
.spot-card { display: flex; gap: 12px; padding: 13px; border-bottom: 1px solid var(--border); cursor: pointer; transition: background .1s; }
.spot-card:last-child { border-bottom: none; }
.spot-card:hover { background: var(--bg2); }
.spot-thumb { width: 74px; height: 62px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--sand); }
.spot-thumb img { width: 100%; height: 100%; object-fit: cover; }
.spot-info { flex: 1; min-width: 0; }
.spot-name { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.spot-loc  { font-size: 12px; color: var(--text-muted); margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.spot-type { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; padding: 2px 7px; border-radius: var(--radius-pill); background: var(--bg2); color: var(--text-muted); white-space: nowrap; }
.spot-stars { color: #E8A020; font-size: 13px; margin-left: auto; white-space: nowrap; }

/* ── Tabs ─────────────────────────────────────────────────────── */
.tab-bar { display: flex; gap: 2px; border-bottom: 2px solid var(--border); margin-bottom: 16px; overflow-x: auto; }
.tab-btn { padding: 9px 18px; font-size: 14px; font-weight: 600; color: var(--text-muted); cursor: pointer; border: none; background: none; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .15s; white-space: nowrap; }
.tab-btn.on { color: var(--green); border-bottom-color: var(--green); background: var(--green-light); border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.tab-btn:hover:not(.on) { color: var(--text); background: var(--bg2); }

/* ── Utility ─────────────────────────────────────────────────── */
.text-sm    { font-size: 13px; }
.text-xs    { font-size: 12px; }
.text-muted { color: var(--text-muted); }
.text-hint  { color: var(--text-hint); }
.text-green { color: var(--green); }
.text-red   { color: var(--red); }
.text-amber { color: var(--amber); }
.text-bold  { font-weight: 700; }
.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-10 { margin-bottom: 10px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; }
.gap-4  { gap: 4px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }

/* ── Section Headers ─────────────────────────────────────────── */
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--card-warm), var(--card));
}
.section-title { font-size: 15px; font-weight: 800; }

/* ── Hero Banners ────────────────────────────────────────────── */
.hero-banner {
  background: linear-gradient(135deg, #1A6038 0%, #2D8653 40%, #4AA870 70%, #D4854A 100%);
  border-radius: var(--radius);
  padding: 22px 22px;
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── Gruppen Karte ───────────────────────────────────────────── */
.gruppe-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .2s; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.gruppe-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--sand-dark); }
.gruppe-footer { padding: 10px 14px; border-top: 1px solid var(--border); display: flex; gap: 8px; background: var(--card-warm); }
.gruppen-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(270px,1fr)); gap: 18px; }

/* ── Paginierung ─────────────────────────────────────────────── */
.pagination { display: flex; gap: 4px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.page-btn { padding: 6px 13px; border-radius: var(--radius-sm); border: 1.5px solid var(--border-md); background: var(--card); color: var(--text-muted); font-size: 14px; font-weight: 600; cursor: pointer; transition: all .15s; }
.page-btn.on { background: var(--green); color: var(--ivory); border-color: var(--green); }
.page-btn:hover:not(.on) { background: var(--bg2); border-color: var(--sand-dark); }

/* ── Stars ───────────────────────────────────────────────────── */
.stars { color: #E8A020; letter-spacing: 1px; }

/* ── Responsive – Tablet ─────────────────────────────────────── */
@media (max-width: 820px) {
  .nav-links { display: none !important; }
  .wrap { padding: 0 12px; }
}

@media (max-width: 680px) {
  .page-grid { grid-template-columns: 1fr; }
  .side-col { display: none; }
  body { font-size: 14px; }
  .btn { padding: 8px 16px; }
  .gruppen-grid { grid-template-columns: 1fr; }
}

/* ── Events-Suchleiste ───────────────────────────────────────── */
@media (max-width: 760px) {
  .events-search-form { flex-direction: column !important; }
  .events-search-form > div { flex: none !important; min-width: 100% !important; width: 100% !important; }
  .privat-grid { grid-template-columns: 1fr !important; }
  #amount-grid { grid-template-columns: repeat(3, 1fr) !important; }
  #ev-modal > div, #nz-notice-box { max-width: 100% !important; margin: 0 8px; border-radius: 12px; }
  .adm-2col { grid-template-columns: 1fr !important; }
  .nz-footer-grid { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
  .nz-footer-brand { grid-column: 1 / -1 !important; }
  #new-form .rg-grid { grid-template-columns: 1fr !important; }
  .profil-header { flex-direction: column !important; text-align: center !important; }
  .adm-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .stat-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .checkin-widget { flex-direction: column !important; }
  .partner-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 400px) {
  .nz-footer-grid { grid-template-columns: 1fr !important; }
  .nz-footer-brand { grid-column: 1 !important; }
  .ltype-grid { grid-template-columns: repeat(2, 1fr) !important; }
  #amount-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Index 3-Spalten-Layout ──────────────────────────────────── */
.idx-3col { display: flex; gap: 0; align-items: flex-start; }
.idx-3col .idx-left-nav  { width: 228px; flex-shrink: 0; }
.idx-3col .idx-right-col { width: 228px; flex-shrink: 0; }
.idx-3col .main-col      { flex: 1; min-width: 0; padding: 0 18px; }

@media (max-width: 960px) { .idx-3col .idx-left-nav { display: none !important; } }

@media (max-width: 680px) {
  .idx-3col { display: block !important; }
  .idx-3col .idx-left-nav  { display: none !important; }
  .idx-3col .idx-right-col { display: none !important; }
  .idx-3col .main-col      { padding: 0 8px !important; width: 100% !important; box-sizing: border-box !important; }
  .mobile-topbar           { display: flex !important; }
  .idx-3col .main-col > div[style*="linear-gradient"] { border-radius: 10px !important; padding: 18px 14px !important; }
  .idx-3col .main-col div[style*="minmax(150px"] { grid-template-columns: repeat(2, 1fr) !important; }
  .idx-3col .main-col div[style*="minmax(140px"] { grid-template-columns: repeat(2, 1fr) !important; }
  .idx-3col .main-col .card { overflow: hidden !important; }
  .idx-3col .main-col .spot-card { padding: 10px 12px !important; }
  .idx-3col .main-col .btn { min-height: 40px !important; }
}

/* ── Mobile Topbar ───────────────────────────────────────────── */
.mobile-topbar {
  display: none; align-items: center; justify-content: space-between;
  padding: 10px 14px; background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100; gap: 8px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 960px) { .mobile-topbar { display: flex !important; } }

/* ── Pulse Animation ─────────────────────────────────────────── */
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.3); }
}

/* ── Sanfte Welle im Hintergrund ─────────────────────────────── */
@keyframes gentle-wave {
  0%,100% { transform: translateX(0) translateY(0); }
  50%      { transform: translateX(5px) translateY(-3px); }
}

/* ── Karten-Seite speziell ───────────────────────────────────── */
#karte-wrap .leaflet-container { border-radius: var(--radius); box-shadow: var(--shadow); }
.karte-filter-bar { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 16px; box-shadow: var(--shadow-sm); }

/* ── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--sand-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }