/* ═══════════════════════════════════════════════════════════════════════════
   BRAVO-ARCHIV — Marktplatz für Musikzeitschriften
   CSS für n_marktplatz.php
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
    --slate:      #4A6274;
    --slate-dk:   #34485A;
    --slate-lt:   #6B8EA5;
    --dark:       #1A1A1A;
    --dark2:      #212529;
    --blue:       #467999;
    --gray:       #848395;
    --cream:      #F5F2E9;
    --cream2:     #EDE9DC;
    --white:      #FFFFFF;
    --accent:     #C8502A;
    --accent-lt:  #E8724F;
    --green:      #2E7D4F;
    --green-lt:   #3EA868;
    --shadow:     0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg:  0 12px 48px rgba(0,0,0,0.18);
    --radius:     10px;
    --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ─── BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Barlow', sans-serif;
    background-color: var(--cream);
    color: var(--dark2);
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
}

/* ─── UTILITY ─── */
.font-display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; }
.font-cond    { font-family: 'Barlow Condensed', sans-serif; }

/* ═══════════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════════ */
.navbar {
    background-color: var(--dark2) !important;
    padding: 0;
    height: 64px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
    z-index: 1050;
}
.navbar-brand {
    display: flex; align-items: center; gap: 2px;
    text-decoration: none; white-space: nowrap;
}
.brand-bravo { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: #fff; letter-spacing: 0.06em; }
.brand-dash  { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--slate); }
.brand-rest  { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: #fff; letter-spacing: 0.06em; }
.brand-tag   { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; color: #888; margin-left: 8px; align-items: center; letter-spacing: 0.12em; text-transform: uppercase; }

.nav-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #bbb !important; padding: 20px 14px !important;
    position: relative; transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: #fff !important; }
.nav-link.active::after {
    content: ''; position: absolute; bottom: 16px; left: 14px; right: 14px;
    height: 2px; background: var(--slate) !important; border-radius: 1px;
}

.dropdown-menu {
    background: var(--dark2); border: 1px solid #333; border-radius: 6px;
    margin-top: 0; padding: 6px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.dropdown-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #aaa; padding: 8px 18px; transition: color var(--transition);
}
.dropdown-item:hover, .dropdown-item:focus {
    background: transparent; color: #fff;
}

/* ─── Burger ─── */
.burger-btn {
    background: none; border: none; cursor: pointer;
    color: #ccc; padding: 6px; display: flex;
    align-items: center; justify-content: center;
    border-radius: 6px; transition: background var(--transition);
}
.burger-btn:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.hero-section {
    background: linear-gradient(135deg, var(--dark2) 0%, #2a3540 60%, var(--slate-dk) 100%);
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(70,121,153,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--slate-lt); margin-bottom: 12px;
}
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    letter-spacing: 0.05em;
    color: #fff; line-height: 1;
    margin-bottom: 14px;
}
.hero-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 1.05rem; color: #9badb8;
    max-width: 560px; margin: 0 auto 28px;
}
.hero-actions {
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: center;
}
.btn-hero-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    background: var(--accent); color: #fff; border: none;
    padding: 12px 28px; border-radius: 6px; cursor: pointer;
    text-decoration: none; transition: background var(--transition), transform var(--transition);
}
.btn-hero-primary:hover { background: var(--accent-lt); color: #fff; transform: translateY(-1px); }
.btn-hero-secondary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    background: transparent; color: #ccc; border: 1px solid #4a5a68;
    padding: 12px 28px; border-radius: 6px; cursor: pointer;
    text-decoration: none; transition: border-color var(--transition), color var(--transition);
}
.btn-hero-secondary:hover { border-color: var(--slate-lt); color: #fff; }

/* Hero stats */
.hero-stats {
    display: flex; justify-content: center; gap: 40px;
    margin-top: 36px; padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
}
.hero-stat-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; color: var(--slate-lt); display: block;
}
.hero-stat-lbl {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: #666;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FILTER BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.filter-bar {
    background: var(--cream2);
    border-bottom: 1px solid #d9d4c7;
    padding: 18px 0;
    position: sticky; top: 64px; z-index: 100;
}
.filter-bar .container {
    display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.filter-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gray); white-space: nowrap;
}
.filter-select {
    font-family: 'Barlow', sans-serif; font-size: 0.88rem;
    background: #fff; border: 1px solid #c9c4b5;
    border-radius: 6px; padding: 7px 32px 7px 12px;
    color: var(--dark2); cursor: pointer;
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23848395' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: border-color var(--transition);
    min-width: 160px;
}
.filter-select:focus { outline: none; border-color: var(--slate); }

.filter-search {
    font-family: 'Barlow', sans-serif; font-size: 0.88rem;
    background: #fff; border: 1px solid #c9c4b5;
    border-radius: 6px; padding: 7px 12px;
    color: var(--dark2); flex: 1; min-width: 200px;
    transition: border-color var(--transition);
}
.filter-search:focus { outline: none; border-color: var(--slate); }

.filter-count {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem; color: var(--gray);
    margin-left: auto; white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANGEBOTE-GRID
   ═══════════════════════════════════════════════════════════════════════════ */
.section-marktplatz {
    padding: 40px 0 60px;
}

.section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem; letter-spacing: 0.05em;
    color: var(--dark2); margin-bottom: 6px;
}
.section-sub {
    font-family: 'Barlow', sans-serif; font-size: 0.88rem; color: var(--gray);
    margin-bottom: 28px;
}

.angebote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

/* ─── Angebot-Card ─── */
.angebot-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}
.angebot-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.angebot-img-wrap {
    aspect-ratio: 3/4;
    background: var(--cream2);
    overflow: hidden; position: relative;
}
.angebot-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    transition: transform 0.4s ease;
    image-rendering: auto;
}
.angebot-card:hover .angebot-img-wrap img { transform: scale(1.03); }

/* ── Bild-Galerie (mehrere Fotos je Angebot) ── */
.angebot-gallery .gallery-img {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 0.35s ease;
    pointer-events: none;
}
.angebot-gallery .gallery-img.active {
    opacity: 1; pointer-events: auto;
}
.angebot-gallery .gallery-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 32px; height: 32px; border-radius: 50%;
    border: none; background: rgba(0,0,0,0.45); color: #fff;
    font-size: 1.2rem; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.25s ease, background 0.25s ease;
    z-index: 2;
}
.angebot-gallery:hover .gallery-arrow { opacity: 1; }
.angebot-gallery .gallery-arrow:hover { background: rgba(0,0,0,0.7); }
.angebot-gallery .gallery-prev { left: 8px; }
.angebot-gallery .gallery-next { right: 8px; }
.angebot-gallery .gallery-dots {
    position: absolute; bottom: 10px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 6px;
    z-index: 2;
}
.angebot-gallery .gallery-dots .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(0,0,0,0.15);
    cursor: pointer; transition: background 0.25s ease;
}
.angebot-gallery .gallery-dots .dot.active { background: #fff; }

.angebot-img-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px;
    color: var(--gray);
}
.angebot-img-placeholder svg { opacity: 0.4; }
.angebot-img-placeholder span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
    opacity: 0.5;
}

.angebot-badge {
    position: absolute; top: 10px; left: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 3px 9px; border-radius: 4px;
}
.badge-neu     { background: var(--green);   color: #fff; }
.badge-gut     { background: var(--slate);   color: #fff; }
.badge-akzept  { background: var(--gray);    color: #fff; }
.badge-sammler { background: var(--accent);  color: #fff; }

.angebot-body {
    padding: 16px 18px 14px;
    display: flex; flex-direction: column; flex: 1;
}
.angebot-mag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--slate); margin-bottom: 4px;
}
.angebot-titel {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem; letter-spacing: 0.04em;
    color: var(--dark2); line-height: 1.1; margin-bottom: 8px;
}
.angebot-meta {
    font-family: 'Barlow', sans-serif; font-size: 0.82rem;
    color: var(--gray); margin-bottom: 10px; line-height: 1.5;
}
.angebot-meta span { display: inline-block; margin-right: 10px; }
.angebot-meta svg { vertical-align: middle; margin-right: 3px; }

.angebot-desc {
    font-family: 'Barlow', sans-serif; font-size: 0.85rem;
    color: #5a5a5a; line-height: 1.55;
    flex: 1; margin-bottom: 14px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden;
}

.angebot-footer {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid var(--cream2); padding-top: 12px;
    gap: 10px;
}
.angebot-preis {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem; letter-spacing: 0.04em; color: var(--accent);
    line-height: 1;
}
.angebot-preis-sub {
    font-family: 'Barlow', sans-serif; font-size: 0.72rem; color: var(--gray);
}
.btn-kontakt {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    background: var(--dark2); color: #fff; border: none;
    padding: 8px 16px; border-radius: 6px; cursor: pointer;
    text-decoration: none; transition: background var(--transition);
    white-space: nowrap;
}
.btn-kontakt:hover { background: var(--slate); color: #fff; }

.angebot-seller {
    font-family: 'Barlow', sans-serif; font-size: 0.78rem; color: var(--gray);
    margin-top: 8px;
}

/* ─── Keine Treffer ─── */
.no-results {
    text-align: center; padding: 60px 20px; color: var(--gray);
    display: none;
}
.no-results svg { opacity: 0.3; margin-bottom: 16px; }
.no-results p { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; letter-spacing: 0.08em; }

/* ═══════════════════════════════════════════════════════════════════════════
   ANGEBOT AUFGEBEN — Info-Sektion
   ═══════════════════════════════════════════════════════════════════════════ */
.section-anbieten {
    background: var(--dark2);
    padding: 60px 0;
}
.anbieten-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 767px) { .anbieten-grid { grid-template-columns: 1fr; gap: 36px; } }

.anbieten-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--slate-lt); margin-bottom: 10px;
}
.anbieten-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.05em; color: #fff; margin-bottom: 16px; line-height: 1.05;
}
.anbieten-text {
    font-family: 'Barlow', sans-serif; font-size: 0.95rem; color: #9badb8;
    line-height: 1.7; margin-bottom: 28px;
}
.anbieten-steps {
    list-style: none; display: flex; flex-direction: column; gap: 14px;
}
.anbieten-step {
    display: flex; gap: 14px; align-items: flex-start;
}
.step-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
    color: var(--slate-lt); line-height: 1; min-width: 28px;
}
.step-body { flex: 1; }
.step-title {
    font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem;
    font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: #ddd; margin-bottom: 2px;
}
.step-desc { font-family: 'Barlow', sans-serif; font-size: 0.82rem; color: #777; }

/* ─── Formular ─── */
.anbieten-form-card {
    background: #2a3540; border-radius: var(--radius);
    padding: 32px; box-shadow: var(--shadow-lg);
}
.form-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem; letter-spacing: 0.04em;
    color: #fff; margin-bottom: 20px;
}
.mp-form-group { margin-bottom: 16px; }
.mp-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: #888; display: block; margin-bottom: 6px;
}
.mp-input, .mp-select, .mp-textarea {
    width: 100%; font-family: 'Barlow', sans-serif; font-size: 0.88rem;
    background: #1e2a33; border: 1px solid #3a4a58; border-radius: 6px;
    color: #ddd; padding: 10px 14px;
    transition: border-color var(--transition);
}
.mp-input:focus, .mp-select:focus, .mp-textarea:focus {
    outline: none; border-color: var(--slate-lt);
}
.mp-input::placeholder, .mp-textarea::placeholder { color: #4a5a68; }
.mp-select { appearance: none; -webkit-appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23848395' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center;
    padding-right: 36px;
}
.mp-select option { background: #1e2a33; }
.mp-textarea { resize: vertical; min-height: 90px; }

.mp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .mp-form-row { grid-template-columns: 1fr; } }

.mp-hint {
    font-family: 'Barlow', sans-serif; font-size: 0.78rem; color: #5a6a78;
    margin-top: 5px;
}
.mp-submit {
    width: 100%; font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    background: var(--accent); color: #fff; border: none;
    padding: 13px 24px; border-radius: 6px; cursor: pointer;
    margin-top: 8px; transition: background var(--transition);
}
.mp-submit:hover { background: var(--accent-lt); }
.mp-error {
    background: rgba(200,80,42,0.12); border: 1px solid rgba(200,80,42,0.3);
    border-radius: 8px; color: #e87050; padding: 12px 16px; margin-top: 12px;
    font-family: 'Barlow', sans-serif; font-size: 0.85rem;
}
.mp-success {
    text-align: center; padding: 20px;
    background: rgba(46,125,79,0.15); border: 1px solid rgba(46,125,79,0.3);
    border-radius: 8px; color: #3ea868; margin-top: 16px;
    font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; letter-spacing: 0.08em;
}

/* ─── Foto-Upload ─── */
.mp-upload-wrap { position: relative; }
.mp-upload-area {
    border: 2px dashed #3a4a58; border-radius: 8px;
    padding: 24px 16px; text-align: center; cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.mp-upload-area:hover, .mp-upload-area.drag-over {
    border-color: var(--slate-lt); background: rgba(74,98,116,0.08);
}
.mp-upload-txt {
    font-family: 'Barlow', sans-serif; font-size: 0.85rem; color: #7a8a98;
}
.mp-upload-link { color: var(--slate-lt); text-decoration: underline; cursor: pointer; }
.mp-upload-sub  { font-family: 'Barlow', sans-serif; font-size: 0.75rem; color: #4a5a68; }

.mp-upload-preview {
    display: flex; align-items: center; gap: 16px;
    background: rgba(30,42,51,0.6); border: 1px solid #3a4a58;
    border-radius: 8px; padding: 14px;
}
.mp-upload-remove {
    background: none; border: 1px solid #4a3030; color: #c66;
    font-size: 0.78rem; padding: 5px 12px; border-radius: 4px; cursor: pointer;
    font-family: 'Barlow', sans-serif;
    transition: background var(--transition);
}
.mp-upload-remove:hover { background: rgba(200,80,42,0.15); }

/* ═══════════════════════════════════════════════════════════════════════════
   DETAIL-MODAL
   ═══════════════════════════════════════════════════════════════════════════ */
.modal-content {
    background: var(--cream); border: none; border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.modal-header {
    background: var(--dark2); border-radius: var(--radius) var(--radius) 0 0;
    border-bottom: none; padding: 18px 24px;
}
.modal-title {
    font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em;
    color: #fff; font-size: 1.4rem;
}
.btn-close-white { filter: invert(1) grayscale(1); }
.modal-body { padding: 24px; }
.modal-footer { border-top: 1px solid var(--cream2); padding: 16px 24px; }

.modal-mag-img {
    width: 100%; border-radius: 6px; object-fit: cover; object-position: top;
    image-rendering: auto;
}
.modal-detail-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gray); margin-bottom: 2px;
}
.modal-detail-val {
    font-family: 'Barlow', sans-serif; font-size: 0.92rem; color: var(--dark2);
    margin-bottom: 14px;
}
.modal-preis-big {
    font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem;
    color: var(--accent); letter-spacing: 0.04em;
}
.modal-vb { font-family: 'Barlow', sans-serif; font-size: 0.78rem; color: var(--gray); }
.btn-modal-kontakt {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    background: var(--accent); color: #fff; border: none;
    padding: 11px 24px; border-radius: 6px; cursor: pointer;
    text-decoration: none; transition: background var(--transition);
}
.btn-modal-kontakt:hover { background: var(--accent-lt); color: #fff; }

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL-REVEAL
   ═══════════════════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0; transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
footer {
    background: var(--dark2); color: #777;
    padding: 50px 0 30px;
    font-family: 'Barlow', sans-serif;
}
.footer-brand {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem;
    color: #fff; letter-spacing: 0.06em; margin-bottom: 6px;
}
.footer-brand span { color: var(--accent); }
.footer-tagline { font-size: 0.82rem; color: #555; margin-bottom: 12px; }
.footer-col-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
    color: #aaa; margin-bottom: 12px;
}
.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: 7px; }
.footer-nav a {
    font-size: 0.85rem; color: #666; text-decoration: none;
    transition: color var(--transition);
}
.footer-nav a:hover { color: #ccc; }
.footer-divider { border-color: #2a2a2a; margin: 30px 0 20px; }
.footer-copy { font-size: 0.78rem; color: #444; }

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL-TO-TOP
   ═══════════════════════════════════════════════════════════════════════════ */
#scrollTopBtn {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 42px; height: 42px;
    background: var(--dark2); color: #bbb; border: 1px solid #3a3a3a;
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition), background var(--transition);
    pointer-events: none;
}
#scrollTopBtn.visible {
    opacity: 1; transform: translateY(0); pointer-events: auto;
}
#scrollTopBtn:hover { background: var(--slate); color: #fff; border-color: var(--slate); }
#scrollTopBtn svg { width: 18px; height: 18px; }

/* ─── Offcanvas-Panel Styles (aus n_style_offcanvas.css) ─── */
.offcanvas {
    background: var(--dark2) !important;
    max-width: 320px;
}
.offcanvas-header {
    background: var(--slate-dk);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 18px 20px;
}
.offcanvas-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem; letter-spacing: 0.08em; color: #fff;
}
.oc-slider { position: relative; overflow: hidden; height: 100%; }
.oc-panel { position: absolute; inset: 0; overflow-y: auto; transition: transform 0.3s ease; }
.oc-panel-main { transform: translateX(0); }
.oc-panel-sub  { transform: translateX(100%); }
.oc-panel-main.oc-slide-out { transform: translateX(-100%); }
.oc-panel-sub.oc-slide-in   { transform: translateX(0); }
.oc-menu { list-style: none; padding: 10px 0; }
.oc-menu-section {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
    color: #4a5a68; padding: 14px 20px 4px;
}
.oc-link {
    display: flex; align-items: center; justify-content: space-between;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem; font-weight: 500; letter-spacing: 0.06em;
    color: #aaa; padding: 9px 20px; text-decoration: none;
    transition: color var(--transition), background var(--transition);
}
.oc-link:hover { color: #fff; background: rgba(255,255,255,0.04); }
.oc-arrow { color: #4a5a68; font-size: 1rem; }
.oc-back {
    display: flex; align-items: center; gap: 8px;
    background: none; border: none; cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--slate-lt); padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
}
.oc-sub-title {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.06em;
    color: #fff; padding: 12px 20px 4px;
}

@media (max-width: 991px) {
    .filter-bar .container { flex-direction: column; align-items: stretch; }
    .filter-count { margin-left: 0; }
    .angebote-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}
@media (max-width: 575px) {
    .angebote-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .hero-stats { gap: 24px; }
}
@media (max-width: 380px) {
    .angebote-grid { grid-template-columns: 1fr; }
}

/* ─── SCROLL-TO-TOP ─── */
#scrollTopBtn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: var(--teal-lt, #3abfbf);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .2s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
#scrollTopBtn svg { width: 22px; height: 22px; }
#scrollTopBtn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#scrollTopBtn:hover { background: var(--teal, #2a9d9d); transform: translateY(-3px); }

