/* ==========================================
   POLIZEI-KONTROLLEN.DE – Main Stylesheet
   Professional & Serious Theme
   ========================================== */

:root {
    --primary: #1a2744;
    --primary-light: #243560;
    --accent: #e8a020;
    --accent-hover: #d4911a;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --bg: #f8f9fc;
    --bg2: #ffffff;
    --border: #e5e7eb;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(26, 39, 68, 0.08);
    --shadow-lg: 0 8px 48px rgba(26, 39, 68, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
}

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(26, 39, 68, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.nav-logo strong { color: var(--accent); }
.logo-icon { font-size: 22px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.lang-switch a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.lang-switch a:hover,
.lang-switch a.active { color: var(--accent); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ─── HERO ───────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 60px;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f1729 0%, #1a2744 50%, #1e3a5f 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(232,160,32,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(26,39,68,0.8) 0%, transparent 50%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(232,160,32,0.15);
    border: 1px solid rgba(232,160,32,0.3);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInDown 0.7s ease;
}

.hero p {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 32px;
    animation: fadeInDown 0.8s ease;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s;
    animation: fadeInDown 0.9s ease;
    box-shadow: 0 4px 20px rgba(232,160,32,0.4);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232,160,32,0.5);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--primary);
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
}

.hero-stats {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px 40px;
    margin-top: 60px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 32px;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* ─── SECTIONS ───────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ─── MAP ────────────────────────────────── */
.map-section {
    padding: 80px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.map-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.map-info {
    margin-left: auto;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

#googleMap {
    width: 100%;
    height: 580px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* ─── CITIES ─────────────────────────────── */
.cities-section {
    padding: 80px 24px;
    background: var(--bg2);
}

.cities-section .section-header,
.cities-grid,
.cities-more {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.city-card {
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}

.city-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.city-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.city-img-placeholder {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    font-size: 32px;
}

.city-info {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.city-name {
    font-weight: 700;
    font-size: 14px;
}

.city-followers {
    font-size: 12px;
    color: var(--text-muted);
}

.cities-more {
    text-align: center;
    margin-top: 0;
}

/* ─── FOOTER ─────────────────────────────── */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    padding: 48px 24px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
    color: #fff;
}

.footer-brand strong { color: var(--accent); }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.4); }

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    border: 1px solid rgba(255,255,255,0.15);
}

.social-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ─── INNER PAGES ────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 120px 24px 60px;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--primary);
    margin: 32px 0 12px;
}

.page-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.contact-form {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

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

.btn-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

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

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

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 16px; }
    .hamburger { display: flex; }
    .hero-stats {
        flex-wrap: wrap;
        padding: 20px;
        gap: 16px;
    }
    .stat-divider { display: none; }
    .stat-item { padding: 8px 16px; }
    .stat-num { font-size: 24px; }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .hero-stats { gap: 8px; }
    .stat-item { padding: 8px; }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
    #googleMap { height: 400px; }
}

/* ─── CUSTOM MAP CONTROLS ─────────────────── */
.map-zoom-controls {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 10;
}

.map-wrapper {
    position: relative;
}

.zoom-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: all 0.2s;
    line-height: 1;
}

.zoom-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ─── MOBILE FIXES ────────────────────────── */
@media (max-width: 768px) {
    .hero {
        padding: 100px 16px 40px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-stats {
        padding: 16px;
        gap: 0;
        margin-top: 32px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .stat-divider { display: none; }

    .stat-item {
        padding: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.1);
    }

    .stat-num { font-size: 22px; }

    .map-section {
        padding: 40px 16px;
    }

    #googleMap {
        height: 450px;
    }

    .map-toolbar {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .cities-section {
        padding: 40px 16px;
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 400px) {
    .hero h1 { font-size: 26px; }
    .stat-num { font-size: 18px; }
    #googleMap { height: 380px; }
}

/* ─── DARK MODE ───────────────────────────── */
body.dark {
    --primary: #4f7ef7;
    --primary-light: #6b93f8;
    --accent: #e8a020;
    --text: #e8eaf0;
    --text-muted: #9ca3af;
    --bg: #0d0f14;
    --bg2: #13161e;
    --border: #252836;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
}

body.dark .navbar {
    background: rgba(13,15,20,0.97);
}

body.dark .hero-bg {
    background: linear-gradient(135deg, #070a12 0%, #0d1525 50%, #101e35 100%);
}

body.dark .hero-bg::after {
    background: linear-gradient(to bottom, transparent, var(--bg));
}

body.dark .city-card {
    background: var(--bg2);
}

body.dark .filter-btn {
    background: var(--bg2);
    color: var(--text-muted);
    border-color: var(--border);
}

body.dark .filter-btn.active {
    background: var(--primary);
    color: #fff;
}

body.dark #googleMap {
    filter: invert(90%) hue-rotate(180deg);
}

body.dark .footer {
    background: #070a12;
}

body.dark .zoom-btn {
    background: var(--bg2);
    border-color: var(--border);
    color: var(--text);
}

body.dark .zoom-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ─── THEME TOGGLE ────────────────────────── */
.theme-toggle {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.theme-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ─── COOKIE BANNER ───────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: #1a2744;
    border-top: 2px solid var(--accent);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-text {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    flex: 1;
    min-width: 250px;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-accept {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.cookie-accept:hover { background: var(--accent-hover); }

.cookie-decline {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 10px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.cookie-decline:hover {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }
    .cookie-buttons { width: 100%; }
    .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}

/* ─── MAP PLACEHOLDER ─────────────────────── */
.map-placeholder {
    width: 100%;
    height: 580px;
    background: linear-gradient(135deg, #1a2744 0%, #243560 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.map-placeholder-inner {
    text-align: center;
    color: #fff;
    padding: 40px;
    max-width: 400px;
}

.map-placeholder-icon { font-size: 64px; margin-bottom: 20px; }

.map-placeholder-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 12px;
}

.map-placeholder-inner p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .map-placeholder { height: 400px; }
}

/* ─── LOGIN MODAL ─────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: translateY(20px);
    transition: transform 0.3s;
    position: relative;
}

.modal-overlay.open .modal-box { transform: translateY(0); }

body.dark .modal-box {
    background: #13161e;
    border: 1px solid #252836;
}

.modal-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 24px;
}

body.dark .modal-box h2 { color: #e8eaf0; }

.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
}

.modal-close:hover { color: var(--text); }

.login-error {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    color: #dc2626;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 16px;
    display: none;
}

/* ─── PROFIL NAVBAR ───────────────────────── */
.nav-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 5px 12px 5px 8px;
    transition: all 0.2s;
    position: relative;
}

.nav-profile:hover { background: rgba(255,255,255,0.15); }

.nav-profile-avatar {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 50;
}

body.dark .profile-dropdown {
    background: #13161e;
    border-color: #252836;
}

.profile-dropdown.open { display: block; }

.profile-info {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
}

.profile-username {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
}

body.dark .profile-username { color: #e8eaf0; }

.profile-premium { font-size: 12px; margin-top: 4px; }
.premium-active { color: #e8a020; font-weight: 600; }
.premium-inactive { color: var(--text-muted); }

.profile-dropdown a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.profile-dropdown a:hover { background: var(--bg); color: var(--text); }

.profile-logout {
    color: #ef4444 !important;
    border-top: 1px solid var(--border);
    margin-top: 4px;
    padding-top: 8px !important;
}

/* ─── KOMMENTAR FORMULAR ──────────────────── */
.comment-form {
    margin-top: 10px;
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
}

.comment-form textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px;
    font-family: Outfit, sans-serif;
    font-size: 12px;
    resize: none;
    height: 60px;
    outline: none;
    margin-bottom: 6px;
    box-sizing: border-box;
}

.comment-form textarea:focus { border-color: #1a2744; }

.comment-submit {
    background: #1a2744;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    font-family: Outfit, sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.comment-submit:hover { opacity: 0.85; }

.comment-image-label {
    display: inline-block;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 11px;
    color: #6b7280;
    cursor: pointer;
    margin-right: 6px;
    transition: all 0.2s;
}

.comment-image-label:hover { border-color: #1a2744; color: #1a2744; }
