.book-country-select {
    /* ...existing styles... */
    transition: background 0.25s cubic-bezier(.4,1.4,.6,1), color 0.25s cubic-bezier(.4,1.4,.6,1), box-shadow 0.25s cubic-bezier(.4,1.4,.6,1);
}
.book-country-select:hover:not(:disabled),
.book-country-select:focus-visible {
    background: rgba(255, 245, 210, 0.95);
    color: #d4a900;
    box-shadow: 0 2px 8px 0 rgba(230,200,120,0.13);
    outline: none;
}




/* --- Länderauswahl Dropdown für Bücher (helleres Gold-Braun, smoother Hover) --- */
.book-country-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 0.5em;
    min-width: 130px;
    max-width: 180px;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 236, 180, 0.97) 0%, rgba(230, 200, 120, 0.97) 100%);
    border-radius: 18px;
    box-shadow: 0 2px 10px 0 rgba(230,200,120,0.13), 0 1.5px 6px 0 rgba(0,0,0,0.10);
    border: 1.5px solid #e6c17a;
    padding: 0 0.5em;
    transition: border 0.35s cubic-bezier(.4,1.4,.6,1), box-shadow 0.35s cubic-bezier(.4,1.4,.6,1), background 0.35s cubic-bezier(.4,1.4,.6,1);
}
.book-country-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    color: #b88a2b;
    border: none;
    border-radius: 18px;
    padding: 10px 32px 10px 14px;
    font-size: 1em;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    width: 100%;
    min-width: 0;
    transition: background 0.35s cubic-bezier(.4,1.4,.6,1), color 0.35s cubic-bezier(.4,1.4,.6,1);
    z-index: 2;
    letter-spacing: 0.02em;
    box-shadow: none;
    text-shadow: 0 1px 2px rgba(230,200,120,0.13);
}
.book-country-select:focus {
    background: rgba(255,236,180,0.99);
    color: #a97a1c;
}
.book-country-select:disabled {
    color: #b8a97a;
    background: transparent;
    opacity: 0.7;
    cursor: not-allowed;
}
.select-arrow {
    pointer-events: none;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #b88a2b;
    font-size: 1.1em;
    z-index: 3;
    opacity: 0.92;
    text-shadow: 0 1px 2px rgba(230,200,120,0.13);
    transition: color 0.35s cubic-bezier(.4,1.4,.6,1);
}
.book-country-select::-ms-expand {
    display: none;
}
.book-country-select option {
    color: #4d3a1a;
    background: #fffbe6;
    font-weight: 500;
}
.book-country-select:hover:not(:disabled),
.book-country-select-wrapper:hover {
    background: linear-gradient(90deg, rgba(255, 245, 210, 1) 0%, rgba(255, 236, 180, 1) 100%);
    border-color: #ffd700;
    box-shadow: 0 4px 16px 0 rgba(230,200,120,0.18), 0 2px 8px 0 rgba(0,0,0,0.13);
}

/* Responsive Anpassung für Buchkarten-Layout */
.book-card {
    box-sizing: border-box;
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background-color: rgba(255,255,255,0.1);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.25);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    align-items: stretch;
}
.book-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
}
.book-actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 4px;
}
.btn-small {
    width: 100%;
    min-width: 100px;
    max-width: 140px;
    box-sizing: border-box;
}
@media (max-width: 600px) {
    .book-card {
        max-width: 98vw;
    }
    .book-country-select-wrapper {
        min-width: 130px;
        max-width: 180px;
        padding: 0 0.2em;
    }
    .btn-small {
        min-width: 80px;
        font-size: 0.95em;
    }
}
/* Unterstützen-Button im About-Bereich */
/* Unterstützen-Button im About-Bereich – gleiche Farbe wie "Willkommen beim Al-Zahra Verlag" */

.support-btn {
    background: linear-gradient(90deg, rgb(255, 217, 166) 0%, rgb(255, 230, 180) 100%);
    color: #222;
    border: 1.5px solid rgba(255, 217, 166, 0.7);
    border-radius: 28px;
    padding: 14px 38px;
    font-size: 1.13em;
    font-weight: 700;
    font-family: 'Arial Rounded MT Bold', Arial, Helvetica, sans-serif;
    box-shadow: 0 4px 18px 0 rgba(255, 217, 166, 0.18), 0 1.5px 6px 0 rgba(0,0,0,0.10);
    cursor: pointer;
    margin-top: 24px;
    margin-bottom: 12px;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
    display: inline-block;
    letter-spacing: 0.7px;
    outline: none;
    position: relative;
    overflow: hidden;
}
.support-btn::after {
    content: "";
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 100%);
    border-radius: 28px;
    pointer-events: none;
    z-index: 1;
}
.support-btn:hover, .support-btn:focus {
    background: linear-gradient(90deg, rgb(255, 230, 180) 0%, rgb(255, 217, 166) 100%);
    color: #111;
    box-shadow: 0 6px 24px 0 rgba(255, 217, 166, 0.28), 0 2px 8px 0 rgba(0,0,0,0.13);
    transform: translateY(-2px) scale(1.045);
    text-decoration: none;
    border-color: rgb(255, 217, 166);
}
@media (max-width: 600px) {
    .support-btn {
        padding: 10px 18px;
        font-size: 1em;
    }
}
@media (max-width: 400px) {
    .support-btn {
        padding: 8px 8px;
        font-size: 0.95em;
    }
}
@media (max-width: 600px) {
    .support-btn {
        padding: 10px 18px;
        font-size: 1em;
    }
}
@media (max-width: 400px) {
    .support-btn {
        padding: 8px 8px;
        font-size: 0.95em;
    }
}
@media (max-width: 480px) {
    .logo {
        margin-left: 12px !important;
        position: relative;
        left: 0;
        max-width: 48px;
        width: 48px;
        height: auto;
    }
}
@media (max-width: 480px) {
    .bookstore span {
        display: none !important;
    }

    .bookstore {
        margin-right: 8px !important;
    }
}
/* Responsive Layout für Datenschutzerklärung und alle legal-content Bereiche */
.content, .legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 16px;
    background: rgba(0,0,0,0.03);
    border-radius: 12px;
    box-sizing: border-box;
}

.legal-content h2, .legal-content h3, .legal-content h4 {
    word-break: break-word;
    font-size: 1.3em;
    margin-top: 1.2em;
    margin-bottom: 0.7em;
}
.legal-content h2 {
    font-size: 2em;
    margin-top: 0.5em;
}
.legal-content h3 {
    font-size: 1.5em;
}
.legal-content h4 {
    font-size: 1.1em;
}
.legal-content p, .legal-content ul, .legal-content li {
    font-size: 1em;
    line-height: 1.7;
    word-break: break-word;
    margin-bottom: 1em;
}
.legal-content a {
    word-break: break-all;
    color: #ffd700;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .content, .legal-content {
        padding: 16px 8px;
        border-radius: 8px;
    }
    .legal-content h2 {
        font-size: 1.4em;
    }
    .legal-content h3 {
        font-size: 1.15em;
    }
    .legal-content h4 {
        font-size: 1em;
    }
    .legal-content p, .legal-content ul, .legal-content li {
        font-size: 0.95em;
    }
}

@media (max-width: 400px) {
    .content, .legal-content {
        padding: 8px 2px;
        border-radius: 4px;
    }
    .legal-content h2 {
        font-size: 1.1em;
    }
    .legal-content h3 {
        font-size: 1em;
    }
    .legal-content h4 {
        font-size: 0.95em;
    }
    .legal-content p, .legal-content ul, .legal-content li {
        font-size: 0.9em;
    }
}
html {
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
}
/* Fester Button für Cookie-Einstellungen */
.cookie-settings-floating-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 10002;
    background: #ffd700;
    color: #222;
    border: none;
    border-radius: 24px;
    padding: 12px 20px;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}
.cookie-settings-floating-btn:hover {
    background: #ffe066;
}
body {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* Hintergrund über Pseudo-Element, daher hier entfernen oder nur Fallback */
    background-color: #000;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

/* Alle Texte außer Überschriften erhalten diese Schriftart */
p, span, div, a, label, input, textarea, select, button, li, td, th {
    font-family: Arial, Helvetica, sans-serif;
}

/* Globale h3-Überschriften Farbe */
h3 {
    color: rgb(255, 217, 166) !important;
}

/* Unscharfer Hintergrund */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url('assests/img/al-quran-picture.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(8px);
    transform: scale(1.05);
    /* gegen harte Ränder nach Blur */
    z-index: -1;
}

/* Optional leichte Abdunkelung für bessere Lesbarkeit */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: brightness(0.9);
    z-index: -1;
}

/* Ende Cookie-Banner */
.read-more-link {
    color: #f1c40f;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;
}

.read-more-link:hover,
.read-more-link:focus {
    color: #d4aa0a;
}
header {
    color: white;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    position: sticky;
    width: 100vw;
    margin-left: calc(-1 * (100vw - 100%) / 2);
    margin-right: calc(-1 * (100vw - 100%) / 2);
    padding-left: max(env(safe-area-inset-left, 0), 0);
    padding-right: max(env(safe-area-inset-right, 0), 0);
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.logo {
    height: 60px;
    margin-left: 10px;
    flex-shrink: 0;
    width: 60px; /* Feste Breite für Logo */
}

a {
    text-decoration: none;
}

h1 {
    font-family: 'Times New Roman', Times, serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    color: white;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-size: 24px;
    max-width: 50%;
    text-align: center;
}

/* Seiten-Titel – normales Block-Element */
h2.page-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    
}

.basket,
.bookstore {
    font-size: 18px;
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border: none;
    background-color: transparent;
    border-radius: 25px;
    transition: background-color 0.3s, color 0.3s;
    flex-shrink: 0;
    margin-left: auto; /* Schiebt Element nach rechts */
    margin-right: 10px;
}

.basket {
    position: relative;
}

.basket:hover, .bookstore:hover {
    background-color: #ddd;
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

.content {
    flex: 1 0 auto;
    max-width: 1440px;
    margin: 0 auto;
}

.main-content {
    display: flex;
    flex-direction: column;
    padding: 50px 0;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

box {
    flex: 1 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 100px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 30px;
}

box h2,
box p {
    margin: 0;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.browse-books {
    font-size: 24px;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid white;
    background-color: transparent;
    border-radius: 25px;
    transition: background-color 0.3s, color 0.3s;
}

.browse-books:hover {
    background-color: white;
    color: #333;
    text-decoration: none;
}

.books {
    display: flex;
    flex-direction: row;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center; 
}

.book-card {
    display: flex;
}

.book-cover {
    height: 350px;
}

footer {
    min-height: 144px;
    background-color: #333;
    color: white;
    display: flex;
    flex-direction: column;
    width: 100vw;
    margin-left: calc(-1 * (100vw - 100%) / 2);
    margin-right: calc(-1 * (100vw - 100%) / 2);
}

.footer-content {
    flex: 1 0 auto;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: max(env(safe-area-inset-left, 0), 0);
    padding-right: max(env(safe-area-inset-right, 0), 0);
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.webseite-infos a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    padding: 8px;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
}

.webseite-infos {
    color: white;
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

/* Trennzeichen zwischen Links standardmäßig sichtbar */
.webseite-infos {
    word-spacing: normal;
}

.webseite-infos a:hover {
    background-color: #ddd;
    color: #333;
    text-decoration: none;
}


footer p {
    margin: 0;
    font-size: 14px;
}

footer img {
    height: 32px;
}

.store-toolbar {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 200px 200px;
    gap: 12px;
    padding: 0 20px;
}

.store-toolbar input,
.store-toolbar select {
    padding: 10px 12px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(6px);
}

.store-toolbar input::placeholder { color: rgba(255,255,255,0.7); }

.books {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    width: 100%;
    padding: 0 20px;
    justify-items: center;
}

.book-card {
    width: 100%;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    background-color: rgba(255,255,255,0.1);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.25);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.book-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.35);
}

.book-cover {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.book-info {
    padding: 12px 14px;
    display: grid;
    gap: 6px;
}

.book-title {
    color: white;
    font-size: 16px;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0,0,0,1);
}

.book-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.book-price {
    color: white;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vat-label {
    display: block;
    font-size: 0.7em;
    font-weight: 300;
    opacity: 0.85;
}

.book-actions {
    display: flex;
    gap: 8px;
}

.btn-small {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    width: 120px;
    border: 2px solid white;
    font-size: 12px;
    border-radius: 20px;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.btn-small:hover {
    background-color: white;
    color: #333;
}

.cart-panel {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 320px;
    max-height: calc(100vh - 120px);
    overflow: auto;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.35);
    color: white;
    z-index: 5;
}

.cart-hidden { display: none; }

.cart-header, .cart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.cart-footer { border-top: 1px solid rgba(255,255,255,0.2); border-bottom: none; }

.cart-items { padding: 10px 14px; display: grid; gap: 10px; }

.cart-item {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 10px;
    align-items: center;
}

.cart-item-image-wrapper {
    position: relative;
    width: 48px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
}

.cart-item img {
    width: 48px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    transition: filter 0.3s ease;
}

.cart-item-image-wrapper:hover img {
    filter: brightness(0.5);
}

.cart-item-delete-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 6px;
}

.cart-item-image-wrapper:hover .cart-item-delete-icon {
    opacity: 1;
}

.cart-item-delete-icon i {
    font-size: 20px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 600;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cart-item-price {
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.remove-btn {
    background: rgba(255, 59, 48, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
}

.remove-btn:hover {
    background: rgba(255, 59, 48, 1);
    transform: scale(1.1);
}

.remove-btn:active {
    transform: scale(0.95);
}

#cartCount {
    margin-left: 8px;
    font-size: 12px;
    background: rgba(255,255,255,0.15);
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    display: inline-block;
    text-align: center;
}

.btn-back {
    margin-bottom: 30px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border: 2px solid white;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-back:hover {
    background-color: white;
    color: #333;
}

.book-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.book-detail-cover {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.book-detail-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.book-detail-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: white;
}

.book-detail-info h1 {
    font-size: 32px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,1);
}

.book-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.book-author {
    font-weight: 600;
}

.book-category {
    background: rgba(255,255,255,0.15);
    padding: 6px 12px;
    border-radius: 20px;
    width: fit-content;
}

.book-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #ffd700;
}

.book-description {
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
    text-align: justify;
}

.book-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.btn-primary, .btn-secondary {
    padding: 14px 20px;
    border: 2px solid white;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background-color: white;
    color: #333;
}

.btn-primary:hover {
    background-color: transparent;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: #333;
}

.checkout-section {
    min-height: 100vh;
}

.checkout-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: white;
}

.checkout-container h2 {
    text-align: center;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,1);
}

.checkout-summary {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.checkout-summary h3 {
    margin-top: 0;
}

.order-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.order-item:last-child {
    border-bottom: none;
}

.order-total {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(255,255,255,0.2);
}

.order-subtotal,
.order-shipping {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
    margin-top: 10px;
    font-weight: 600;
}

.checkout-form {
    display: grid;
    gap: 24px;
}

.form-section {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.form-section legend {
    color: #ffd9a6;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
    width: 100%;
}

.form-section .form-group {
    margin-bottom: 16px;
}

.form-section .form-group:last-child {
    margin-bottom: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    margin-bottom: 16px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: white;
    background: rgba(255,255,255,0.12);
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder {
    color: rgba(255,255,255,0.5);
}

.radio-group {
    display: grid;
    gap: 12px;
}

.radio-group label,
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
}

/* Checkbox-Texte kleiner auf engen Screens */
@media (max-width: 560px) {
    .checkbox-group label {
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        line-height: 1.4;
    }

    .checkbox-group input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-top: 2px;
        flex-shrink: 0;
    }
}

@media (max-width: 360px) {
    .checkbox-group label {
        font-size: 12px;
        line-height: 1.4;
        gap: 6px;
    }

    .checkbox-group input[type="checkbox"] {
        width: 15px;
        height: 15px;
        margin-top: 2px;
    }
}

@media (max-width: 330px) {
    .checkbox-group label {
        font-size: 11.5px;
        line-height: 1.35;
        gap: 5px;
    }

    .checkbox-group input[type="checkbox"] {
        width: 14px;
        height: 14px;
        margin-top: 1px;
    }
}

.checkbox-group {
    display: grid;
    gap: 12px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    margin-top: 0;
    flex-shrink: 0;
}

.checkbox-group a {
    color: #ffd700;
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: white;
}

.info-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(100,200,255,0.1);
    border-left: 4px solid #64c8ff;
    padding: 12px;
    border-radius: 6px;
    margin-top: 16px;
    font-size: 14px;
}

.info-notice i {
    color: #64c8ff;
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-checkout {
    padding: 14px 28px;
    background-color: white;
    color: #333;
    border: 2px solid white;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-checkout:hover {
    background-color: transparent;
    color: white;
}

.bank-transfer-section {
    min-height: 100vh;
}

.bank-transfer-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: white;
}

.bank-transfer-container h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #4ade80;
    text-shadow: 2px 2px 4px rgba(0,0,0,1);
}

.transfer-info {
    display: grid;
    gap: 24px;
}

.bank-details {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.2);
}

.detail-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    align-items: center;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    font-weight: 600;
    opacity: 0.8;
}

.detail-row .value {
    font-weight: 700;
    font-size: 16px;
}

.detail-row .iban {
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    color: #ffd700;
}

.detail-row .total {
    color: #4ade80;
    font-size: 20px;
}

.transfer-notice {
    background: rgba(255,215,0,0.1);
    border-left: 4px solid #ffd700;
    padding: 16px;
    border-radius: 6px;
}

.transfer-notice p {
    margin: 0;
    font-size: 14px;
}

.order-summary {
    background: rgba(255,255,255,0.05);
    padding: 16px;
    border-radius: 8px;
}

.order-summary h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.order-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.order-item:last-child {
    border-bottom: none;
}

.transfer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary, .btn-secondary {
    padding: 14px 28px;
    border: 2px solid white;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background-color: white;
    color: #333;
}

.btn-primary:hover {
    background-color: transparent;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: #333;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in;
}

.popup-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease-out;
}

.popup-content h2 {
    margin: 12px 0 4px 0;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.popup-content p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* Loader Animation */
.loader {
    margin: 0 auto 20px auto;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

/* Success Icon */
.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background: #4ade80;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    animation: scaleIn 0.5s ease-out;
}

.popup-content.success {
    border-color: #4ade80;
}

/* Error Icon */
.error-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    animation: scaleIn 0.5s ease-out;
}

.popup-content.error {
    border-color: #ef4444;
}

/* Warning Icon für leeren Warenkorb */
.warning-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background: rgba(255, 159, 10, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #FF9F0A;
    animation: scaleIn 0.5s ease-out;
}

.popup-content.warning {
    border-color: #FF9F0A;
}

.popup-content .btn-primary {
    background: rgba(139, 69, 19, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.popup-content .btn-primary:hover {
    background: rgba(139, 69, 19, 1);
    transform: scale(1.05);
}

/* Rechtliche Seiten (Impressum, Datenschutz, AGB) */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #fff;
}

.legal-content h1 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.legal-content h2 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 217, 166, 0.3);
    padding-bottom: 8px;
}

.legal-content h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 16px;
    margin-top: 18px;
    margin-bottom: 10px;
    color: rgba(255, 217, 166, 0.9);
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.legal-content a {
    color: #ffb84d;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #ffffff;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    padding-left: 20px;
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #fff;
}

.legal-content ol {
    margin: 15px 0 15px 30px;
    padding-left: 20px;
}

.legal-content ol li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #fff;
}

/* Spezielle Boxen für Kontaktdaten und Formulare */
.contact-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0;
    line-height: 1.8;
}

.form-box {
    background: rgba(255, 255, 255, 0.06);
    border: 2px dashed rgba(255,217,166,0.3);
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.form-box p {
    margin-bottom: 15px;
}

.footnote {
    font-size: 14px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Kontakt Seite */
.contact-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #fff;
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
}

/* Single Layout (nur Info, kein Formular) */
.contact-container-single {
    display: block;
    margin-bottom: 40px;
}

.contact-info-wrapper-full {
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 30px;
}

.contact-info-wrapper-full h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-wrapper-full h3 i {
    font-size: 24px;
}

/* Kontaktinformationen */
.contact-info-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 6px;
    font-weight: 700;
}

.info-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.info-content a {
    color: #ffb84d;
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

.note {
    display: block;
    margin-top: 6px;
    color: rgba(255, 217, 166, 0.7);
    font-style: italic;
    font-size: 12px;
}

/* FAQ Sektion */
.faq-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.faq-section h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-toggle {
    display: none;
}

.faq-item label {
    display: block;
    padding: 12px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.faq-item label:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255, 217, 166, 0.3);
}

.faq-toggle:checked + label {
    background: rgba(139, 69, 19, 0.3);
    border-color: rgba(255, 217, 166, 0.4);
}

.faq-toggle:checked + label::after {
    content: ' ▼';
}

.faq-item label::after {
    content: ' ▶';
    transition: transform 0.2s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0,0,0,0.2);
    border-left: 3px solid rgba(255, 217, 166, 0.3);
}

.faq-toggle:checked ~ .faq-content {
    max-height: 500px;
}

.faq-content p {
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.faq-content a {
    color: #ffb84d;
    text-decoration: none;
}

.faq-content a:hover {
    text-decoration: underline;
}

/* Mobile Responsiv */
@media (max-width: 768px) {
    .contact-info-wrapper-full {
        padding: 20px;
    }

    .contact-intro {
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .book-detail-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .book-detail-info h1 {
        font-size: 24px;
    }

    .book-detail-price {
        font-size: 22px;
    }
}

.book-cover-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 8px;
}

.coming-soon-overlay span {
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.book-card.coming-soon .book-title {
    color: rgba(255, 255, 255, 0.7);
    cursor: default;
}

.book-card.coming-soon .btn-small:disabled {
    background: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
    opacity: 0.6;
}

.donation-section {
    margin-top: 14px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}

.donation-text {
    font-size: 13px;
    line-height: 1.45;
    margin: 0 0 10px 0;
    color: rgba(255,255,255,0.9);
}

.donation-options {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.donation-choice {
    background: rgba(139, 69, 19, 0.8);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}
.donation-choice:hover { background: rgba(139, 69, 19, 1); }
.donation-choice.active { outline: 2px solid #fff; }

.donation-custom {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}
.donation-custom input {
    flex: 1;
    min-width: 160px;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.2);
    color: #fff;
}
.donation-custom button {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.12);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}
.donation-custom button:hover {
    background: rgba(255,255,255,0.2);
}

.donation-summary {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
}

.link-btn {
    background: transparent;
    border: none;
    color: #ffb84d;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    font-size: 13px;
}

/* Spendenkarte – aufgeräumtes Design */
.donation-card {
    margin-top: 16px;
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.donation-card-header {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.donation-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.18);
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 18px;
}

.donation-card-title h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.donation-card-title p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
}

/* Chips-Reihe mit kleinem Eingabefeld direkt daneben */
.donation-chips {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin: 12px 0 0 0;
}

.chip {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    backdrop-filter: blur(2px);
    height: 34px;
}
.chip:hover { background: rgba(255,255,255,0.12); }
.chip.active { background: rgba(139, 69, 19, 0.9); border-color: rgba(255,255,255,0.4); }

.chip-input {
    position: relative;
    width: 96px;          /* kleineres Eingabefeld */
    padding: 0 10px 0 24px;
    display: flex;
    align-items: center;
}

.chip-input .prefix {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
    pointer-events: none;
}

.chip-input input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    height: 100%;
    padding: 0;
    appearance: textfield;        /* Standard */
    -moz-appearance: textfield;   /* Firefox */
}
.chip-input input::-webkit-outer-spin-button,
.chip-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.chip-add {
    background: rgba(139, 69, 19, 0.85);
    border-color: rgba(255,255,255,0.25);
    height: 34px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -1px;             /* Kanten überlappen */
}
.chip-add:hover {
    background: rgba(139, 69, 19, 1);
}

/* Gruppe für Eingabe + Button (kompakt, aneinander andocken) */
.donation-custom-input-group {
    display: inline-flex;
    align-items: stretch;
    white-space: nowrap;
}

/* Linkes Element: Chip-Eingabe */
.donation-custom-input-group .chip-input {
    position: relative;
    width: 96px;
    padding: 0 10px 0 24px;
    display: flex;
    align-items: center;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;                 /* gemeinsame Kante */
    height: 34px;                    /* gleiche Höhe wie Chips */
}

/* Währungspräfix im Input */
.donation-custom-input-group .chip-input .prefix {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
    pointer-events: none;
}

/* Nummernfeld im Chip */
.donation-custom-input-group .chip-input input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    height: 100%;
    padding: 0;
    appearance: textfield;        /* Standard */
    -moz-appearance: textfield;   /* Firefox */
}
.donation-custom-input-group .chip-input input::-webkit-outer-spin-button,
.donation-custom-input-group .chip-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Rechtes Element: Hinzufügen-Button (dockt an Input) */
.donation-custom-input-group .chip-add {
    background: rgba(139, 69, 19, 0.85);
    border-color: rgba(255,255,255,0.25);
    height: 34px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -1px;             /* Kanten überlappen */
}
.donation-custom-input-group .chip-add:hover {
    background: rgba(139, 69, 19, 1);
}

/* Spenden-Zusammenfassung (donation-current) */
.donation-current {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    padding: 10px 12px;
    margin-top: 10px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.14);
}

.donation-current .tag {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(139, 69, 19, 0.18);
    border: 1px solid rgba(139, 69, 19, 0.35);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.donation-current .link-btn {
    color: #ffb84d;
    text-decoration: none;
    font-weight: 600;
    border: 1px dashed rgba(255,184,77,0.4);
    border-radius: 8px;
    padding: 6px 10px;
    background: rgba(255,184,77,0.08);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.donation-current .link-btn:hover {
    background: rgba(255,184,77,0.16);
    border-color: rgba(255,184,77,0.6);
    transform: translateY(-1px);
}

/* Mobile: Elemente untereinander */
@media (max-width: 420px) {
    .donation-current {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .donation-current .link-btn {
        align-self: flex-end;
    }
}

/* Über uns Seite */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #fff;
}

.about-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-section:last-child {
    border-bottom: none;
}

.about-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-section h3 i {
    font-size: 28px;
    color: rgba(255, 217, 166, 0.8);
}

.about-section p {
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.about-section ul {
    margin: 15px 0 15px 30px;
    padding-left: 20px;
}

.about-section ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Werte-Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.value-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
    border-color: rgba(255, 217, 166, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
}

.value-card h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.value-card p {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Team Karte */
.team-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.team-card h4 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 700;
}

.team-card .role {
    color: rgba(255, 217, 166, 0.8);
    font-style: italic;
    margin-bottom: 12px;
    font-size: 14px;
}

.team-card p {
    margin-bottom: 0;
}

/* Kontakt Section */
.contact-section {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(255, 217, 166, 0.05));
    border-radius: 12px;
    padding: 30px;
}

.contact-box {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.contact-box a {
    color: #ffb84d;
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* Mobile Responsiv */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-section h3 {
        font-size: 20px;
    }

    .about-section p {
        text-align: left;
    }

    .contact-section {
        padding: 20px;
    }
}

/* Kontaktformular spezifisch */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.2);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(255, 217, 166, 0.5);
    background: rgba(0,0,0,0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-group.checkbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.form-group.checkbox input {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.form-group.checkbox label {
    margin: 0;
    line-height: 1.2;
    cursor: pointer;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
}

.form-group.checkbox a {
    color: #ffb84d;
    text-decoration: underline;
}

.btn-submit {
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9), rgba(139, 69, 19, 0.7));
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, rgba(139, 69, 19, 1), rgba(139, 69, 19, 0.85));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #86efac;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

.form-message a {
    color: inherit;
    text-decoration: underline;
}

/* Kontakt Seite - ohne Formular */
.contact-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #fff;
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
}

/* Single Layout (nur Info, kein Formular) */
.contact-container-single {
    display: block;
    margin-bottom: 40px;
}

.contact-info-wrapper-full {
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 30px;
}

.contact-info-wrapper-full h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-wrapper-full h3 i {
    font-size: 24px;
}

/* Kontaktinformationen */
.contact-info-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 6px;
    font-weight: 700;
}

.info-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.info-content a {
    color: #ffb84d;
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

.note {
    display: block;
    margin-top: 6px;
    color: rgba(255, 217, 166, 0.7);
    font-style: italic;
    font-size: 12px;
}

/* FAQ Sektion */
.faq-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.faq-section h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-toggle {
    display: none;
}

.faq-item label {
    display: block;
    padding: 12px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.faq-item label:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255, 217, 166, 0.3);
}

.faq-toggle:checked + label {
    background: rgba(139, 69, 19, 0.3);
    border-color: rgba(255, 217, 166, 0.4);
}

.faq-toggle:checked + label::after {
    content: ' ▼';
}

.faq-item label::after {
    content: ' ▶';
    transition: transform 0.2s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0,0,0,0.2);
    border-left: 3px solid rgba(255, 217, 166, 0.3);
}

.faq-toggle:checked ~ .faq-content {
    max-height: 500px;
}

.faq-content p {
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.faq-content a {
    color: #ffb84d;
    text-decoration: none;
}

.faq-content a:hover {
    text-decoration: underline;
}

/* Mobile Responsiv */
@media (max-width: 768px) {
    .contact-info-wrapper-full {
        padding: 20px;
    }

    .contact-intro {
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .book-detail-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .book-detail-info h1 {
        font-size: 24px;
    }

    .book-detail-price {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .store-toolbar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .checkout-container {
        padding: 20px;
    }

    .detail-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .bank-transfer-container {
        padding: 20px;
    }
}

/* Tablet/Mobile Bereich - Unterstützungsseite */
@media (max-width: 860px) and (min-width: 481px) {
    .checkout-container {
        padding: 25px 15px;
    }

    .payment-info-section {
        padding: 18px;
    }

    .content, .main-content {
        padding: 20px 15px;
    }

    .payment-code {
        font-size: 0.9rem;
        padding: 10px;
    }

    .donation-info-box {
        padding: 12px;
    }

    .checkout-info {
        padding: 12px;
    }
}

/* Coming Soon Styling */
.book-card.coming-soon {
    opacity: 0.8;
    position: relative;
}

.book-cover-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 8px;
}

.coming-soon-overlay span {
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.book-card.coming-soon .book-title {
    color: rgba(255, 255, 255, 0.7);
    cursor: default;
}

.book-card.coming-soon .btn-small:disabled {
    background: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
    opacity: 0.6;
}

.donation-section {
    margin-top: 14px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}

.donation-text {
    font-size: 13px;
    line-height: 1.45;
    margin: 0 0 10px 0;
    color: rgba(255,255,255,0.9);
}

.donation-options {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.donation-choice {
    background: rgba(139, 69, 19, 0.8);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}
.donation-choice:hover { background: rgba(139, 69, 19, 1); }
.donation-choice.active { outline: 2px solid #fff; }

.donation-custom {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}
.donation-custom input {
    flex: 1;
    min-width: 160px;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.2);
    color: #fff;
}
.donation-custom button {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.12);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}
.donation-custom button:hover {
    background: rgba(255,255,255,0.2);
}

.donation-summary {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
}

.link-btn {
    background: transparent;
    border: none;
    color: #ffb84d;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    font-size: 13px;
}

/* Spendenkarte – aufgeräumtes Design */
.donation-card {
    margin-top: 16px;
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.donation-card-header {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.donation-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.18);
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 18px;
}

.donation-card-title h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.donation-card-title p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
}

/* Chips-Reihe mit kleinem Eingabefeld direkt daneben */
.donation-chips {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin: 12px 0 0 0;
}

.chip {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    backdrop-filter: blur(2px);
    height: 34px;
}
.chip:hover { background: rgba(255,255,255,0.12); }
.chip.active { background: rgba(139, 69, 19, 0.9); border-color: rgba(255,255,255,0.4); }

.chip-input {
    position: relative;
    width: 96px;          /* kleineres Eingabefeld */
    padding: 0 10px 0 24px;
    display: flex;
    align-items: center;
}

.chip-input .prefix {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
    pointer-events: none;
}

.chip-input input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    height: 100%;
    padding: 0;
    appearance: textfield;        /* Standard */
    -moz-appearance: textfield;   /* Firefox */
}
.chip-input input::-webkit-outer-spin-button,
.chip-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.chip-add {
    background: rgba(139, 69, 19, 0.85);
    border-color: rgba(255,255,255,0.25);
    height: 34px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -1px;             /* Kanten überlappen */
}
.chip-add:hover {
    background: rgba(139, 69, 19, 1);
}

/* Gruppe für Eingabe + Button (kompakt, aneinander andocken) */
.donation-custom-input-group {
    display: inline-flex;
    align-items: stretch;
    white-space: nowrap;
}

/* Linkes Element: Chip-Eingabe */
.donation-custom-input-group .chip-input {
    position: relative;
    width: 96px;
    padding: 0 10px 0 24px;
    display: flex;
    align-items: center;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;                 /* gemeinsame Kante */
    height: 34px;                    /* gleiche Höhe wie Chips */
}

/* Währungspräfix im Input */
.donation-custom-input-group .chip-input .prefix {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
    pointer-events: none;
}

/* Nummernfeld im Chip */
.donation-custom-input-group .chip-input input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    height: 100%;
    padding: 0;
    appearance: textfield;        /* Standard */
    -moz-appearance: textfield;   /* Firefox */
}
.donation-custom-input-group .chip-input input::-webkit-outer-spin-button,
.donation-custom-input-group .chip-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Rechtes Element: Hinzufügen-Button (dockt an Input) */
.donation-custom-input-group .chip-add {
    background: rgba(139, 69, 19, 0.85);
    border-color: rgba(255,255,255,0.25);
    height: 34px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -1px;             /* Kanten überlappen */
}
.donation-custom-input-group .chip-add:hover {
    background: rgba(139, 69, 19, 1);
}

/* Spenden-Zusammenfassung (donation-current) */
.donation-current {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    padding: 10px 12px;
    margin-top: 10px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.14);
}

.donation-current .tag {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(139, 69, 19, 0.18);
    border: 1px solid rgba(139, 69, 19, 0.35);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.donation-current .link-btn {
    color: #ffb84d;
    text-decoration: none;
    font-weight: 600;
    border: 1px dashed rgba(255,184,77,0.4);
    border-radius: 8px;
    padding: 6px 10px;
    background: rgba(255,184,77,0.08);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.donation-current .link-btn:hover {
    background: rgba(255,184,77,0.16);
    border-color: rgba(255,184,77,0.6);
    transform: translateY(-1px);
}

/* Mobile: Elemente untereinander */
@media (max-width: 420px) {
    .donation-current {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .donation-current .link-btn {
        align-self: flex-end;
    }
}

/* Über uns Seite */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #fff;
}

.about-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-section:last-child {
    border-bottom: none;
}

.about-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-section h3 i {
    font-size: 28px;
    color: rgba(255, 217, 166, 0.8);
}

.about-section p {
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.about-section ul {
    margin: 15px 0 15px 30px;
    padding-left: 20px;
}

.about-section ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Werte-Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.value-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
    border-color: rgba(255, 217, 166, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
}

.value-card h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.value-card p {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Team Karte */
.team-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.team-card h4 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 700;
}

.team-card .role {
    color: rgba(255, 217, 166, 0.8);
    font-style: italic;
    margin-bottom: 12px;
    font-size: 14px;
}

.team-card p {
    margin-bottom: 0;
}

/* Kontakt Section */
.contact-section {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(255, 217, 166, 0.05));
    border-radius: 12px;
    padding: 30px;
}

.contact-box {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.contact-box a {
    color: #ffb84d;
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* Mobile Responsiv */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-section h3 {
        font-size: 20px;
    }

    .about-section p {
        text-align: left;
    }

    .contact-section {
        padding: 20px;
    }
}

/* Kontaktformular spezifisch */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.2);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(255, 217, 166, 0.5);
    background: rgba(0,0,0,0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.form-group.checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.form-group.checkbox label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
}

.form-group.checkbox a {
    color: #ffb84d;
    text-decoration: underline;
}

.btn-submit {
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9), rgba(139, 69, 19, 0.7));
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, rgba(139, 69, 19, 1), rgba(139, 69, 19, 0.85));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #86efac;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

.form-message a {
    color: inherit;
    text-decoration: underline;
}

/* Kontakt Seite - ohne Formular */
.contact-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #fff;
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
}

/* Single Layout (nur Info, kein Formular) */
.contact-container-single {
    display: block;
    margin-bottom: 40px;
}

.contact-info-wrapper-full {
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 30px;
}

.contact-info-wrapper-full h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-wrapper-full h3 i {
    font-size: 24px;
}

/* Kontaktinformationen */
.contact-info-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 6px;
    font-weight: 700;
}

.info-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.info-content a {
    color: #ffb84d;
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

.note {
    display: block;
    margin-top: 6px;
    color: rgba(255, 217, 166, 0.7);
    font-style: italic;
    font-size: 12px;
}

/* FAQ Sektion */
.faq-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.faq-section h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-toggle {
    display: none;
}

.faq-item label {
    display: block;
    padding: 12px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.faq-item label:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255, 217, 166, 0.3);
}

.faq-toggle:checked + label {
    background: rgba(139, 69, 19, 0.3);
    border-color: rgba(255, 217, 166, 0.4);
}

.faq-toggle:checked + label::after {
    content: ' ▼';
}

.faq-item label::after {
    content: ' ▶';
    transition: transform 0.2s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0,0,0,0.2);
    border-left: 3px solid rgba(255, 217, 166, 0.3);
}

.faq-toggle:checked ~ .faq-content {
    max-height: 500px;
}

.faq-content p {
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.faq-content a {
    color: #ffb84d;
    text-decoration: none;
}

.faq-content a:hover {
    text-decoration: underline;
}

/* Mobile Responsiv */
@media (max-width: 768px) {
    .contact-info-wrapper-full {
        padding: 20px;
    }

    .contact-intro {
        font-size: 14px;
    }
}
/* ========================================
   UMFASSENDE RESPONSIVE REGELN FÜR ALLE BILDSCHIRMGRÖSSEN
   ======================================== */

/* Tablets und kleinere Bildschirme (768px und kleiner) */
@media (max-width: 768px) {
    /* Header */
    header {
        height: 60px;
        padding: 0 12px;
    }

    .logo {
        height: 48px;
        width: 48px;
        margin-left: 5px;
    }

    h1.header-title {
        font-size: 20px;
        max-width: 45%;
    }

    .basket, .bookstore {
        font-size: 16px;
        padding: 6px 12px;
    }

    #cartCount {
        font-size: 11px;
        padding: 2px 6px;
        min-width: 20px;
    }
}

/* Checkout Optimierung (774px und kleiner) */
@media (max-width: 774px) {
    .checkout-container {
        padding: 20px 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-group.checkbox {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .form-group.checkbox input {
        flex-shrink: 0;
        margin-top: 0;
    }

    .form-group.checkbox label {
        line-height: 1.4;
    }

    .checkbox-group label {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        line-height: 1.3;
    }

    .checkbox-group input[type="checkbox"] {
        flex-shrink: 0;
        margin-top: 2px;
    }

    .checkout-summary {
        padding: 15px;
    }

    .order-item {
        font-size: 14px;
    }
}

/* Footer Optimierung (670px und kleiner) */
@media (max-width: 670px) {
    .footer-content {
        padding: 15px 10px;
        gap: 8px;
    }

    .webseite-infos {
        font-size: 13px;
        gap: 3px;
        max-width: 100%;
    }

    .webseite-infos a {
        font-size: 12px;
        padding: 6px;
        white-space: nowrap;
    }

    footer img {
        height: 28px;
    }

    footer p {
        font-size: 12px;
    }
}

/* Kleine Tablets (600px und kleiner) */
@media (max-width: 600px) {
    /* Header */
    header {
        height: 58px;
        padding: 0 10px;
    }

    .logo {
        height: 44px;
        width: 44px;
    }

    h1.header-title {
        font-size: 18px;
        max-width: 40%;
    }

    .basket, .bookstore {
        font-size: 15px;
        padding: 5px 11px;
    }
}

/* Schmale Screens (560px und kleiner) – Radio-Gruppen besser umbrechen */
@media (max-width: 560px) {
    .radio-group {
        display: grid;
        gap: 10px;
    }

    .radio-group label {
        align-items: flex-start;
        gap: 8px;
        line-height: 1.3;
    }

    .radio-group input[type="radio"] {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    /* Klarna-Textblock: besser umbrechen, kleineres Gap */
    .radio-group label span {
        display: inline-flex;
        flex-wrap: wrap;
        row-gap: 4px;
        column-gap: 6px;
    }

    /* Klarna Badge und Info kleiner halten */
    .radio-group label span[style*="font-size: 11px"] {
        font-size: 10px !important;
        padding: 1px 4px !important;
    }
}

/* Smartphones (480px und kleiner) */
@media (max-width: 480px) {
    /* Footer - Entferne feste Höhe */
    footer {
        min-height: auto;
        height: auto;
    }

    /* Header */
    header {
        height: 55px;
        padding: 0 5px;
    }

    .logo {
        height: 40px;
        width: 40px;
        margin-left: 2px;
    }

    h1.header-title {
        font-size: 15px;
        left: 50%;
        max-width: 35%;
    }

    .basket, .bookstore {
        font-size: 14px;
        padding: 5px 8px;
        margin-right: 2px;
    }

    #cartCount {
        font-size: 10px;
        padding: 2px 5px;
        min-width: 18px;
    }

    /* Content Bereiche */
    .content, .main-content {
        padding: 15px 10px;
    }

    /* Checkout Seite */
    .checkout-container {
        padding: 15px 8px;
    }

    .checkout-summary {
        padding: 10px;
        margin-bottom: 12px;
    }

    .checkout-summary h3 {
        font-size: 16px;
    }

    .order-item {
        font-size: 13px;
        gap: 8px;
    }

    .order-total {
        font-size: 16px;
    }

    .form-section {
        padding: 12px;
        margin-bottom: 15px;
    }

    .form-section legend {
        font-size: 15px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 14px;
        padding: 8px 10px;
    }

    .form-group.checkbox {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .form-group.checkbox input {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .form-group.checkbox label {
        font-size: 13px;
        line-height: 1.3;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .btn-checkout {
        font-size: 15px;
        padding: 12px 20px;
        width: 100%;
    }

    /* Warenkorb Panel */
    .cart-panel {
        width: calc(100% - 10px);
        max-width: 100%;
        right: 5px;
        left: 5px;
        top: 60px;
        max-height: calc(100vh - 80px);
    }

    .cart-item {
        gap: 8px;
        grid-template-columns: 40px 1fr auto;
    }

    .cart-item img {
        width: 40px;
        height: 54px;
    }

    .cart-item-title {
        font-size: 13px;
    }

    .cart-item-price {
        font-size: 13px;
    }

    .cart-item-actions {
        align-items: flex-end;
        justify-content: flex-end;
    }

    .remove-btn {
        width: 22px;
        height: 22px;
        font-size: 16px;
    }

    /* Donation Widget */
    .donation-card {
        padding: 12px;
    }

    .donation-card-title h4 {
        font-size: 15px;
    }

    .donation-card-title p {
        font-size: 12px;
    }

    .donation-chips {
        gap: 6px;
        flex-wrap: wrap;
    }

    .chip {
        font-size: 12px;
        padding: 6px 10px;
        height: 32px;
    }

    .chip-input {
        width: 80px;
        font-size: 12px;
    }

    .chip-input input {
        font-size: 12px;
    }

    .chip-add {
        font-size: 12px;
        padding: 6px 8px;
        height: 32px;
    }

    /* Popups */
    .popup-content {
        padding: 30px 20px;
        max-width: 90%;
        margin: 0 15px;
    }

    .popup-content h2 {
        font-size: 20px;
    }

    .success-icon,
    .error-icon,
    .warning-icon {
        width: 60px;
        height: 60px;
        font-size: 35px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        padding: 15px 8px;
        font-size: 12px;
        gap: 8px;
    }

    .footer-content img {
        height: 36px;
    }

    .webseite-infos {
        flex-direction: column;
        gap: 6px;
        font-size: 12px;
        font-size: 0; /* Versteckt Textknoten wie | */
    }

    .webseite-infos a {
        font-size: 12px;
        padding: 5px;
        display: block;
        text-align: center;
    }

    /* Legal Pages */
    .legal-content {
        padding: 25px 12px;
    }

    .legal-content h2.page-title {
        font-size: 24px;
    }

    .legal-content h3 {
        font-size: 15px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 13px;
    }

    .contact-box,
    .form-box {
        padding: 12px 15px;
    }

    /* Über uns */
    .about-content {
        padding: 30px 12px;
    }

    .about-section h3 {
        font-size: 18px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .value-card {
        padding: 15px;
    }

    .value-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        padding: 15px;
    }

    /* Kontakt */
    .contact-page-content {
        padding: 30px 12px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info-wrapper-full {
        padding: 15px;
    }

    .contact-info-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .info-icon {
        margin: 0 auto;
    }

    .contact-map-section {
        padding: 15px;
    }

    .faq-item label {
        font-size: 13px;
        padding: 10px 12px;
    }

    .faq-content p {
        font-size: 13px;
        padding: 10px 12px;
    }

    /* Welcome Box */
    .welcome {
        padding: 30px 15px;
    }

    .welcome h2 {
        font-size: 20px;
    }

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

    .browse-books {
        font-size: 14px;
        padding: 10px 20px;
    }

    /* Buch Detail */
    .book-detail-container {
        grid-template-columns: 1fr;
        padding: 15px 10px;
        gap: 20px;
    }

    .book-detail-image {
        max-width: 100%;
    }

    /* Spenden-Elemente */
    .donation-choice {
        padding: 6px 10px;
        font-size: 13px;
    }

    .donation-custom-input-group .chip-input {
        width: 80px;
        padding: 0 8px 0 20px;
        height: 30px;
    }

    .donation-custom-input-group .chip-input .prefix {
        left: 8px;
        font-size: 13px;
    }

    .donation-custom-input-group .chip-input input {
        font-size: 13px;
    }

    .donation-custom-input-group .chip-add {
        height: 30px;
        padding: 6px 10px;
        font-size: 13px;
    }
}

/* Sehr kleine Smartphones (360px und kleiner) */
@media (max-width: 360px) {
    /* Header */
    header {
        height: 50px;
        padding: 0 4px;
    }

    .logo {
        height: 35px;
        width: 35px;
        margin-left: 0;
    }

    h1.header-title {
        font-size: 13px;
        max-width: 30%;
        white-space: normal;
        line-height: 1.1;
    }

    .basket, .bookstore {
        padding: 4px 6px;
        margin-right: 0;
    }

    #cartCount {
        position: absolute;
        top: -4px;
        right: -4px;
        font-size: 7px;
        padding: 1px 3px;
        min-width: 8px;
        height: 10px;
        line-height: 10px;
        margin-left: 0;
        background: #ff4444;
        border-radius: 50%;
        border: 1px solid white;
    }

    /* Warenkorb Panel */
    .cart-panel {
        width: calc(100% - 8px);
        right: 4px;
        left: 4px;
        top: 55px;
        max-height: calc(100vh - 70px);
    }

    /* Content */
    .content, .main-content {
        padding: 12px 8px;
    }

    /* Toolbar */
    .store-toolbar {
        gap: 6px;
    }

    .store-toolbar input,
    .store-toolbar select {
        font-size: 13px;
        padding: 7px 8px;
    }

    /* Checkout */
    .checkout-container {
        padding: 10px 6px;
    }

    .checkout-summary {
        padding: 8px;
    }

    .checkout-summary h3 {
        font-size: 14px;
    }

    .order-item {
        font-size: 12px;
        gap: 6px;
    }

    .order-total {
        font-size: 15px;
    }

    .form-section {
        padding: 10px;
    }

    .form-section legend {
        font-size: 14px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 13px;
        padding: 7px 8px;
    }

    .form-group.checkbox {
        display: flex;
        align-items: center;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .form-group.checkbox input {
        width: 14px;
        height: 14px;
        margin: 0;
        flex-shrink: 0;
    }

    .form-group.checkbox label {
        font-size: 12px;
        margin: 0;
        line-height: 1.2;
    }

    .btn-checkout {
        font-size: 14px;
        padding: 10px 16px;
    }

    /* Warenkorb */
    .cart-item {
        grid-template-columns: 35px 1fr auto;
    }

    .cart-item img {
        width: 35px;
        height: 47px;
    }

    .cart-item-title {
        font-size: 12px;
    }

    .cart-item-price {
        font-size: 12px;
        min-width: 55px;
    }

    .cart-item-actions {
        align-items: flex-end;
        justify-content: flex-end;
    }

    .remove-btn {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }

    /* Donation */
    .donation-card {
        padding: 10px;
    }

    .donation-icon {
        width: 35px;
        height: 35px;
        font-size: 15px;
    }

    .donation-card-title h4 {
        font-size: 14px;
    }

    .donation-card-title p {
        font-size: 11px;
    }

    .chip {
        font-size: 11px;
        padding: 5px 8px;
        height: 28px;
    }

    .chip-input {
        width: 70px;
        padding: 0 8px 0 20px;
    }

    .chip-input input {
        font-size: 11px;
    }

    .chip-add {
        font-size: 11px;
        padding: 5px 7px;
        height: 28px;
    }

    /* Popup */
    .popup-content {
        padding: 25px 15px;
    }

    .popup-content h2 {
        font-size: 18px;
    }

    .popup-content p {
        font-size: 13px;
    }

    /* Footer */
    .footer-content {
        padding: 12px 6px;
        font-size: 11px;
        gap: 6px;
    }

    .footer-content img {
        height: 32px;
    }

    .webseite-infos {
        font-size: 0; /* Versteckt Textknoten wie | */
        gap: 5px;
    }

    .webseite-infos a {
        font-size: 11px;
        padding: 4px;
    }

    footer p {
        font-size: 11px;
    }

    /* Legal Pages */
    .legal-content {
        padding: 20px 10px;
    }

    .legal-content h2.page-title {
        font-size: 22px;
    }

    .legal-content h3 {
        font-size: 14px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 12px;
    }

    .contact-box,
    .form-box {
        padding: 10px 12px;
    }

    /* Über uns */
    .about-content {
        padding: 25px 10px;
    }

    .about-section h3 {
        font-size: 16px;
    }

    .value-card {
        padding: 12px;
    }

    .value-card h4 {
        font-size: 15px;
    }

    .value-card p {
        font-size: 12px;
    }

    .team-card {
        padding: 12px;
    }

    /* Kontakt */
    .contact-page-content {
        padding: 25px 10px;
    }

    .contact-info-wrapper-full {
        padding: 12px;
    }

    .contact-info-item {
        padding: 12px 0;
    }

    .info-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .info-content h4 {
        font-size: 14px;
    }

    .info-content p {
        font-size: 12px;
    }

    .contact-map-section {
        padding: 12px;
    }

    .faq-section h4 {
        font-size: 15px;
    }

    .faq-item label {
        font-size: 12px;
        padding: 8px 10px;
    }

    .faq-content p {
        font-size: 12px;
        padding: 8px 10px;
    }

    /* Buch Detail */
    .book-detail-container {
        padding: 12px 8px;
    }

    .book-detail-info h1 {
        font-size: 20px;
    }

    .book-detail-price {
        font-size: 22px;
    }

    .book-detail-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        font-size: 13px;
        padding: 10px 15px;
    }

    /* Spenden-Elemente */
    .donation-choice {
        padding: 5px 8px;
        font-size: 12px;
    }

    .donation-custom-input-group .chip-input {
        width: 70px;
        padding: 0 6px 0 18px;
        height: 28px;
    }

    .donation-custom-input-group .chip-input .prefix {
        left: 6px;
        font-size: 12px;
    }

    .donation-custom-input-group .chip-input input {
        font-size: 12px;
    }

    .donation-custom-input-group .chip-add {
        height: 28px;
        padding: 5px 8px;
        font-size: 12px;
    }
}

/* Extra kleine Bildschirme (300px und kleiner) */
@media (max-width: 300px) {
    /* Header */
    header {
        height: 45px;
        padding: 0 3px;
    }

    .logo {
        height: 30px;
        width: 30px;
        margin-left: 0;
    }

    h1.header-title {
        font-size: 10px;
        max-width: 28%;
        white-space: normal;
        line-height: 1.1;
    }

    .basket, .bookstore {
        padding: 3px 5px;
        margin-right: 0;
    }

    #cartCount {
        position: absolute;
        top: -3px;
        right: 0;
        font-size: 6px;
        padding: 1px 2px;
        min-width: 6px;
        height: 8px;
        line-height: 8px;
        margin-left: 0;
        background: #ff4444;
        border-radius: 50%;
        border: 1px solid white;
    }

    /* Warenkorb Panel */
    .cart-panel {
        width: calc(100% - 6px);
        right: 3px;
        left: 3px;
        top: 50px;
        max-height: calc(100vh - 60px);
    }

    /* Content */
    .content, .main-content {
        padding: 10px 5px;
    }


    /* Toolbar */
    .store-toolbar {
        gap: 5px;
    }

    .store-toolbar input,
    .store-toolbar select {
        font-size: 12px;
        padding: 6px;
    }

    /* Checkout */
    .checkout-container {
        padding: 8px 4px;
    }

    .checkout-summary {
        padding: 6px;
        margin-bottom: 8px;
    }

    .checkout-summary h3 {
        font-size: 13px;
    }

    .order-item {
        font-size: 11px;
        gap: 5px;
    }

    .order-total {
        font-size: 14px;
    }

    .form-section {
        padding: 8px;
        margin-bottom: 10px;
    }

    .form-section legend {
        font-size: 13px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 12px;
        padding: 6px;
    }

    .form-group.checkbox {
        gap: 5px;
    }

    .form-group.checkbox input {
        width: 12px;
        height: 12px;
    }

    .form-group.checkbox label {
        font-size: 11px;
        line-height: 1.2;
    }

    .btn-checkout {
        font-size: 13px;
        padding: 8px 12px;
    }

    /* Warenkorb */
    .cart-panel {
        width: calc(100% - 10px);
        right: 5px;
        left: 5px;
        top: 50px;
        max-height: calc(100vh - 60px);
    }

    .cart-header h3 {
        font-size: 14px;
    }

    .cart-item {
        grid-template-columns: 30px 1fr auto;
        gap: 5px;
    }

    .cart-item-image-wrapper {
        width: 30px;
        height: 40px;
    }

    .cart-item img {
        width: 30px;
        height: 40px;
    }

    .cart-item-title {
        font-size: 11px;
    }

    .cart-item-price {
        font-size: 11px;
        min-width: 50px;
    }

    .cart-item-actions {
        align-items: flex-end;
        justify-content: flex-end;
    }

    .remove-btn {
        width: 18px;
        height: 18px;
        font-size: 12px;
    }

    .cart-total {
        font-size: 13px;
    }

    /* Donation Widget */
    .donation-card {
        padding: 8px;
    }

    .donation-card-header {
        grid-template-columns: 30px 1fr;
        gap: 8px;
    }

    .donation-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .donation-card-title h4 {
        font-size: 13px;
    }

    .donation-card-title p {
        font-size: 10px;
    }

    .donation-chips {
        gap: 5px;
        flex-wrap: wrap;
    }

    .chip {
        font-size: 10px;
        padding: 4px 6px;
        height: 26px;
    }

    .chip-input {
        width: 60px;
        padding: 0 6px 0 18px;
    }

    .chip-input .prefix {
        left: 6px;
        font-size: 10px;
    }

    .chip-input input {
        font-size: 10px;
    }

    .chip-add {
        font-size: 10px;
        padding: 4px 6px;
        height: 26px;
    }

    /* Spenden-Elemente */
    .donation-choice {
        padding: 4px 6px;
        font-size: 10px;
    }

    .donation-custom-input-group .chip-input {
        width: 60px;
        padding: 0 5px 0 16px;
        height: 26px;
    }

    .donation-custom-input-group .chip-input .prefix {
        left: 5px;
        font-size: 10px;
    }

    .donation-custom-input-group .chip-input input {
        font-size: 10px;
    }

    .donation-custom-input-group .chip-add {
        height: 26px;
        padding: 4px 6px;
        font-size: 10px;
    }

    .donation-current .tag {
        font-size: 11px;
        padding: 4px 8px;
    }

    /* Popup */
    .popup-overlay {
        padding: 10px;
    }

    .popup-content {
        padding: 20px 12px;
        max-width: 95%;
    }

    .popup-content h2 {
        font-size: 16px;
    }

    .popup-content p {
        font-size: 12px;
    }

    .success-icon,
    .error-icon,
    .warning-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    /* Footer */
    .footer-content {
        padding: 10px 4px;
        font-size: 10px;
        gap: 6px;
    }

    .footer-content img {
        height: 28px;
    }

    .webseite-infos {
        font-size: 0; /* Versteckt Textknoten wie | */
        gap: 4px;
    }

    .webseite-infos a {
        font-size: 10px;
        padding: 3px;
    }

    footer p {
        font-size: 10px;
    }

    /* Legal Pages */
    .legal-content {
        padding: 15px 8px;
    }

    .legal-content h2.page-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .legal-content h3 {
        font-size: 13px;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 11px;
        line-height: 1.5;
    }

    .contact-box,
    .form-box {
        padding: 8px 10px;
    }

    /* Über uns */
    .about-content {
        padding: 20px 8px;
    }

    .about-section {
        margin-bottom: 25px;
    }

    .about-section h3 {
        font-size: 14px;
    }

    .about-section p {
        font-size: 11px;
    }

    .value-card {
        padding: 10px;
    }

    .value-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .value-card h4 {
        font-size: 13px;
    }

    .value-card p {
        font-size: 11px;
    }

    .team-card {
        padding: 10px;
    }

    .team-card h4 {
        font-size: 15px;
    }

    .team-card .role {
        font-size: 12px;
    }

    /* Kontakt */
    .contact-page-content {
        padding: 20px 8px;
    }

    h2.page-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .contact-intro p {
        font-size: 12px;
    }

    .contact-info-wrapper-full {
        padding: 10px;
    }

    .contact-info-wrapper-full h3 {
        font-size: 16px;
    }

    .contact-info-item {
        padding: 10px 0;
    }

    .info-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .info-content h4 {
        font-size: 13px;
    }

    .info-content p {
        font-size: 11px;
    }

    .contact-map-section {
        padding: 10px;
    }

    .contact-map-section h3 {
        font-size: 16px;
    }

    .contact-map-section > p {
        font-size: 12px;
    }

    .faq-section h4 {
        font-size: 14px;
    }

    .faq-item {
        margin-bottom: 8px;
    }

    .faq-item label {
        font-size: 11px;
        padding: 7px 8px;
    }

    .faq-content p {
        font-size: 11px;
        padding: 7px 8px;
    }

    /* Welcome Box */
    .welcome {
        padding: 20px 10px;
    }

    .welcome h2 {
        font-size: 16px;
    }

    .welcome p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .browse-books {
        font-size: 12px;
        padding: 8px 16px;
    }

    /* Buch Detail */
    .book-detail-container {
        padding: 12px 8px;
    }

    .book-detail-info h1 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .book-detail-meta {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .book-detail-price {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .book-description {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 12px;
        padding: 8px 12px;
    }

    /* Coming Soon Overlay */
    .coming-soon-overlay {
        padding: 10px;
    }

    .coming-soon-overlay span {
        font-size: 11px;
        padding: 15px;
    }

    /* Quantity Controls */
    .quantity-controls button {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    .quantity-controls input {
        width: 35px;
        font-size: 12px;
    }
}

/* ==================== Cookie Banner ==================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.98), rgba(30, 30, 50, 0.98));
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h3 {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-banner-text h3 i {
    font-size: 22px;
    color: #ffd700;
}

.cookie-banner-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text .cookie-link {
    color: #ffd700;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner-text .cookie-link:hover {
    color: #ffed4e;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.cookie-accept {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
}

.cookie-accept:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.cookie-reject {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
}

.cookie-reject:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.cookie-settings {
    background: transparent;
    color: #ffd700;
    border: 1px solid #ffd700;
}

.cookie-settings:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffed4e;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: linear-gradient(135deg, #1a1a2e, #252540);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-modal-header h3 {
    color: #ffd700;
    font-size: 22px;
    margin: 0;
    font-weight: 700;
}

.cookie-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    line-height: 1;
}

.cookie-modal-close:hover {
    color: #fff;
}

.cookie-modal-body {
    padding: 24px;
}

.cookie-category {
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cookie-category h4 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.cookie-category p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.4s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background-color: #ffd700;
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-switch input:disabled + .cookie-slider {
    background-color: #4a4a4a;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .cookie-banner-text {
        min-width: 0;
    }

    .cookie-banner-text h3 {
        font-size: 18px;
    }

    .cookie-banner-text p {
        font-size: 13px;
    }

    .cookie-banner-buttons {
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
        min-width: 0;
        font-size: 13px;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 16px;
    }

    .cookie-banner-text h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .cookie-banner-text p {
        font-size: 12px;
    }

    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        font-size: 12px;
        padding: 10px;
    }

    .cookie-modal-content {
        border-radius: 12px;
    }

    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 16px;
    }

    .cookie-modal-header h3 {
        font-size: 18px;
    }

    .cookie-category {
        padding: 12px;
    }

    .cookie-category h4 {
        font-size: 14px;
    }

    .cookie-category p {
        font-size: 12px;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }
}

/* Cookie-Einstellungen Link in Footer */
.cookie-settings-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease;
}

.cookie-settings-link:hover {
    color: #ffd700 !important;
}

.cookie-settings-link i {
    font-size: 14px;
}

/* Extra kleine Smartphones (330px und kleiner) - Checkout Optimierungen */
@media (max-width: 330px) {
    /* Header kompakter */
    header {
        height: 45px;
        padding: 0 2px;
    }

    .logo {
        height: 30px;
        width: 30px;
    }

    h1.header-title {
        font-size: 11px;
        max-width: 35%;
    }

    .basket, .bookstore {
        padding: 3px 5px;
    }

    /* Checkout Container */
    .checkout-container {
        padding: 8px 4px;
    }

    .checkout-container h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    /* Checkout Summary */
    .checkout-summary {
        padding: 6px;
        margin-bottom: 12px;
    }

    .checkout-summary h3 {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .order-item {
        font-size: 11px;
        gap: 4px;
        padding: 6px 4px;
    }

    .order-total {
        font-size: 14px;
        padding: 8px 4px;
    }

    /* Form Sections */
    .form-section {
        padding: 8px 6px;
        margin-bottom: 12px;
    }

    .form-section legend {
        font-size: 13px;
        padding: 0 6px;
    }

    /* Form Groups */
    .form-group {
        margin-bottom: 10px;
    }

    .form-group label {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 12px;
        padding: 6px 7px;
        min-height: 32px;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .form-row .form-group {
        width: 100%;
    }

    /* Radio Buttons - Kompakter */
    .radio-group {
        gap: 8px;
    }

    .radio-group label {
        font-size: 11px;
        padding: 6px 8px;
        word-break: break-word;
    }

    .radio-group label input[type="radio"] {
        flex-shrink: 0;
        width: 14px;
        height: 14px;
    }

    /* Klarna Badge kleiner */
    .radio-group label span[style*="font-size: 11px"] {
        font-size: 9px !important;
        padding: 1px 4px !important;
    }

    /* Checkbox */
    .form-group.checkbox {
        display: flex;
        align-items: center;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .form-group.checkbox input {
        width: 13px;
        margin: 0;
        flex-shrink: 0;
        height: 13px;
        margin: 0;
        flex-shrink: 0;
    }

    .form-group.checkbox label {
        font-size: 11px;
        margin: 0;
        line-height: 1.2;
        margin: 0;
        line-height: 1.2;
    }

    /* Donation Card */
    .donation-card {
        padding: 10px 6px;
    }

    .donation-card-title h4 {
        font-size: 13px;
    }

    .donation-card-title p {
        font-size: 10px;
        line-height: 1.3;
    }

    .donation-icon {
        font-size: 16px;
        width: 32px;
        height: 32px;
    }

    .donation-chips {
        gap: 6px;
        justify-content: center;
    }

    .donation-chips .chip {
        font-size: 11px;
        padding: 5px 8px;
        min-width: auto;
    }

    .donation-custom-input-group {
        width: auto;
        gap: 4px;
        margin: 0 auto;
    }

    .donation-custom-input-group .chip-input {
        width: 70px;
        padding: 0 6px 0 18px;
        height: 28px;
    }

    .donation-custom-input-group .chip-input .prefix {
        left: 6px;
        font-size: 12px;
    }

    .donation-custom-input-group .chip-input input {
        font-size: 12px;
    }

    .donation-custom-input-group .chip-add {
        height: 28px;
        padding: 5px 8px;
        font-size: 11px;
    }

    .donation-current {
        gap: 6px;
    }

    .donation-current .tag {
        font-size: 11px;
        padding: 4px 8px;
    }

    .donation-current .link-btn {
        font-size: 11px;
    }

    /* Submit Button */
    .btn-checkout {
        font-size: 13px;
        padding: 9px 14px;
        min-height: 38px;
    }

    /* Content Padding */
    .content, .main-content {
        padding: 10px 6px;
    }

    /* Cart Panel */
    .cart-panel {
        width: calc(100% - 6px);
        right: 3px;
        left: 3px;
    }

    .cart-item {
        grid-template-columns: 32px 1fr auto;
        gap: 6px;
    }

    .cart-item img {
        width: 32px;
        height: 43px;
    }

    .cart-item-title {
        font-size: 11px;
    }

    .cart-item-price {
        font-size: 11px;
        min-width: 50px;
    }

    .qty-controls button {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .qty-controls input {
        width: 28px;
        font-size: 11px;
    }
}
/* ============== DONATION/UNTERSTÜTZUNG STYLES ============== */

.donation-info-box {
    background: rgba(255, 217, 166, 0.1);
    border-left: 3px solid #ffd9a6;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.6;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.amount-btn {
    padding: 12px 15px;
    border: 2px solid rgba(255, 217, 166, 0.3);
    background: transparent;
    color: #fff;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.amount-btn:hover {
    border-color: #ffd9a6;
    background: rgba(255, 217, 166, 0.15);
}

.amount-btn.active {
    background: #ffd9a6;
    border-color: #ffd9a6;
    color: #000;
}

.custom-amount {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 217, 166, 0.2);
}

.custom-amount label {
    color: #fff;
    font-weight: 500;
    margin: 0;
}

.custom-amount input {
    padding: 10px 12px;
    border: 2px solid rgba(255, 217, 166, 0.3);
    background: transparent;
    color: #fff;
    border-radius: 4px;
    font-size: 1rem;
}

.custom-amount input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.custom-amount input:focus {
    outline: none;
    border-color: #ffd9a6;
    background: rgba(255, 217, 166, 0.05);
}

#selectedAmountDisplay {
    color: #ffd9a6;
    font-size: 1.1rem;
}

.checkout-info {
    background: rgba(255, 217, 166, 0.1);
    border-left: 3px solid #ffd9a6;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    color: #fff;
}

.checkout-info p {
    margin: 0 0 10px 0;
    font-weight: 600;
}

.checkout-info ul {
    margin: 10px 0 0 0;
    padding-left: 25px;
    line-height: 1.8;
}

.checkout-info li {
    margin: 5px 0;
}

.checkout-btn {
    background: #ffd9a6;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    color: #000;
}

.checkout-btn:hover:not(:disabled) {
    background: #ffcc8a;
    transform: translateY(-1px);
}

.checkout-btn:disabled {
    background: rgba(255, 217, 166, 0.3);
    cursor: not-allowed;
    opacity: 0.6;
}

/* ============== PAYMENT INFO SECTION STYLES ============== */

.payment-info-section {
    background: rgba(255, 217, 166, 0.08);
    border-left: 3px solid #ffd9a6;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.payment-info-section h3 {
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffd9a6 !important;
}

.payment-info-section h3 i {
    font-size: 1.2rem;
}

.payment-details {
    color: #fff;
}

.payment-details p {
    margin: 0 0 8px 0;
    font-weight: 500;
    color: #fff;
}

.payment-code {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    word-break: break-all;
    color: #ffd9a6;
    border-left: 2px solid #ffd9a6;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-code-container {
    display: flex;
    align-items: stretch;
}

.copy-btn {
    background: transparent;
    border: none;
    color: #ffd9a6;
    padding: 0 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    opacity: 0.6;
}

.copy-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-btn i {
    font-size: 0.9rem;
}


