/* Aus verkauf.php ausgelagerte, seitenbezogene Styles */
:root {
            --bg: #f3f4f6;
            --bg-alt: #ffffff;
            --accent: #2563eb;
            --accent-soft: rgba(37, 99, 235, 0.08);
            --text: #111827;
            --text-muted: #6b7280;
            --card: #ffffff;
            --border: #e5e7eb;
            --radius-xl: 18px;
            --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
        }

        * { box-sizing: border-box; }

        body {
            margin: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(circle at top left, #e5f0ff 0, #f3f4f6 45%, #eef2ff 100%);
            color: var(--text);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .page {
            max-width: 1100px;
            margin: 0 auto;
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.25rem;
            padding: 0.85rem 1.25rem;
            margin-bottom: 1.5rem;
            border-radius: 20px;
            background: var(--bg-alt);
            border: 1px solid var(--border);
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .brand-logo {
            width: 40px;
            height: 40px;
            border-radius: 16px;
            background: radial-gradient(circle at 30% 30%, #60a5fa, #2563eb 55%, #1d4ed8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
            font-size: 1.35rem;
            color: #ffffff;
            font-weight: 700;
        }

        .brand-text { display: flex; flex-direction: column; }
        .brand-text span:first-child { font-weight: 600; letter-spacing: 0.03em; }
        .brand-text span:last-child { font-size: 0.8rem; color: var(--text-muted); }

        .header-right {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            align-items: flex-end;
        }

        .contact-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            font-size: 0.83rem;
            color: var(--text-muted);
            justify-content: flex-end;
        }

        .contact-inline span {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }

        .contact-inline .js-mail-visible {
            color: var(--accent);
        }

        nav {
            display: flex;
            gap: 0.75rem;
            font-size: 0.9rem;
        }

        nav a {
            color: var(--text-muted);
            text-decoration: none;
            padding: 0.38rem 0.9rem;
            border-radius: 999px;
            border: 1px solid transparent;
            background: transparent;
        }

        nav a:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: var(--accent-soft);
        }

        .intro {
            margin-bottom: 1rem;
        }

        .intro h1 {
            margin: 0 0 0.4rem;
            font-size: 1.7rem;
        }

        .intro p {
            margin: 0;
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        .seo-text {
            margin-top: 0.4rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .filters {
            border-radius: var(--radius-xl);
            background: var(--card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-soft);
            padding: 1.1rem 1.3rem;
            margin-bottom: 1.5rem;
        }

        .filters form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }

        .filters h2 {
            margin: 0 0 0.4rem;
            font-size: 1.05rem;
        }

        .filters label {
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 0.2rem;
            display: block;
        }

        .filter-group {
            display: flex;
            flex-direction: column;
            min-width: 180px;
            flex: 1 1 180px;
        }

        .filters select {
            width: 100%;
            padding: 0.45rem 0.6rem;
            border-radius: 10px;
            border: 1px solid var(--border);
            font-size: 0.9rem;
            background: #f9fafb;
        }

        .filters select:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 1px var(--accent-soft);
            background: #ffffff;
            outline: none;
        }

        .filters button {
            border-radius: 999px;
            padding: 0.55rem 1.1rem;
            border: 1px solid transparent;
            font-size: 0.9rem;
            cursor: pointer;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: #ffffff;
            font-weight: 600;
            box-shadow: 0 10px 18px rgba(37, 99, 235, 0.35);
            white-space: nowrap;
        }

        .filters button:hover {
            filter: brightness(1.05);
        }

        .hint-small {
            margin-top: 0.4rem;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .list-card {
            border-radius: var(--radius-xl);
            background: var(--card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-soft);
            padding: 1.4rem 1.5rem;
        }

        .list-card h2 {
            margin: 0 0 0.5rem;
            font-size: 1.1rem;
        }

        .list-card p {
            margin: 0 0 0.9rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.1rem;
        }

        .card {
            background: #ffffff;
            border-radius: 14px;
            border: 1px solid var(--border);
            box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
            padding: 1.1rem 1.1rem 1rem;
            display: flex;
            flex-direction: column;
        }

        .card h3 {
            margin-top: 0;
            margin-bottom: 0.2rem;
            font-size: 1.05rem;
            color: var(--accent);
        }

        .badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
            margin-bottom: 0.4rem;
        }

        .badge {
            font-size: 0.75rem;
            padding: 0.12rem 0.5rem;
            border-radius: 999px;
            border: 1px solid var(--border);
            background: #f9fafb;
            color: var(--text-muted);
        }

        .card p {
            margin: 0.15rem 0;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .card p b {
            color: var(--text);
            font-weight: 600;
        }

        .card hr {
            margin: 0.6rem 0;
            border: none;
            border-top: 1px solid #e5e7eb;
        }

        .price {
            font-size: 1.1rem;
            font-weight: 700;
            margin-top: 0.5rem;
            color: #111827;
        }

        .card-actions {
            margin-top: 0.6rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            align-items: center;
        }

        .btn-sheet {
            margin-top: 0;
            padding: 0.5rem 0.9rem;
            border-radius: 999px;
            border: none;
            background: #2563eb;
            color: #ffffff;
            cursor: pointer;
            font-size: 0.88rem;
            font-weight: 600;
        }

        .btn-sheet:hover {
            background: #1d4ed8;
        }

        .no-items {
            text-align: center;
            font-size: 0.95rem;
            color: var(--text-muted);
            padding: 1rem 0.5rem;
        }

        footer {
            margin-top: 2rem;
            padding: 1rem 1.5rem 1.4rem;
            font-size: 0.78rem;
            color: var(--text-muted);
            border-top: 1px solid #e5e7eb;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(6px);
        }

        footer a {
            color: var(--accent);
            text-decoration: none;
        }
        footer a:hover { text-decoration: underline; }

        @media (max-width: 920px) {
            header {
                flex-direction: column;
                align-items: flex-start;
            }
            .header-right { align-items: flex-start; }
            .contact-inline { justify-content: flex-start; }
        }

        @media (max-width: 520px) {
            .page { padding: 1rem; }
            header { border-radius: 18px; padding: 0.8rem 1rem; }
            .filters, .list-card { padding: 1.2rem 1.1rem; }
        }

.footer-inhalt {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-between;
    align-items: center;
}

.noscript-hinweis {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    font-size: 0.8rem;
}

.list-card-abstand {
    margin-top: 1rem;
}
