    html, body { touch-action: manipulation; overscroll-behavior-y: none; -webkit-overflow-scrolling: auto; }
    html { background: #F5A623 !important; }
    button, a, [onclick], .nav-item, .cat-chip, .map-chip, .filter-chip, .filter-btn, .profil-row, .listing-card, .detail-row, .detail-cta-btn, .auth-btn, .auth-tab, .map-card, .review-submit, .reply-submit, .comment-send, .form-submit, .filter-apply-btn, .photo-upload-btn, .logout-btn { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
    .nav-item, .profil-row, .listing-card, .cat-chip, .map-chip, .filter-btn { transition: opacity 0.12s ease, background-color 0.12s ease; }
    .nav-item:active, .profil-row:active, .listing-card:active, .cat-chip:active, .map-chip:active, .filter-btn:active { opacity: 0.6; }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --yellow: #F5A623; --yellow-dark: #D4841A; --yellow-light: #FFF8EC;
      --bg: #F2EFE9; --card: #FFFFFF; --text-1: #111111; --text-2: #5A5A5A;
      --text-3: #AAAAAA; --green: #22C55E; --green-light: #DCFCE7;
      --red: #EF4444; --red-light: #FEE2E2; --border: #EAEAEA;
      --radius-md: 18px; --radius-lg: 24px;
      --shadow-sm: 0 2px 16px rgba(0,0,0,0.07); --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
      --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
    }
    html { background: #F5A623; margin: 0; padding: 0; }
    html { background: #D4841A; }
    html, body { height: 100%; font-family: 'DM Sans', -apple-system, sans-serif; background: var(--bg); color: var(--text-1); -webkit-font-smoothing: antialiased; margin: 0; padding: 0; }
    #app { display: flex; flex-direction: column; height: 100%; min-height: 100vh; max-width: 430px; margin: 0 auto; background: var(--bg); }
    .screen { display: none; flex-direction: column; min-height: 100vh; }
    .screen.active { display: flex; }

    #splash { position:fixed;inset:0;background:linear-gradient(180deg,#F5A623 0%,#F5A623 40%,#D4841A 75%,#B8661A 100%);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;z-index:99999; }
    #splash.hidden { display:none; }
    .splash-icon { width:80px;height:80px;background:rgba(255,255,255,0.22);border-radius:22px;display:flex;align-items:center;justify-content:center; }
    .splash-name { font-family:'Fraunces',serif;font-size:36px;font-weight:700;color:white; }
    .splash-dot { width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,0.6);animation:splashPulse 1.2s ease-in-out infinite; }
    .splash-dot:nth-child(2){animation-delay:0.2s}.splash-dot:nth-child(3){animation-delay:0.4s}
    @keyframes splashPulse{0%,80%,100%{transform:scale(0.6);opacity:0.4}40%{transform:scale(1);opacity:1}}
    /* AUTH */
    .auth-header { background: linear-gradient(180deg, #F5A623 0%, #D4841A 55%, #B8661A 100%); padding: max(env(safe-area-inset-top, 0px), 16px) 32px 32px; display: flex; flex-direction: column; align-items: center; gap: 12px; position: relative; overflow: hidden; }
    .auth-logo-icon { width: 64px; height: 64px; background: rgba(255,255,255,0.22); border-radius: 18px; display: flex; align-items: center; justify-content: center; }
    .auth-logo-icon svg { width: 34px; height: 34px; }
    .auth-logo-name { font-family: 'Fraunces', Georgia, serif; font-size: 36px; font-weight: 900; color: white; letter-spacing: -1px; }
    .auth-tagline { font-size: 14px; color: rgba(255,255,255,0.8); }
    .auth-body { padding: 32px 24px; flex: 1; background: var(--card); }
    .auth-tabs { display: flex; background: var(--bg); border-radius: 12px; padding: 4px; margin-bottom: 28px; }
    .auth-tab { flex: 1; padding: 10px; text-align: center; border-radius: 9px; font-size: 14px; font-weight: 500; color: var(--text-2); cursor: pointer; transition: all 0.2s; }
    .auth-tab.active { background: var(--card); color: var(--text-1); box-shadow: var(--shadow-sm); }
    .auth-form { display: flex; flex-direction: column; gap: 14px; }
    .auth-form.hidden { display: none; }
    .field-label { font-size: 13px; font-weight: 500; color: var(--text-2); margin-bottom: 6px; display: block; }
    .field-input { width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-1); background: var(--card); outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
    .field-input:focus { border-color: var(--yellow); }
    .field-input.error { border-color: var(--red); }
    .field-select { width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-1); background: var(--card); outline: none; -webkit-appearance: none; appearance: none; cursor: pointer; }
    .field-select:focus { border-color: var(--yellow); }
    .field-textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-1); background: var(--card); outline: none; resize: none; min-height: 110px; -webkit-appearance: none; }
    .field-textarea:focus { border-color: var(--yellow); }
    .field-textarea.error { border-color: var(--red); }
    .field-counter { font-size: 11px; color: var(--text-3); text-align: right; margin-top: 4px; }
    .field-counter.warn { color: var(--red); }
    .field-error { font-size: 12px; color: var(--red); margin-top: 4px; display: none; }
    .field-error.visible { display: block; }
    .auth-btn { width: 100%; padding: 16px; background: var(--yellow); color: white; border: none; border-radius: 14px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; margin-top: 6px; transition: background 0.2s; }
    .auth-btn:active { background: var(--yellow-dark); }
    .auth-btn:disabled { background: var(--text-3); cursor: not-allowed; }
    .auth-error { background: var(--red-light); color: var(--red); padding: 12px 16px; border-radius: 10px; font-size: 13px; display: none; }
    .auth-error.visible { display: block; }
    .auth-divider { text-align: center; font-size: 13px; color: var(--text-3); margin: 4px 0; }

    /* HEADER */
    .header { background: linear-gradient(180deg, #F5A623 0%, #D4841A 55%, #B8661A 100%); padding-left: 22px; padding-right: 22px; padding-bottom: 0; padding-top: max(env(safe-area-inset-top, 0px), 14px); flex-shrink: 0; position: relative; overflow: hidden; }
    .header::before { content:''; position:absolute; top:-40px; right:-40px; width:180px; height:180px; border-radius:50%; background:rgba(255,255,255,0.07); pointer-events:none; }
    .header::after { content:''; position:absolute; bottom:-60px; left:-30px; width:140px; height:140px; border-radius:50%; background:rgba(255,255,255,0.05); pointer-events:none; }
    .header-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
    .logo { display: flex; align-items: center; gap: 10px; }
    .logo-icon { width: 38px; height: 38px; background: rgba(255,255,255,0.22); border-radius: 12px; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
    .logo-icon svg { width: 20px; height: 20px; }
    .logo-name { font-family: 'Fraunces', Georgia, serif; font-size: 28px; font-weight: 900; color: white; letter-spacing: -0.5px; text-shadow: 0 2px 8px rgba(0,0,0,0.12); }
    .header-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.22); border: 2px solid rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 15px; font-weight: 700; color: white; backdrop-filter: blur(4px); overflow: hidden; }
    .header-hero { padding-bottom: 28px; }
    .header-greeting { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 4px; letter-spacing: 0.3px; }
    .header-sub { font-size: 22px; font-weight: 700; color: white; letter-spacing: -0.5px; text-shadow: 0 2px 8px rgba(0,0,0,0.1); }

    /* SEARCH */
    .search-wrap { padding: 0 16px 10px; flex-shrink: 0; margin-top: -22px; position: relative; z-index: 10; }
    .search-box { display: flex; align-items: center; background: var(--card); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 0 16px; gap: 10px; height: 52px; border: 1px solid rgba(255,255,255,0.8); }
    .search-box svg { width: 18px; height: 18px; stroke: var(--yellow); flex-shrink: 0; }
    .search-box input { flex: 1; border: none; outline: none; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-1); background: transparent; }
    .search-box input::placeholder { color: var(--text-3); }
    .search-clear { width: 20px; height: 20px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 11px; color: var(--text-2); }
    .search-clear.visible { display: flex; }

    /* CATS */
    .cats-wrap { padding: 0 0 10px; flex-shrink: 0; }
    .cats-scroll { display: flex; gap: 8px; padding: 4px 16px; overflow-x: auto; scrollbar-width: none; }
    .cats-scroll::-webkit-scrollbar { display: none; }
    .cat-chip { display: flex; align-items: center; gap: 5px; padding: 8px 16px; border-radius: 20px; border: 1.5px solid var(--border); background: var(--card); cursor: pointer; white-space: nowrap; font-size: 13px; font-weight: 600; color: var(--text-2); transition: all 0.18s ease; flex-shrink: 0; letter-spacing: -0.1px; }
    .cat-chip.active { background: var(--yellow); border-color: var(--yellow); color: white; box-shadow: 0 4px 16px rgba(245,166,35,0.4); transform: translateY(-1px); }


    /* LISTINGS */
    .listings { flex: 1; overflow-y: auto; padding: 4px 16px 100px; scrollbar-width: none; display: block; }
    #listingsInner { display: block; }
    .listings::-webkit-scrollbar { display: none; }
    .section-title { font-size: 12px; font-weight: 600; color: var(--text-3); letter-spacing: 1px; text-transform: uppercase; margin: 12px 0 10px; }
    .listing-card { background: var(--card); border-radius: var(--radius-lg); padding: 16px 16px 16px 20px; margin-bottom: 10px; box-shadow: var(--shadow-sm); display: flex; gap: 14px; cursor: pointer; transition: box-shadow 0.15s ease; border: 1px solid rgba(0,0,0,0.03); position: relative; overflow: hidden; min-height: 110px; align-items: center; }
    .listing-card::before { content:''; position:absolute; left:0; top:0; bottom:0; width:4px; background:var(--cat-color, var(--yellow)); border-radius:0; }
    @keyframes heartPop { 0%{transform:scale(1)} 30%{transform:scale(1.5)} 60%{transform:scale(0.9)} 100%{transform:scale(1)} }
    .fav-pop { animation: heartPop 0.4s ease; }
    @keyframes starPulse { 0%{transform:scale(1)} 50%{transform:scale(1.3)} 100%{transform:scale(1)} }
    .star-pulse { animation: starPulse 0.25s ease; }
    .open-badge { display:inline-flex;align-items:center;gap:3px;font-size:10px;font-weight:700;padding:2px 7px;border-radius:20px;margin-left:6px; }
    .open-badge.open { background:rgba(34,197,94,0.15);color:#16a34a; }
    .open-badge.closed { background:rgba(239,68,68,0.12);color:#dc2626; }

    .listing-icon-wrap { width: 50px; height: 50px; flex-shrink: 0; border-radius: 16px; background: linear-gradient(135deg, #FFF3D6 0%, var(--yellow-light) 100%); display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(245,166,35,0.15); }
    .listing-icon-wrap svg { width: 26px; height: 26px; stroke: var(--yellow); }
    .listing-body { flex: 1; min-width: 0; align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
    .listing-top { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-bottom: 3px; }
    .listing-name { font-size: 15px; font-weight: 600; color: var(--text-1); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .badge-geprüft { font-size: 10px; font-weight: 700; color: var(--green); background: var(--green-light); padding: 2px 7px; border-radius: 6px; flex-shrink: 0; }
    .badge-neu { font-size:10px;font-weight:700;color:#2563EB;background:#DBEAFE;padding:2px 7px;border-radius:6px;flex-shrink:0; }
    .listing-city { display: flex; align-items: center; gap: 3px; font-size: 12px; color: var(--text-3); margin-bottom: 5px; }
    .listing-city svg { width: 11px; height: 11px; stroke: var(--text-3); }
    .listing-desc { font-size: 13px; color: var(--text-2); line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .listing-phone { display: flex; align-items: center; gap: 4px; margin-top: 7px; font-size: 12px; font-weight: 500; color: var(--yellow-dark); }
    .listing-phone svg { width: 11px; height: 11px; stroke: var(--yellow-dark); }
    .listing-arrow { flex-shrink: 0; align-self: center; }
    .listing-arrow svg { width: 18px; height: 18px; stroke: var(--text-3); }

    /* DETAIL */
    .detail-screen { background: var(--bg); overflow-y: auto; overscroll-behavior-y: none; }
    .detail-hero { background: linear-gradient(180deg, #F5A623 0%, #D4841A 55%, #B8661A 100%); padding: max(env(safe-area-inset-top, 0px), 16px) 20px 56px; position: relative; overflow: hidden; min-height: 280px; }
    .detail-hero::before { content:''; position:absolute; top:-30px; right:-30px; width:140px; height:140px; border-radius:50%; background:rgba(255,255,255,0.07); pointer-events:none; }
        .detail-back { width: 38px; height: 38px; border-radius: 50%; background: rgba(0,0,0,0.25); -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; margin-bottom: 16px; position: relative; z-index: 10; flex-shrink:0; }
    .detail-back svg { width: 20px; height: 20px; stroke: white; }
    .detail-cover { position:absolute;inset:0;background-size:cover;background-position:center;z-index:0;pointer-events:none; }
    .detail-cover-overlay { position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,0.5) 0%,transparent 100%);z-index:1;pointer-events:none; }
    .detail-hero.has-cover { height:280px;min-height:280px;display:flex;flex-direction:column;justify-content:flex-end;padding:0 20px 24px; }
    .detail-hero.has-cover .detail-hero-icon { display:none; }
    .detail-hero.has-cover .detail-title { color:white; }
    .detail-hero.has-cover .detail-city { color:rgba(255,255,255,0.85); }
    .detail-cover-upload { background:rgba(0,0,0,0.35);border:none;border-radius:20px;padding:6px 12px;color:white;font-size:11px;font-weight:600;cursor:pointer;display:flex;align-items:center;gap:4px;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px); }
    #coverBtnWrap { position:absolute;bottom:16px;right:16px;z-index:10;display:flex;gap:6px;align-items:center; }
    #coverBtnSingle { position:absolute;bottom:16px;right:16px;z-index:10; }
    .detail-hero-icon { width: 68px; height: 68px; border-radius: 20px; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
    .detail-hero-icon svg { width: 34px; height: 34px; stroke: white; }
    .detail-title { font-size: 22px; font-weight: 700; color: white; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.25; }
    .detail-city { display: flex; align-items: center; gap: 5px; font-size: 13px; color: rgba(255,255,255,0.8); }
    .detail-city svg { width: 13px; height: 13px; stroke: rgba(255,255,255,0.8); }
    .detail-body { padding: 20px 16px 120px; }
    
    /* EXCHANGE RATE WIDGET */
    .exchange-widget { background: var(--card); border-radius: var(--radius-lg); border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: 14px; }
    .exchange-header { display: flex; align-items: center; gap: 8px; padding: 14px 16px 10px; border-bottom: 1px solid var(--border); }
    .exchange-header-icon { font-size: 16px; }
    .exchange-header-title { font-size: 11px; font-weight: 700; color: var(--text-3); letter-spacing: 1.5px; text-transform: uppercase; flex: 1; }
    .exchange-header-time { font-size: 10px; color: var(--text-3); }
    .exchange-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 16px; border-bottom: 1px solid var(--border); }
    .exchange-row:last-child { border-bottom: none; }
    .exchange-from { font-size: 14px; font-weight: 600; color: var(--text-1); }
    .exchange-arrow { font-size: 12px; color: var(--text-3); margin: 0 6px; }
    .exchange-to { font-size: 15px; font-weight: 800; color: #10B981; }
    .exchange-loading { padding: 18px 16px; text-align: center; font-size: 13px; color: var(--text-3); }
    .exchange-note { padding: 8px 16px 12px; font-size: 10px; color: var(--text-3); line-height: 1.4; }
    .detail-card { background: var(--card); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 14px; border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-sm); }
    .detail-section-title { font-size: 11px; font-weight: 700; color: var(--text-3); letter-spacing: 1.5px; text-transform: uppercase; padding: 16px 16px 8px; }
    .detail-desc { font-size: 14px; color: var(--text-2); line-height: 1.65; padding: 0 16px 16px; }
    .detail-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-top: 0.5px solid var(--border); cursor: pointer; text-decoration: none; color: inherit; }
    .detail-row-left { display: flex; align-items: center; gap: 12px; }
    .detail-row-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--yellow-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .detail-row-icon svg { width: 18px; height: 18px; stroke: var(--yellow); }
    .detail-row-label { font-size: 11px; color: var(--text-3); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
    .detail-row-value { font-size: 14px; color: var(--text-1); font-weight: 500; margin-top: 1px; }
    .detail-badge-row { padding: 12px 16px; display: flex; gap: 8px; }
    .detail-badge { display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
    .detail-badge.green { background: var(--green-light); color: var(--green); }
    .detail-badge.blue { background:#DBEAFE;color:#2563EB; }
    .detail-badge.open-status { background:#DCFCE7;color:#15803D; }
    .detail-badge.closed-status { background:#F1F5F9;color:#94A3B8; }
    .detail-cta { display: flex; gap: 10px; margin-top: 6px; }
    .detail-cta-btn { flex: 1; padding: 15px; border: none; border-radius: 14px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; }
    .detail-cta-btn.primary { background: var(--yellow); color: white; }
    .detail-cta-btn.secondary { background: var(--card); color: var(--text-1); border: 1.5px solid var(--border); }
    .detail-cta-btn.primary svg { stroke: white; width: 18px; height: 18px; fill: none; }
    .detail-cta-btn.secondary svg { stroke: var(--text-1); width: 18px; height: 18px; fill: none; }

    /* BEWERTUNGEN & KOMMENTARE */
    .stars-row { display: flex; gap: 4px; align-items: center; }
    .star { font-size: 22px; cursor: pointer; color: #E0E0E0; transition: color 0.15s; line-height: 1; }
    .star.active { color: var(--yellow); }
    .rating-summary { display: flex; align-items: center; gap: 10px; padding: 14px 16px; }
    .rating-avg { font-size: 36px; font-weight: 700; color: var(--text-1); font-family: 'Fraunces', serif; }
    .rating-meta { display: flex; flex-direction: column; gap: 3px; }
    .rating-stars-small { display: flex; gap: 2px; }
    .rating-stars-small span { font-size: 14px; color: var(--yellow); }
    .rating-count { font-size: 12px; color: var(--text-3); }
    .review-form { padding: 14px 16px; border-top: 0.5px solid var(--border); }
    .review-form-title { font-size: 13px; font-weight: 600; color: var(--text-1); margin-bottom: 10px; }
    .review-stars { display: flex; gap: 6px; margin-bottom: 10px; }
    .review-textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--text-1); background: var(--bg); outline: none; resize: none; min-height: 80px; -webkit-appearance: none; }
    .review-textarea:focus { border-color: var(--yellow); }
    .review-submit { margin-top: 8px; padding: 11px 20px; background: var(--yellow); color: white; border: none; border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; }
    .review-submit:disabled { background: var(--text-3); cursor: not-allowed; }
    .review-item { padding: 14px 16px; border-top: 0.5px solid var(--border); }
    .review-item-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
    .review-item-name { font-size: 13px; font-weight: 600; color: var(--text-1); }
    .review-item-stars { display: flex; gap: 2px; }
    .review-item-stars span { font-size: 12px; color: var(--yellow); }
    .review-item-text { font-size: 13px; color: var(--text-2); line-height: 1.5; margin-top: 4px; }
    .review-item-date { font-size: 11px; color: var(--text-3); margin-top: 4px; }
    .comment-item { padding: 12px 16px; border-top: 0.5px solid var(--border); }
    .comment-item-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
    .comment-item-name { font-size: 13px; font-weight: 600; color: var(--text-1); }
    .comment-item-date { font-size: 11px; color: var(--text-3); }
    .comment-item-text { font-size: 13px; color: var(--text-2); line-height: 1.5; }
    .comment-reply-btn { font-size: 11px; color: var(--yellow-dark); font-weight: 600; background: none; border: none; cursor: pointer; margin-top: 5px; padding: 0; }
    .comment-replies { margin-top: 8px; padding-left: 14px; border-left: 2px solid var(--yellow-light); }
    .reply-item { padding: 8px 0; border-top: 0.5px solid var(--border); }
    .reply-item:first-child { border-top: none; }
    .reply-item-name { font-size: 12px; font-weight: 600; color: var(--text-1); }
    .reply-item-text { font-size: 12px; color: var(--text-2); line-height: 1.5; }
    .reply-item-date { font-size: 10px; color: var(--text-3); }
    .reply-form { margin-top: 8px; display: none; }
    .reply-form.visible { display: block; }
    .reply-input { width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--text-1); background: var(--bg); outline: none; -webkit-appearance: none; }
    .reply-input:focus { border-color: var(--yellow); }
    .reply-submit { margin-top: 6px; padding: 9px 16px; background: var(--yellow); color: white; border: none; border-radius: 9px; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; cursor: pointer; }
    .comment-form { padding: 14px 16px; border-top: 0.5px solid var(--border); display: flex; gap: 8px; align-items: flex-end; }
    .comment-input { flex: 1; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--text-1); background: var(--bg); outline: none; resize: none; min-height: 44px; max-height: 100px; -webkit-appearance: none; }
    .comment-input:focus { border-color: var(--yellow); }
    .comment-send { width: 44px; height: 44px; border-radius: 12px; background: var(--yellow); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .comment-send svg { width: 18px; height: 18px; stroke: white; }
    .own-review-note { font-size: 12px; color: var(--text-3); padding: 10px 16px; font-style: italic; }

    /* FOTOS */
    .photos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 12px 16px 16px; }
    .photo-thumb { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; cursor: pointer; }
    .photo-thumb-wrap { position:relative;display:inline-block;width:100%;aspect-ratio:1; }
    .photo-thumb-wrap .photo-thumb { width:100%;height:100%;object-fit:cover;border-radius:8px;cursor:pointer;display:block; }
    .photo-delete-btn { position:absolute;top:4px;right:4px;width:24px;height:24px;border-radius:50%;background:rgba(0,0,0,0.6);color:white;border:none;font-size:11px;cursor:pointer;display:flex;align-items:center;justify-content:center; }
    .photo-upload-btn { width: 100%; aspect-ratio: 1; border: 1.5px dashed var(--border); border-radius: 8px; background: var(--bg); display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; gap: 4px; }
    .photo-upload-btn svg { width: 22px; height: 22px; stroke: var(--text-3); }
    .photo-upload-btn span { font-size: 11px; color: var(--text-3); font-weight: 500; }
    .photo-upload-progress { padding: 8px 16px; font-size: 12px; color: var(--text-2); display: none; }
    .photo-lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.92); z-index: 999; display: none; align-items: center; justify-content: center; }
    .photo-lightbox.visible { display: flex; }
    .photo-lightbox img { max-width: 95%; max-height: 90vh; object-fit: contain; border-radius: 8px; }
    .photo-lightbox-close { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.15); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; }
    .photo-lightbox-close svg { width: 18px; height: 18px; stroke: white; }

    /* FILTER PANEL */
    .filter-bar { flex-shrink: 0; padding-bottom: 10px; overflow: hidden; }
    .filter-bar-inner { display: flex; gap: 8px; padding: 0 16px; overflow-x: auto; scrollbar-width: none; }
    .filter-bar-inner::-webkit-scrollbar { display: none; }
    .filter-btn { display: flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 20px; flex-shrink: 0; white-space: nowrap; border: 1.5px solid var(--border); background: var(--card); cursor: pointer; font-size: 12px; font-weight: 600; color: var(--text-2); white-space: nowrap; transition: all 0.18s; }
    .filter-btn svg { width: 13px; height: 13px; stroke: var(--text-2); fill: none; }
    .filter-btn.active { background: var(--text-1); border-color: var(--text-1); color: white; }
    .filter-btn.active-open { background: #16a34a; border-color: #16a34a; color: white; }
    .filter-btn.active-open { background: #16a34a; border-color: #16a34a; color: white; }
    .filter-btn.active-open svg { stroke: white; }
    .filter-btn.active svg { stroke: white; }
    .filter-sheet-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 1000; display: none; align-items: flex-end; justify-content: center; }
    .filter-sheet-overlay.visible { display: flex; }
    .filter-sheet { background: var(--card); border-radius: 24px 24px 0 0; width: 100%; max-width: 430px; padding: 0 0 32px; }
    .filter-sheet-handle { width: 40px; height: 4px; background: var(--border); border-radius: 2px; margin: 12px auto 20px; }
    .filter-sheet-title { font-size: 16px; font-weight: 700; padding: 0 20px 16px; color: var(--text-1); }
    .filter-section { padding: 0 20px 20px; }
    .filter-section-label { font-size: 11px; font-weight: 700; color: var(--text-3); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
    .filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
    .filter-chip { padding: 7px 14px; border-radius: 20px; border: 1.5px solid var(--border); background: var(--bg); font-size: 13px; font-weight: 500; color: var(--text-2); cursor: pointer; transition: all 0.15s; }
    .filter-chip.active { background: var(--yellow); border-color: var(--yellow); color: white; }
    .filter-star-row { display: flex; gap: 8px; }
    .filter-star-btn { flex: 1; padding: 10px; border: 1.5px solid var(--border); border-radius: 12px; background: var(--bg); font-size: 13px; font-weight: 600; color: var(--text-2); cursor: pointer; text-align: center; transition: all 0.15s; }
    .filter-star-btn.active { background: var(--yellow); border-color: var(--yellow); color: white; }
    .filter-apply-btn { margin: 0 20px; width: calc(100% - 40px); padding: 16px; background: var(--yellow); color: white; border: none; border-radius: 14px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; }
    .filter-divider { height: 0.5px; background: var(--border); margin: 0 20px 20px; }

    /* TRANSLATE */
    .translate-btn { display: inline-flex; align-items: center; gap: 4px; margin-top: 6px; padding: 4px 10px; background: var(--bg); border: 1px solid var(--border); border-radius: 20px; font-size: 11px; font-weight: 600; color: var(--text-3); cursor: pointer; transition: all 0.15s; }
    .translate-btn:active { background: var(--yellow-light); color: var(--yellow-dark); border-color: var(--yellow); }
    .translate-btn svg { width: 11px; height: 11px; stroke: currentColor; fill: none; }
    .translated-text { font-size: 13px; color: var(--text-2); line-height: 1.55; margin-top: 6px; padding: 8px 12px; background: var(--yellow-light); border-radius: 10px; border-left: 3px solid var(--yellow); display: none; }
    .translated-text.visible { display: block; }
    .translate-source { font-size: 10px; color: var(--text-3); margin-top: 4px; }

    /* MAP COLORED GLASS CHIPS */
    .map-chip { display: flex; align-items: center; gap: 5px; padding: 8px 16px; border-radius: 20px; cursor: pointer; white-space: nowrap; font-size: 12px; font-weight: 600; transition: all 0.22s ease; flex-shrink: 0; letter-spacing: -0.1px; }
    .map-chip .chip-dot { display: none; }
    /* Inactive – tinted frosted pill */
    .map-chip-all         { background: #F0F0F0; border: 1.5px solid #DCDCDC; color: #3A3A3A; }
    .map-chip-restaurants { background: #FEF3DC; border: 1.5px solid #F5C97A; color: #92520A; }
    .map-chip-dienstleistung { background: #DBEAFE; border: 1.5px solid #93C5FD; color: #1D4ED8; }
    .map-chip-orte        { background: #DCFCE7; border: 1.5px solid #86EFAC; color: #15803D; }
    .map-chip-unterkunft  { background: #EDE9FE; border: 1.5px solid #C4B5FD; color: #6D28D9; }
    .map-chip-geschaefte  { background: #FEE2E2; border: 1.5px solid #FCA5A5; color: #B91C1C; }
    .map-chip-sport       { background: #CFFAFE; border: 1.5px solid #67E8F9; color: #0E7490; }
    /* Active – saturated solid with white text */
    .map-chip-all.active         { background: #1A1A1A; border-color: #1A1A1A; color: white; }
    .map-chip-restaurants.active { background: #F5A623; border-color: #F5A623; color: white; }
    .map-chip-dienstleistung.active { background: #3B82F6; border-color: #3B82F6; color: white; }
    .map-chip-orte.active        { background: #22C55E; border-color: #22C55E; color: white; }
    .map-chip-unterkunft.active  { background: #8B5CF6; border-color: #8B5CF6; color: white; }
    .map-chip-geschaefte.active  { background: #EF4444; border-color: #EF4444; color: white; }
    .map-chip-sport.active       { background: #06B6D4; border-color: #06B6D4; color: white; }
    .map-chip-tankstelle { background:#FEE2E2;border:1.5px solid #FCA5A5;color:#991B1B; }
    .map-chip-tankstelle.active { background:#EF4444;border-color:#EF4444;color:white; }
    .map-chip-beauty { background:#FCE7F3;border:1.5px solid #F9A8D4;color:#9D174D; }
    .map-chip-beauty.active { background:#EC4899;border-color:#EC4899;color:white; }
    .map-chip-wechselstube { background:#E0F2FE;border:1.5px solid #7DD3FC;color:#0C4A6E; }
    .map-chip-wechselstube.active { background:#0EA5E9;border-color:#0EA5E9;color:white; }

    /* DUPLICATE WARNING */
    .dupe-warning { background: #FFF8EC; border: 1.5px solid var(--yellow); border-radius: 12px; padding: 12px 14px; margin-bottom: 12px; display: none; }
    .dupe-warning.visible { display: block; }
    .dupe-warning-title { font-size: 13px; font-weight: 700; color: var(--yellow-dark); margin-bottom: 6px; }
    .dupe-item { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 0.5px solid var(--border); }
    .dupe-item:last-child { border-bottom: none; }
    .dupe-item-name { font-size: 13px; font-weight: 600; color: var(--text-1); }
    .dupe-item-city { font-size: 11px; color: var(--text-3); }
    .dupe-view-btn { font-size: 11px; font-weight: 700; color: var(--yellow-dark); background: var(--yellow-light); border: 1px solid var(--yellow); border-radius: 8px; padding: 4px 10px; cursor: pointer; }
    .form-search-wrap { background: var(--card); border-radius: var(--radius-lg); padding: 16px; margin-bottom: 14px; border: 1.5px solid var(--border); }
    .form-search-title { font-size: 12px; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 10px; }
    .form-search-box { display: flex; align-items: center; background: var(--bg); border-radius: 12px; padding: 0 14px; gap: 8px; height: 44px; }
    .form-search-box svg { width: 15px; height: 15px; stroke: var(--text-3); flex-shrink: 0; fill: none; }
    .form-search-box input { flex: 1; border: none; outline: none; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-1); background: transparent; }
    .form-search-results { margin-top: 8px; }
    .form-search-result { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 0.5px solid var(--border); cursor: pointer; }
    .form-search-result:last-child { border-bottom: none; }
    .admin-similar { background: #FFF8EC; border: 1px solid var(--yellow); border-radius: 10px; padding: 10px 12px; margin-top: 8px; font-size: 12px; }
    .admin-similar-title { font-weight: 700; color: var(--yellow-dark); margin-bottom: 6px; }

    /* DEAL SYSTEM */
    .deal-badge { display: inline-flex; align-items: center; gap: 4px; background: linear-gradient(135deg, #FF6B35 0%, #F7C548 100%); color: white; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 20px; letter-spacing: 0.3px; flex-shrink: 0; }
    .deal-badge svg { width: 10px; height: 10px; fill: white; stroke: none; }
    .deal-card { background: linear-gradient(135deg, #FFF5F0 0%, #FFFBF0 100%); border: 1.5px solid #FFD4B8; border-radius: var(--radius-lg); padding: 16px; margin-bottom: 14px; }
    .deal-card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
    .deal-card-icon { width: 36px; height: 36px; background: linear-gradient(135deg, #FF6B35, #F7C548); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
    .deal-card-icon svg { width: 18px; height: 18px; fill: white; }
    .deal-card-title { font-size: 13px; font-weight: 700; color: #C2410C; }
    .deal-card-sub { font-size: 11px; color: #EA580C; margin-top: 1px; }
    .deal-text { font-size: 14px; color: var(--text-1); font-weight: 500; line-height: 1.5; margin-bottom: 10px; }
    .deal-code-wrap { display: flex; align-items: center; gap: 8px; background: white; border: 1.5px dashed #FFA07A; border-radius: 10px; padding: 10px 14px; }
    .deal-code { font-size: 16px; font-weight: 800; color: #C2410C; letter-spacing: 2px; flex: 1; font-family: 'Fraunces', serif; }
    .deal-copy-btn { padding: 7px 14px; background: linear-gradient(135deg, #FF6B35, #F7C548); color: white; border: none; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700; cursor: pointer; }
    .deal-expiry { font-size: 11px; color: #EA580C; margin-top: 8px; display: flex; align-items: center; gap: 4px; }
    .deal-expiry svg { width: 11px; height: 11px; stroke: #EA580C; fill: none; }
    .admin-deal-section { background: #FFF5F0; border: 1.5px solid #FFD4B8; border-radius: 12px; padding: 14px; margin-bottom: 14px; }
    .admin-deal-title { font-size: 12px; font-weight: 700; color: #C2410C; margin-bottom: 10px; }

    /* OFFLINE */
    .offline-banner { position: fixed; top: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 430px; background: #1A1A1A; color: white; text-align: center; font-size: 12px; font-weight: 600; padding: 8px; z-index: 2000; display: none; }
    .offline-banner.visible { display: block; }
    .cache-info { font-size: 11px; color: var(--text-3); text-align: center; padding: 4px 0 8px; }

    /* CITY PICKER */
    .city-picker-btn { display: flex; align-items: center; gap: 8px; margin: 0 16px 10px; padding: 10px 14px; background: var(--card); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); cursor: pointer; border: 1.5px solid var(--border); transition: border-color 0.2s; }
    .city-picker-btn.active { border-color: var(--yellow); background: var(--yellow-light); }
    .city-picker-btn svg { width: 16px; height: 16px; stroke: var(--text-3); flex-shrink: 0; }
    .city-picker-btn.active svg { stroke: var(--yellow-dark); }
    .city-picker-label { flex: 1; font-size: 14px; color: var(--text-3); font-weight: 500; }
    .city-picker-btn.active .city-picker-label { color: var(--yellow-dark); font-weight: 600; }
    .city-picker-clear { width: 20px; height: 20px; border-radius: 50%; background: var(--yellow); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 11px; color: white; flex-shrink: 0; }
    .city-sheet-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 1000; display: none; align-items: flex-end; justify-content: center; }
    .city-sheet-overlay.visible { display: flex; }
    .city-sheet { background: var(--card); border-radius: 24px 24px 0 0; width: 100%; max-width: 430px; max-height: 80vh; display: flex; flex-direction: column; padding-bottom: 24px; }
    .city-sheet-handle { width: 40px; height: 4px; background: var(--border); border-radius: 2px; margin: 12px auto 16px; }
    .city-sheet-title { font-size: 16px; font-weight: 700; color: var(--text-1); padding: 0 20px 12px; }
    .city-sheet-search { margin: 0 16px 12px; display: flex; align-items: center; background: var(--bg); border-radius: 12px; padding: 0 14px; gap: 8px; height: 44px; }
    .city-sheet-search svg { width: 16px; height: 16px; stroke: var(--text-3); flex-shrink: 0; }
    .city-sheet-search input { flex: 1; border: none; outline: none; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-1); background: transparent; }
    .city-sheet-list { overflow-y: auto; flex: 1; padding: 0 8px; }
    .city-sheet-item { display: flex; align-items: center; gap: 10px; padding: 12px 12px; border-radius: 10px; cursor: pointer; transition: background 0.15s; }
    .city-sheet-item:active { background: var(--yellow-light); }
    .city-sheet-item svg { width: 14px; height: 14px; stroke: var(--text-3); flex-shrink: 0; }
    .city-sheet-item span { font-size: 14px; color: var(--text-1); }
    .city-sheet-item.selected { background: var(--yellow-light); }
    .city-sheet-item.selected svg { stroke: var(--yellow-dark); }
    .city-sheet-item.selected span { color: var(--yellow-dark); font-weight: 600; }
    .city-sheet-empty { text-align: center; padding: 30px; color: var(--text-3); font-size: 13px; }

    /* FAVORITEN */
    .fav-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.22); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; position: absolute; top: 52px; right: 20px; }
    .fav-btn svg { width: 20px; height: 20px; transition: all 0.2s; }
    .fav-btn.active svg { fill: #EF4444; stroke: #EF4444; }
    .fav-btn:not(.active) svg { fill: none; stroke: white; }
    .profil-fav-card { background: var(--card); border-radius: var(--radius-lg); padding: 16px; margin-bottom: 10px; box-shadow: var(--shadow-sm); display: flex; gap: 14px; cursor: pointer; }

    /* CLAIMED LISTING */
    .owner-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; background: #FFF8EC; color: #D4841A; border: 1px solid #F5A623; }
    .claim-btn { width: 100%; padding: 14px; background: var(--bg); border: 1.5px solid var(--border); border-radius: 14px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; color: var(--text-2); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 6px; }
    .claim-btn svg { width: 18px; height: 18px; stroke: var(--text-2); }
    .owner-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
    .owner-edit-btn { width: 100%; padding: 14px; background: var(--yellow); color: white; border: none; border-radius: 14px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; }
    .owner-edit-btn svg { width: 18px; height: 18px; stroke: white; fill: none; }
    .edit-listing-screen { background: var(--bg); overflow-y: auto; overscroll-behavior-y: none; }
    .admin-claim-card { background: var(--card); border-radius: var(--radius-lg); padding: 16px; margin-bottom: 12px; box-shadow: var(--shadow-sm); }
    .admin-claim-name { font-size: 16px; font-weight: 700; color: var(--text-1); margin-bottom: 4px; }
    .admin-claim-meta { font-size: 12px; color: var(--text-3); margin-bottom: 8px; }
    .admin-claim-reason { font-size: 13px; color: var(--text-2); line-height: 1.5; margin-bottom: 14px; background: var(--bg); padding: 10px 12px; border-radius: 10px; }

    /* KARTE */
    .map-screen { background: var(--bg); overflow: hidden; display: none; flex-direction: column; }
    .map-header { background: linear-gradient(180deg, #F5A623 0%, #D4841A 55%, #B8661A 100%); padding: max(env(safe-area-inset-top, 0px), 14px) 20px 14px; flex-shrink: 0; position: relative; overflow: hidden; }
    .map-header-title { font-size: 20px; font-weight: 700; color: white; margin-bottom: 4px; }
    .map-header-sub { font-size: 13px; color: rgba(255,255,255,0.8); }
    .map-filters { background: rgba(255,255,255,0.85); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); border-bottom: 0.5px solid rgba(0,0,0,0.06); flex-shrink: 0; }
    .map-filter-row { display: flex; gap: 8px; padding: 10px 16px 6px; overflow-x: auto; scrollbar-width: none; }
    .map-filter-row::-webkit-scrollbar { display: none; }
    .map-chip.city-chip.active { background: var(--text-1); border-color: var(--text-1); color: white; }
    .map-container { flex: 1; position: relative; min-height: 0; margin-bottom: 80px; }
    #leafletMap { width: 100%; height: 100%; }
    .maplibregl-popup-content { border-radius: 14px !important; box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important; padding: 0 !important; overflow: hidden; }
    .maplibregl-popup-content p { margin: 0 !important; width: auto !important; }
    .map-popup { padding: 12px 16px; min-width: 160px; cursor: pointer; }
    .map-popup-name { font-size: 14px; font-weight: 700; color: #1A1A1A; margin-bottom: 2px; font-family: 'DM Sans', sans-serif; }
    .map-popup-city { font-size: 12px; color: #AAAAAA; font-family: 'DM Sans', sans-serif; }
    .map-popup-cat { font-size: 11px; color: #D4841A; font-weight: 600; margin-top: 4px; font-family: 'DM Sans', sans-serif; }
    .maplibregl-popup-tip { display: none; }
    .map-list { position: absolute; bottom: 12px; left: 0; right: 0; padding: 0 12px; display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; z-index: 500; }
    .map-list::-webkit-scrollbar { display: none; }
    .map-card { background: var(--card); border-radius: 14px; padding: 12px 14px; min-width: 180px; max-width: 220px; box-shadow: var(--shadow-md); cursor: pointer; flex-shrink: 0; border: 1.5px solid transparent; transition: border-color 0.15s; }
    .map-card:active { border-color: var(--yellow); }
    .map-card-name { font-size: 13px; font-weight: 700; color: var(--text-1); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .map-card-city { font-size: 11px; color: var(--text-3); margin-bottom: 4px; }
    .map-card-cat { font-size: 11px; color: var(--yellow-dark); font-weight: 600; }
    .map-no-coords { position: absolute; bottom: 80px; left: 16px; right: 16px; background: var(--card); border-radius: 12px; padding: 10px 14px; font-size: 12px; color: var(--text-2); text-align: center; z-index: 500; box-shadow: var(--shadow-sm); display: none; cursor: pointer; -webkit-tap-highlight-color: transparent; }

    /* FORM */
    /* Fixed header + inner-scrolling body (same pattern as Home/Events). The header never scrolls away, so no white/cream gap can appear above it on overscroll. */
    .form-screen { background: var(--bg); overflow: hidden; }
    .form-header { background: linear-gradient(180deg, #F5A623 0%, #D4841A 55%, #B8661A 100%); padding: max(env(safe-area-inset-top, 0px), 16px) 20px 20px; flex-shrink: 0; }
    .form-back { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.22); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; margin-bottom: 16px; }
    .form-back svg { width: 20px; height: 20px; stroke: white; }
    .form-title { font-size: 22px; font-weight: 700; color: white; margin-bottom: 4px; }
    .form-sub { font-size: 13px; color: rgba(255,255,255,0.8); }
    .form-body { padding: 20px 16px 120px; background: var(--bg); flex: 1; min-height: 0; overflow-y: auto; overscroll-behavior-y: contain; -webkit-overflow-scrolling: touch; }
    .form-card { background: var(--card); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 14px; }
    .form-card-title { font-size: 11px; font-weight: 700; color: var(--text-3); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
    .form-field { margin-bottom: 14px; }
    .form-field:last-child { margin-bottom: 0; }
    .form-hint { font-size: 12px; color: var(--text-3); margin-top: 5px; }
    .form-rules { background: var(--yellow-light); border-radius: 12px; padding: 14px 16px; margin-bottom: 14px; }
    .form-rules-title { font-size: 12px; font-weight: 700; color: var(--yellow-dark); margin-bottom: 8px; }
    .form-rule { font-size: 12px; color: var(--yellow-dark); line-height: 1.8; }
    .form-submit { width: 100%; padding: 16px; background: var(--yellow); color: white; border: none; border-radius: 14px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; }
    .form-submit:disabled { background: var(--text-3); cursor: not-allowed; }
    .form-success { background: var(--green-light); color: var(--green); padding: 16px; border-radius: 12px; font-size: 14px; font-weight: 500; text-align: center; display: none; margin-bottom: 14px; }
    .form-success.visible { display: block; }
    .form-error-msg { background: var(--red-light); color: var(--red); padding: 12px 16px; border-radius: 10px; font-size: 13px; display: none; margin-bottom: 14px; }
    .form-error-msg.visible { display: block; }

    /* ADMIN */
    .admin-screen { background: var(--bg); overflow-y: auto; }
    .admin-header { background: #1A1A1A; padding: 52px 20px 24px; }
    .admin-back { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; margin-bottom: 16px; }
    .admin-back svg { width: 20px; height: 20px; stroke: white; }
    .admin-title { font-size: 22px; font-weight: 700; color: white; margin-bottom: 4px; }
    .admin-sub { font-size: 13px; color: rgba(255,255,255,0.6); }
    .admin-body { padding: 20px 16px 120px; }
    .admin-card { background: var(--card); border-radius: var(--radius-lg); padding: 16px; margin-bottom: 12px; box-shadow: var(--shadow-sm); }
    .admin-card-name { font-size: 16px; font-weight: 700; color: var(--text-1); margin-bottom: 4px; }
    .admin-card-meta { font-size: 12px; color: var(--text-3); margin-bottom: 8px; }
    .admin-card-desc { font-size: 13px; color: var(--text-2); line-height: 1.5; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .admin-card-info { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
    .admin-info-pill { background: var(--bg); padding: 5px 10px; border-radius: 20px; font-size: 12px; color: var(--text-2); }
    .admin-actions { display: flex; gap: 8px; }
    .admin-btn { flex: 1; padding: 12px; border: none; border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; }
    .admin-btn.approve { background: var(--green-light); color: var(--green); }
    .admin-btn.reject { background: var(--red-light); color: var(--red); }
    .admin-empty { text-align: center; padding: 60px 20px; }
    .admin-empty-icon { font-size: 40px; margin-bottom: 12px; }
    .admin-empty-text { font-size: 15px; font-weight: 600; color: var(--text-1); margin-bottom: 6px; }
    .admin-empty-sub { font-size: 13px; color: var(--text-2); }

    /* PROFIL */
    .profil-header { background: linear-gradient(180deg, #F5A623 0%, #D4841A 55%, #B8661A 100%); padding: max(env(safe-area-inset-top, 0px), 16px) 24px 20px; display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; overflow: hidden; flex-shrink: 0; }
    .profil-avatar { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-size: 28px; font-weight: 900; color: white; overflow: hidden; flex-shrink: 0; }
            .badge-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .badge-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
    .badge-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; position: relative; }
    .badge-icon.earned { background: linear-gradient(135deg, #F5A623, #D4841A); box-shadow: 0 4px 12px rgba(212,132,26,0.35); }
    .badge-icon.locked { background: var(--surface-2); filter: grayscale(1); opacity: 0.45; }
    .badge-icon .badge-check { position: absolute; bottom: -2px; right: -2px; width: 18px; height: 18px; background: #22C55E; border-radius: 50%; border: 2px solid var(--bg); display: flex; align-items: center; justify-content: center; font-size: 9px; }
    .badge-name { font-size: 10px; font-weight: 600; color: var(--text-2); text-align: center; line-height: 1.2; }
    .badge-name.earned { color: var(--text-1); }
    .profil-listings-count { font-size: 13px; color: var(--text-2); text-align: center; margin-top: 4px; margin-bottom: 8px; }
    .profil-name { font-size: 18px; font-weight: 700; color: white; }
        .profil-email { font-size: 12px; color: rgba(255,255,255,0.75); }
    .profil-body { padding: 24px; flex: 1; padding-bottom: 120px; overflow-y: auto; }
    .profil-section { background: var(--card); border-radius: var(--radius-lg); margin-bottom: 16px; }
    .profil-row { display: flex; align-items: center; justify-content: space-between; padding: 16px; border-bottom: 0.5px solid var(--border); cursor: pointer; }
    .profil-row:last-child { border-bottom: none; }
    .profil-row-left { display: flex; align-items: center; gap: 12px; }
    .profil-row-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--yellow-light); display: flex; align-items: center; justify-content: center; }
    .profil-row-icon svg { width: 18px; height: 18px; stroke: var(--yellow); }
    .profil-row-icon.dark { background: #1A1A1A; }
    .profil-row-icon.dark svg { stroke: white; }
    .profil-row-label { font-size: 14px; font-weight: 500; }
    .logout-btn { width: 100%; padding: 16px; background: var(--red-light); color: var(--red); border: none; border-radius: 14px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; margin-top: 8px; }

    /* SKELETON */
    .skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: 8px; }
    @keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
    @keyframes spin { to { transform: rotate(360deg); } }
    .skeleton-card { background: var(--card); border-radius: var(--radius-lg); padding: 16px; margin-bottom: 10px; display: flex; gap: 14px; }
    .skel-icon { width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0; }
    .skel-body { flex: 1; display: flex; flex-direction: column; gap: 8px; padding-top: 4px; }
    .skel-line { height: 12px; }
    .skel-line.w-60 { width: 60%; } .skel-line.w-40 { width: 40%; } .skel-line.w-80 { width: 80%; }
    .empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; gap: 12px; text-align: center; }
    .empty-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--yellow-light); display: flex; align-items: center; justify-content: center; }
    .empty-icon svg { width: 34px; height: 34px; stroke: var(--yellow); }
    .empty-title { font-size: 16px; font-weight: 600; }
    .empty-sub { font-size: 13px; color: var(--text-2); }

    /* REPORT */
    .report-btn{display:flex;align-items:center;justify-content:center;gap:5px;margin:8px 16px 0;padding:10px;background:none;border:none;font-family:'DM Sans',sans-serif;font-size:12px;color:var(--text-3);cursor:pointer;width:calc(100% - 32px);border-radius:10px;}
    .report-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.45);z-index:1000;display:none;align-items:flex-end;justify-content:center;}
    .report-overlay.visible{display:flex;}
    .report-sheet{background:var(--card);border-radius:24px 24px 0 0;width:100%;max-width:430px;padding:0 0 32px;}
    .report-option{display:flex;align-items:center;gap:12px;padding:14px 20px;border-bottom:0.5px solid var(--border);cursor:pointer;font-size:14px;color:var(--text-1);}
    .report-option:last-child{border-bottom:none;}
    /* BOTTOM NAV */
    .bottom-nav { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 430px; background: rgba(255,255,255,0.98); border-top: 0.5px solid rgba(0,0,0,0.06); display: flex; padding: 8px 0 max(16px, env(safe-area-inset-bottom, 0px)); z-index: 100; box-shadow: 0 -4px 20px rgba(0,0,0,0.06); }
    .browser-mode .bottom-nav { padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 64px); }
    .nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer; padding: 6px 0; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
    .nav-item svg { width: 22px; height: 22px; stroke: var(--text-3); transition: stroke 0.08s; fill: none; }
    .nav-item span { font-size: 10px; font-weight: 600; color: var(--text-3); transition: color 0.08s; letter-spacing: 0.2px; }
    .nav-item.active svg { stroke: var(--yellow); }
    .nav-item.active span { color: var(--yellow); }
  
    /* ── EVENTS ─────────────────────────────────────────────────────────── */
    .event-filter-bar { display:flex; gap:8px; padding:10px 16px 6px; overflow-x:auto; scrollbar-width:none; flex-wrap:nowrap; -webkit-overflow-scrolling:touch; }
    .event-filter-bar::-webkit-scrollbar { display:none; }
    .event-chip { display:inline-flex; align-items:center; gap:5px; padding:7px 14px; border-radius:20px; border:1.5px solid var(--border); background:var(--card); font-size:12px; font-weight:600; color:var(--text-2); cursor:pointer; white-space:nowrap; flex-shrink:0; transition:all 0.18s; }
    .event-chip.active { background:var(--yellow); border-color:var(--yellow); color:white; }
    .event-card { background:var(--card); border-radius:var(--radius-lg); margin:0 16px 12px; overflow:hidden; box-shadow:0 2px 10px rgba(0,0,0,0.06); cursor:pointer; }
    .event-card-banner { height:6px; background:linear-gradient(90deg,#F5A623,#D4841A); }
    .event-card-banner.type-festival { background:linear-gradient(90deg,#8B5CF6,#6D28D9); }
    .event-card-banner.type-konzert { background:linear-gradient(90deg,#EC4899,#BE185D); }
    .event-card-banner.type-retreat { background:linear-gradient(90deg,#22C55E,#15803D); }
    .event-card-banner.type-sport { background:linear-gradient(90deg,#06B6D4,#0E7490); }
    .event-card-banner.type-workshop { background:linear-gradient(90deg,#F97316,#C2410C); }
    .event-card-banner.type-markt { background:linear-gradient(90deg,#EF4444,#B91C1C); }
    .event-card-body { padding:14px 16px 16px; }
    .event-card-top { display:flex; justify-content:space-between; align-items:flex-start; gap:8px; margin-bottom:6px; }
    .event-card-title { font-size:16px; font-weight:700; color:var(--text-1); line-height:1.3; }
    .event-card-type { font-size:10px; font-weight:700; padding:3px 8px; border-radius:10px; background:var(--surface-2); color:var(--text-2); white-space:nowrap; }
    .event-card-meta { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:8px; }
    .event-meta-item { display:flex; align-items:center; gap:4px; font-size:12px; color:var(--text-2); }
    .event-card-desc { font-size:13px; color:var(--text-2); line-height:1.5; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
    .event-card-footer { display:flex; justify-content:space-between; align-items:center; margin-top:10px; padding-top:10px; border-top:1px solid var(--border); }
    .event-price { font-size:13px; font-weight:700; color:var(--yellow); }
    .event-spots { font-size:12px; color:var(--text-3); }
    .event-status-full { font-size:11px; font-weight:700; color:white; background:#EF4444; padding:3px 8px; border-radius:10px; }
    .event-status-cancelled { font-size:11px; font-weight:700; color:white; background:#6B7280; padding:3px 8px; border-radius:10px; }
    /* Event detail */
    .event-detail-header { background:linear-gradient(180deg,#F5A623 0%,#D4841A 55%,#B8661A 100%); padding: max(env(safe-area-inset-top, 0px), 16px) 20px 20px; color:white; }
    .event-detail-title { font-size:22px; font-weight:800; margin-bottom:6px; line-height:1.3; }
    .event-detail-type-badge { display:inline-flex; align-items:center; gap:5px; background:rgba(255,255,255,0.2); border-radius:12px; padding:4px 10px; font-size:12px; font-weight:700; margin-bottom:14px; }
    .event-detail-meta-row { display:flex; flex-wrap:wrap; gap:12px; }
    .event-detail-meta { display:flex; align-items:center; gap:6px; font-size:13px; opacity:0.92; }
    /* Event form */
    .event-form-section { background:var(--card); border-radius:var(--radius-lg); padding:16px; margin-bottom:14px; }
    .event-form-section-title { font-size:12px; font-weight:700; color:var(--text-2); text-transform:uppercase; letter-spacing:0.5px; margin-bottom:12px; }
    .event-toggle-row { display:flex; justify-content:space-between; align-items:center; padding:8px 0; }
    .event-toggle-label { font-size:14px; color:var(--text-1); font-weight:600; }
    .event-toggle { position:relative; width:44px; height:24px; flex-shrink:0; cursor:pointer; }
    .event-toggle input { position:absolute; opacity:0; width:100%; height:100%; margin:0; cursor:pointer; z-index:2; }
    .event-toggle-slider { position:absolute; inset:0; background:var(--surface-2); border-radius:12px; transition:0.2s; cursor:pointer; }
    .event-toggle-slider:before { content:''; position:absolute; height:18px; width:18px; left:3px; bottom:3px; background:white; border-radius:50%; transition:0.2s; box-shadow:0 1px 4px rgba(0,0,0,0.2); }
    .event-toggle input:checked + .event-toggle-slider { background:var(--yellow); }
    .event-toggle input:checked + .event-toggle-slider:before { transform:translateX(20px); }


/* Map no-coords notice: fade out after auto-dismiss */
.map-no-coords { transition: opacity 0.45s ease, transform 0.45s ease; }
.map-no-coords.fade-out { opacity: 0; transform: translateY(8px); pointer-events: none; }
