/* ══════════════════════════════════════════════
   js-tools.de – Zentrale Stylesheet-Datei
   ══════════════════════════════════════════════ */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e2e5e7;
    color: #2a2a2a;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

a {
    color: #c96b20;
    text-decoration: none;
}

a:hover {
    color: #a85515;
    text-decoration: underline;
}



/* ══════════════════════════════════════════════
   Navigation
   ══════════════════════════════════════════════ */

nav {
    background-color: #0e2d4a;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #c96b20;
}

nav .logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

nav .logo:hover {
    text-decoration: none;
}

nav .logo img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
}

nav .logo span {
    color: #c96b20;
}

nav .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav .nav-links a {
    color: #bfccd9;
    font-weight: 500;
    transition: color 0.3s;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

nav .nav-links a:hover {
    color: #c96b20;
    text-decoration: none;
}

nav .nav-links a.active {
    color: #ffffff;
    border-bottom: 2px solid #c96b20;
}

/* ── Hamburger-Button ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: #bfccd9;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger:hover span {
    background-color: #c96b20;
}

/* Hamburger → X Animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* ══════════════════════════════════════════════
   Page Header (Unterseiten)
   ══════════════════════════════════════════════ */

.page-header {
    background-color: #143248;
    padding: 3.5rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #95a7bc;
    font-size: 1.05rem;
    margin-top: 1rem;
}


/* ══════════════════════════════════════════════
   Hero / Header (Startseite)
   ══════════════════════════════════════════════ */

#top {
    background: linear-gradient(rgba(14, 45, 74, 0.35), rgba(14, 45, 74, 0.5)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 7rem 2rem;
    text-align: center;
}

#top h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

#top h1 span {
    color: #c96b20;
}

#top p {
    font-size: 1.2rem;
    color: #95a7bc;
    margin-bottom: 0.5rem;
}

#top .btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    background-color: #c96b20;
    color: #ffffff;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.3s;
}

#top .btn:hover {
    background-color: #a85515;
    text-decoration: none;
}


/* ══════════════════════════════════════════════
   Content-Bereich (allgemein)
   ══════════════════════════════════════════════ */

.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem 2rem;
}

.content.content-wide {
    max-width: 1100px;
}

.content h2 {
    font-size: 1.3rem;
    color: #143248;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.4rem;
}

.content p {
    margin-bottom: 0.8rem;
    color: #444444;
}

.content .section-intro {
    color: #143248;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.content ul {
    margin: 0.8rem 0 1.2rem 1.5rem;
}

.content ul li {
    margin-bottom: 0.4rem;
    color: #555555;
}

/* ── Info-Block (Hervorgehobene Infos) ── */
.content .info-block {
    background-color: #ffffff;
    border: 1px solid #cfd3d5;
    border-left: 3px solid #c96b20;
    border-radius: 6px;
    padding: 1.2rem 1.5rem;
    margin: 1rem 0 1.5rem 0;
}

.content .info-block p {
    margin-bottom: 0.3rem;
}

/* ── Highlight-Box / Disclaimer ── */
.content .highlight-box,
.content .disclaimer {
    background-color: #ffffff;
    border: 1px solid #cfd3d5;
    border-left: 3px solid #888888;
    border-radius: 6px;
    padding: 1.2rem 1.5rem;
    margin: 1rem 0 1.5rem 0;
    color: #666666;
    font-size: 0.95rem;
}


/* ══════════════════════════════════════════════
   Sections (Startseite)
   ══════════════════════════════════════════════ */

section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

section h2 {
    font-size: 2rem;
    color: #143248;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.8rem;
}

section h3 {
    color: #143248;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

section h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background-color: #c96b20;
    margin-right: 0.6rem;
    border-radius: 2px;
    vertical-align: middle;
}

section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

section ul li {
    margin-bottom: 0.4rem;
    color: #444444;
}

section p {
    color: #444444;
}

section strong {
    color: #2a2a2a;
}


/* ══════════════════════════════════════════════
   Service-Kacheln (Startseite)
   ══════════════════════════════════════════════ */

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #cfd3d5;
    border-radius: 8px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
    box-shadow: 0 6px 24px rgba(14, 45, 74, 0.12);
    transform: translateY(-3px);
}

.service-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 1.2rem;
    border-radius: 6px;
}

.service-card h3 {
    color: #0e2d4a;
    font-size: 1.1rem;
    line-height: 1.5;
}

.service-card h3::before {
    display: none;
}

.service-checklist {
    margin-top: 2.5rem;
    background-color: #ffffff;
    border: 1px solid #cfd3d5;
    border-radius: 8px;
    padding: 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1.05rem;
    color: #444444;
}

.checklist-check {
    color: #c96b20;
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1.4;
}


/* ══════════════════════════════════════════════
   Zitat-Karte (Über uns)
   ══════════════════════════════════════════════ */

.quote-card {
    background-color: #ffffff;
    border-left: 4px solid #c96b20;
    border-radius: 8px;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    margin: 3rem 0 1rem 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(18, 32, 58, 0.15);
    overflow: hidden;
}

.quote-card::before {
    content: '\201E';
    font-size: 5rem;
    color: #c96b20;
    opacity: 0.25;
    position: absolute;
    top: 8px;
    left: 18px;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.quote-card p.quote-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    padding-left: 2.5rem;
    padding-top: 1.2rem;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    padding-left: 0.5rem;
}

.quote-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #c96b20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
    flex-shrink: 0;
}

.quote-author-info {
    display: flex;
    flex-direction: column;
}

.quote-author-name {
    color: #143248;
    font-weight: 700;
    font-size: 1rem;
}

.quote-author-title {
    color: #c96b20;
    font-size: 0.85rem;
    font-weight: 500;
}


/* ══════════════════════════════════════════════
   CTA-Banner (Startseite)
   ══════════════════════════════════════════════ */

.cta-banner {
    background-color: #e2e5e7;
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid #cfd3d5;
    border-bottom: 1px solid #cfd3d5;
}

.cta-banner h2 {
    font-size: 2rem;
    color: #143248;
    margin-bottom: 1rem;
}

.cta-banner h2::after {
    display: none;
}

.cta-banner p {
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.cta-buttons .btn-primary {
    background-color: #c96b20;
    color: #ffffff;
}

.cta-buttons .btn-primary:hover {
    background-color: #a85515;
    text-decoration: none;
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: #143248;
    border: 2px solid #143248;
}

.cta-buttons .btn-secondary:hover {
    background-color: #143248;
    color: #ffffff;
    text-decoration: none;
}


/* ── Datei-Upload ── */
.file-upload-wrapper {
    margin-top: 0.2rem;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.2rem;
    background-color: #ffffff;
    border: 2px dashed #c2c7ca;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
}

.file-upload-label:hover {
    border-color: #c96b20;
    background-color: #fdf8f3;
}

.file-upload-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.file-upload-text {
    color: #888888;
    font-size: 0.95rem;
}

/* Nativen Input verstecken */
input[type="file"] {
    display: none;
}

.file-upload-list {
    margin-top: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.file-upload-item {
    padding: 0.6rem 1rem;
    background-color: #f0f0ee;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #444444;
}

.file-upload-item .file-size {
    color: #888888;
}

.file-upload-item.file-too-large {
    background-color: #fbe9e7;
    color: #c62828;
}


/* ══════════════════════════════════════════════
   Downloads-Seite
   ══════════════════════════════════════════════ */

.download-category {
    margin-bottom: 3rem;
}

.download-category h2 {
    font-size: 1.4rem;
    color: #143248;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.download-list {
    list-style: none;
}

.download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    background-color: #ffffff;
    border: 1px solid #cfd3d5;
    border-radius: 6px;
    margin-bottom: 0.8rem;
    transition: box-shadow 0.3s;
}

.download-item:hover {
    box-shadow: 0 2px 12px rgba(18, 32, 58, 0.08);
}

.download-item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.download-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.download-item-info .name {
    font-weight: 600;
    color: #2a2a2a;
    font-size: 1rem;
}

.download-item-info .meta {
    font-size: 0.85rem;
    color: #888888;
}

.download-btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: #c96b20;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    flex-shrink: 0;
}

.download-btn:hover {
    background-color: #a85515;
    text-decoration: none;
}

.download-btn-outline {
    background-color: transparent;
    color: #c96b20;
    border: 1px solid #c96b20;
}

.download-btn-outline:hover {
    background-color: #c96b20;
    color: #ffffff;
    text-decoration: none;
}

.download-btn-group {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.download-notice {
    margin-top: 2rem;
    padding: 1.2rem 1.5rem;
    background-color: #ffffff;
    border: 1px solid #cfd3d5;
    border-left: 3px solid #c96b20;
    border-radius: 6px;
    color: #666666;
    font-size: 0.95rem;
}


/* ══════════════════════════════════════════════
   Kontakt-Formular
   ══════════════════════════════════════════════ */

form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="number"],
form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
    color: #2a2a2a;
    border: 1px solid #c2c7ca;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form input[type="number"]:focus,
form textarea:focus {
    border-color: #c96b20;
    box-shadow: 0 0 0 3px rgba(201, 107, 32, 0.15);
}

form input::placeholder,
form textarea::placeholder {
    color: #999999;
}

form textarea {
    min-height: 140px;
    resize: vertical;
}

.captcha-wrapper {
    text-align: center;
    margin-top: 0.5rem;
}

.captcha-wrapper p {
    font-size: 1.1rem;
    color: #143248;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.btn-senden {
    display: block;
    margin: 1.5rem auto 0 auto;
    padding: 0.9rem 3rem;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #c96b20;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-senden:hover {
    background-color: #a85515;
}

.success-message {
    display: none;
    text-align: center;
    padding: 1.5rem;
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: 500;
}

.error-message {
    display: none;
    text-align: center;
    padding: 1rem;
    background-color: #fbe9e7;
    color: #c62828;
    border: 1px solid #ef9a9a;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: 500;
}

.kontakt-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #cfd3d5;
    text-align: center;
}

.kontakt-info p {
    color: #666666;
    margin-bottom: 0.4rem;
}

.kontakt-info strong {
    color: #143248;
}


/* ══════════════════════════════════════════════
   Footer
   ══════════════════════════════════════════════ */

footer {
    text-align: center;
    padding: 2rem;
    background-color: #0e2d4a;
    color: #7a8da3;
    font-size: 0.9rem;
    border-top: 3px solid #c96b20;
}

footer a {
    color: #95a7bc;
}

footer a:hover {
    color: #c96b20;
}


/* ══════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* Hamburger sichtbar */
    .hamburger {
        display: flex;
    }

    /* Nav-Links ausblenden und als Dropdown */
    nav .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #0e2d4a;
        padding: 1rem 2rem 1.5rem 2rem;
        gap: 0;
        border-bottom: 3px solid #c96b20;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    nav .nav-links.open {
        display: flex;
    }

    nav .nav-links li {
        padding: 0.7rem 0;
        border-bottom: 1px solid rgba(192, 202, 216, 0.1);
    }

    nav .nav-links li:last-child {
        border-bottom: none;
    }

    nav .nav-links a {
        display: block;
        font-size: 1.05rem;
        border-bottom: none;
        padding-bottom: 0;
    }

    nav .nav-links a.active {
        color: #ffffff;
        border-bottom: none;
        padding-left: 0.8rem;
        border-left: 3px solid #c96b20;
    }

    nav {
        position: sticky;
    }

    /* Hero */
    #top h1 {
        font-size: 2rem;
    }

    /* Page Header */
    .page-header h1 {
        font-size: 1.8rem;
    }

    /* Service-Kacheln */
    .service-cards {
        grid-template-columns: 1fr;
    }

    /* Zitat */
    .quote-card {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }

    .quote-card::before {
        font-size: 3.5rem;
        top: 5px;
        left: 12px;
    }

    .quote-card p.quote-text {
        padding-left: 1.8rem;
    }

    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Downloads */
    .download-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
}


/* ══════════════════════════════════════════════
   Cookie-Banner  (passend zu cookie-consent.js)
   ══════════════════════════════════════════════ */

/* ── Overlay / Banner-Container ── */
.cookie-banner {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
}

.cookie-banner.visible {
    opacity: 1;
    visibility: visible;
}

/* ── Innerer Kasten ── */
.cookie-banner-inner {
    max-width: 520px;
    width: 100%;
    background-color: #0e2d4a;
    border: 1px solid rgba(201, 107, 32, 0.3);
    border-top: 2px solid #c96b20;
    border-radius: 8px;
    padding: 1.8rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ── Texte ── */
.cookie-banner a {
    color: #c96b20;
}

.cookie-text {
    font-size: 0.85rem;
    color: #95a7bc;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ── Details-Bereich (aufklappbar) ── */
.cookie-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.cookie-details.open {
    max-height: 600px;
}

/* ── Kategorien ── */
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1rem;
}

.cookie-category {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.8rem 1rem;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-category-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.cookie-category-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.cookie-category-desc {
    font-size: 0.78rem;
    color: #7a8da3;
}

/* ── Toggle-Switch ── */
.cookie-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    flex-shrink: 0;
}

.cookie-switch input[type="checkbox"] {
    display: none;
}

.cookie-slider {
    width: 40px;
    height: 22px;
    background-color: #3a4f63;
    border-radius: 11px;
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.3s;
    cursor: pointer;
}

.cookie-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background-color: #bfccd9;
    border-radius: 50%;
    transition: transform 0.3s, background-color 0.3s;
}

.cookie-switch input[type="checkbox"]:checked + .cookie-slider {
    background-color: #c96b20;
}

.cookie-switch input[type="checkbox"]:checked + .cookie-slider::after {
    transform: translateX(18px);
    background-color: #ffffff;
}

.cookie-switch-locked .cookie-slider {
    background-color: #c96b20;
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-switch-locked .cookie-slider::after {
    transform: translateX(18px);
    background-color: #ffffff;
}

.cookie-switch-label {
    font-size: 0.75rem;
    color: #7a8da3;
    white-space: nowrap;
    min-width: 5ch;
}

/* ── Cookie-Services (Detail-Infos) ── */
.cookie-services {
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cookie-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
}

.cookie-service-name {
    color: #bfccd9;
}

.cookie-service-info {
    color: #5a6f82;
    font-size: 0.72rem;
}

/* ── Buttons ── */
.cookie-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.cookie-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.cookie-btn-accept {
    background-color: #c96b20;
    color: #ffffff;
}

.cookie-btn-accept:hover {
    background-color: #a85515;
}

.cookie-btn-save {
    display: none;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-btn-save:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-decline {
    background-color: transparent;
    color: #7a8da3;
    border: 1px solid #3a4f63;
}

.cookie-btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #bfccd9;
}

.cookie-btn-details {
    background-color: transparent;
    color: #7a8da3;
    border: none;
    padding: 0.5rem 0;
    font-size: 0.8rem;
}

.cookie-btn-details:hover {
    color: #bfccd9;
}

/* ── Cookie-Einstellungen Toggle-Button (links unten) ── */
.cookie-toggle {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    background-color: #0e2d4a;
    border: 2px solid #c96b20;
    border-radius: 20px;
    cursor: pointer;
    z-index: 1999;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #c96b20;
    font-family: inherit;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s, background-color 0.3s, transform 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cookie-toggle.visible {
    opacity: 1;
    visibility: visible;
}

.cookie-toggle:hover {
    background-color: #143248;
    transform: scale(1.05);
}

.cookie-toggle svg {
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .cookie-banner-inner {
        padding: 1.4rem;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-btn {
        text-align: center;
    }

    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }
}
