/* ==========================================================================
   EINHEITLICHES ROT-DUNKELGRAU-WEISS DESIGN – Modern, neutral & professionell
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8f9fa;
    color: #212529;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   HEADER – OPTIMIERT FÜR DESKTOP & MOBILE
   ========================================================================== */
.main-header {
    background: #ffffff;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-bottom: 5px solid #c1121f;
    flex-wrap: wrap;
    gap: 25px;
    position: relative;
    z-index: 1000;
}

.logo {
    height: 170px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.05);
}

/* SUCHLEISTE – GRÖSSER UND BESSER AUF DESKTOP */
.header-search-wrapper {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 800px;
    margin: 0 30px;
}

.header-search-input {
    width: 100%;
    padding: 18px 28px;
    font-size: 1.3em;
    border-radius: 30px;
    border: 3px solid #c1121f;
    background: white;
    box-shadow: 0 6px 20px rgba(193, 18, 31, 0.15);
    outline: none;
    transition: all 0.3s ease;
}

.header-search-input:focus {
    border-color: #a10e1a;
    box-shadow: 0 0 0 5px rgba(193, 18, 31, 0.25);
}

/* AUTOCOMPLETE – GRÖSSER, BESSER SICHTBAR */
.header-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(193, 18, 31, 0.3);
    max-height: 70vh;
    overflow-y: auto;
    z-index: 9999;
    border: 3px solid #c1121f;
    margin-top: 10px;
    display: none;
}

.header-search-results .autocomplete-item {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.header-search-results .autocomplete-item:hover {
    background: #ffebee;
}

.header-search-results .autocomplete-item img {
    width: 60px;
    height: 84px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-search-results .autocomplete-item div strong {
    font-size: 1.3em;
    display: block;
    color: #212529;
}

.header-search-results .autocomplete-item div small {
    color: #666;
    font-size: 1em;
}

/* AUTH-BUTTONS – 2x2 GRID AUF DESKTOP */
#auth-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    min-width: 300px;
    flex-shrink: 0;
    justify-items: stretch;
}

#auth-container button,
#auth-container .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1em;
    text-align: center;
    white-space: nowrap;
}

/* --- BUTTONS --- */
button {
    padding: 12px 26px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    margin: 5px;
    background: #c1121f;
    color: white;
}

button:hover {
    background: #a10e1a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #495057;
    color: white;
}

.btn-secondary:hover {
    background: #343a40;
}

.btn-success {
    background: #88d9a0;
    color: #333;
}

.btn-success:hover {
    background: #6cc48a;
}

.btn-logout {
    background: #6c757d;
    color: white;
}

.btn-logout:hover {
    background: #5a6268;
}

.btn-primary {
    background: #c1121f;
    color: white;
}

.btn-primary:hover {
    background: #a10e1a;
}

.btn-primary.large, .btn-success.large {
    font-size: 1.2em;
    padding: 16px 32px;
}

.btn-warning {
    background: #ffeb3b;
    color: #333;
}

.btn-warning:hover {
    background: #ffd700;
}

.btn-remove {
    background: #c1121f;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.9em;
    cursor: pointer;
}

/* --- INPUTS --- */
.input {
    padding: 12px 16px;
    border: 2px solid #ced4da;
    border-radius: 8px;
    width: 100%;
    font-size: 1em;
    background: white;
}

.input:focus {
    outline: none;
    border-color: #c1121f;
    box-shadow: 0 0 0 3px rgba(193, 18, 31, 0.15);
}

.input.center {
    display: block;
    margin: 15px auto;
    text-align: center;
}

.input.full-width {
    width: 100%;
}

.select-input {
    padding: 14px;
    font-size: 1.1em;
}

.textarea-input {
    padding: 18px;
    font-size: 1.1em;
    resize: vertical;
}

/* --- TITEL & PREISE – einheitlich rot --- */
h1, h2, h3, h4, h5 {
    color: #212529 !important;
}

.page-title,
.start-titel,
.section-title {
    text-align: center !important;
    width: 100%;
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.container > .page-title,
.container > .section-title {
    text-align: center !important;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.preis,
.paket-summe strong,
.gesamt-box strong,
.guthaben,
.artikel-preis strong,
.top-angebot-card .preis,
.result-angebote strong,
.warenkorb-preis strong,
.guthaben-big,
.cart-preis,
.paket-gesamt {
    color: #c1121f !important;
    font-weight: bold;
}

/* --- INDEX.PHP – STARTSEITE --- */
.suche-container {
    text-align: center;
    margin: 60px 0 100px;
    position: relative;
}

#suche {
    width: 90%;
    max-width: 800px;
    font-size: 1.8em;
    padding: 22px 30px;
    border-radius: 30px;
    border: 4px solid #c1121f;
    box-shadow: 0 10px 30px rgba(193,18,31,0.2);
    outline: none;
    transition: all 0.3s ease;
}

#suche:focus {
    border-color: #a10e1a;
    box-shadow: 0 15px 40px rgba(193,18,31,0.3);
}

#ergebnisse {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(193,18,31,0.25);
    margin-top: 12px;
    max-height: 70vh;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    border: 2px solid #c1121f;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
}

.autocomplete-item:hover, .autocomplete-item.highlighted {
    background: #c1121f;
    color: white;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item img {
    width: 50px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.autocomplete-item div {
    margin-left: 16px;
    flex: 1;
}

.autocomplete-item strong {
    font-size: 1.2em;
    display: block;
}

.autocomplete-item small {
    color: #666;
    font-size: 0.9em;
}

.autocomplete-item:hover small, .autocomplete-item.highlighted small {
    color: #fff8;
}

.autocomplete-item.no-result, .autocomplete-item.error {
    text-align: center;
    padding: 30px;
    color: #999;
}

.top-angebote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 120px;
    padding: 0 20px;
}

.top-angebot-link {
    text-decoration: none;
    color: inherit;
}

.top-angebot-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    text-align: center;
}

.top-angebot-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(193,18,31,0.2);
}

.card-cover {
    height: 360px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.top-angebot-card:hover .card-cover img {
    transform: scale(1.05);
}

.card-info {
    padding: 25px;
}

.card-info h3 {
    margin: 0 0 15px;
    font-size: 1.5em;
    color: #c1121f;
    line-height: 1.3;
}

.card-info p {
    margin: 10px 0;
    color: #666;
}

.card-info .seller {
    color: #888;
    font-size: 0.95em;
}

.card-info .preis {
    font-size: 2.6em;
    margin: 20px 0;
}

.card-info button {
    width: 90%;
    margin: 20px auto 0;
    padding: 16px;
    font-size: 1.2em;
    border-radius: 16px;
}

.no-angebote {
    grid-column: 1 / -1;
    text-align: center;
    padding: 120px 0;
    color: #999;
    font-size: 1.8em;
}

.danke-box {
    max-width: 600px;
    margin: 60px auto;
    padding: 40px;
    background: #fffaf0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255,133,161,0.2);
    text-align: center;
}

.danke-box h1 {
    color: #88d9a0;
    font-size: 2.4em;
}

/* --- KONTO.PHP – TABS & LAYOUT --- */
.tab {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0;
    border-bottom: none;
    margin-bottom: 40px;
    justify-items: center;
}

.tab button {
    width: 100%;
    min-width: auto;
    padding: 16px 12px;
    font-size: 1em;
    border-radius: 12px;
    border-bottom: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: #f8f9fa;
    color: #555;
    font-weight: bold;
}

.tab button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.tab button.active {
    background: #c1121f;
    color: white;
    box-shadow: 0 4px 15px rgba(193,18,31,0.3);
}

.tabcontent {
    display: none;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.tabcontent.active {
    display: block;
}

/* MEINE DATEN – DESKTOP: ALLE UNTEREINANDER */
.data-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
}

.data-label {
    font-weight: bold;
    color: #c1121f;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.data-value {
    font-size: 1.2em;
    word-break: break-word;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.guthaben-big {
    font-size: 2.8em !important;
    color: #88d9a0 !important;
    font-weight: bold;
    text-align: center;
    padding: 25px !important;
    background: linear-gradient(135deg, #e6f4ea, #d0ebd7);
    border-radius: 15px;
}

/* MEINE ANGEBOTE */
.angebote-list {
    display: grid;
    gap: 20px;
}

.angebot-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    flex-wrap: wrap;
    gap: 15px;
}

.angebot-info {
    flex: 1;
    min-width: 200px;
}

.angebot-titel {
    color: #c1121f;
    font-size: 1.2em;
}

.preis-edit {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.preis-display {
    font-size: 1.3em;
    font-weight: bold;
    color: #c1121f;
    min-width: 100px;
    text-align: right;
}

.preis-input {
    width: 110px;
    padding: 10px;
    border: 2px solid #c1121f;
    border-radius: 8px;
    font-size: 1em;
    text-align: center;
}

/* VERKÄUFE & KÄUFE */
.order-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.order-header {
    margin-bottom: 20px;
}

.order-titel {
    color: #c1121f;
    font-size: 1.3em;
    margin: 0 0 10px 0;
}

.order-kunde, .order-datum, .order-verkaeufer, .order-versandart {
    margin: 8px 0;
    color: #555;
}

.order-status {
    margin: 20px 0;
    font-size: 1.1em;
}

.order-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
    justify-content: center;
}

.tracking-info {
    margin-left: 10px;
    color: #666;
    font-size: 0.95em;
}

/* ADRESSEN */
.adresse-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.adresse-text {
    flex: 1;
    min-width: 250px;
    line-height: 1.6;
}

.adresse-text strong {
    font-size: 1.2em;
    color: #c1121f;
}

.adresse-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* BANKVERBINDUNG */
.bank-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.bank-info {
    flex: 1;
    min-width: 250px;
    line-height: 1.8;
    font-size: 1.1em;
}

.bank-info strong {
    color: #c1121f;
    font-size: 1.2em;
}

/* GUTHABEN */
.guthaben-display {
    text-align: center;
    font-size: 1.6em;
    margin-bottom: 40px;
}

.guthaben-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

.guthaben-box {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.guthaben-box h4 {
    color: #c1121f;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.guthaben-info {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.paypal-section {
    margin: 30px 0;
}

.paypal-label {
    display: block;
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 1.1em;
}

.paypal-minimum {
    font-size: 0.9em;
    color: #c1121f;
    font-weight: bold;
    margin: 10px 0;
}

.paypal-total {
    font-size: 1.4em;
    color: #c1121f;
    font-weight: bold;
    margin: 25px 0;
}

.bank-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    text-align: left;
}

.code-block {
    background: #eee;
    padding: 8px 12px;
    font-size: 1.1em;
    border-radius: 6px;
    display: inline-block;
    margin-top: 8px;
}

.code-block.iban {
    word-break: break-all;
}

.verwendungszweck {
    background: #c1121f;
    color: white;
    padding: 12px 16px;
    font-size: 1.1em;
    border-radius: 8px;
    word-break: break-all;
    display: inline-block;
    margin-top: 12px;
}

.guthaben-hinweis {
    font-size: 0.9em;
    color: #666;
    margin-top: 20px;
}

/* BEWERTUNGEN */
.rating-summary {
    text-align: center;
    margin: 40px 0;
}

.rating-big {
    font-size: 3.5em;
    color: #c1121f;
    font-weight: bold;
    line-height: 1;
}

.rating-count {
    font-size: 1.3em;
    color: #666;
    margin-top: 10px;
}

.rating-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.rating-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.rating-box strong {
    display: block;
    font-size: 1.1em;
    color: #c1121f;
    margin-bottom: 10px;
}

.rating-value {
    font-size: 2.2em;
    font-weight: bold;
    color: #333;
}

.review-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.review-header strong {
    color: #c1121f;
    font-size: 1.2em;
}

.review-date {
    color: #888;
    font-size: 0.95em;
}

.review-stars {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    font-size: 1.4em;
    margin: 20px 0;
    color: #c1121f;
}

.review-comment {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    font-style: italic;
    margin-top: 15px;
    line-height: 1.6;
    color: #555;
}

/* SUPPORT */
.support-info {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 30px auto 50px;
    font-size: 1.1em;
    line-height: 1.7;
}

.support-grid {
    display: grid;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.support-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.support-titel {
    color: #c1121f;
    font-size: 1.3em;
    margin: 0 0 15px 0;
}

.support-detail {
    margin: 12px 0;
    color: #555;
    font-size: 1.05em;
}

.support-actions {
    margin-top: 30px;
}

.notification-badge {
    background: #c1121f;
    color: white;
    font-size: 0.8em;
    font-weight: bold;
    padding: 5px 9px;
    border-radius: 50%;
    margin-left: 10px;
    vertical-align: middle;
}

/* MODALS */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2.5em;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.modal-title {
    text-align: center;
    color: #c1121f;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.modal-info {
    text-align: center;
    color: #777;
    margin-bottom: 30px;
}

.chat-modal .chat-box {
    height: 320px;
    overflow-y: scroll;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid #eee;
}

.chat-input {
    width: 100%;
    padding: 14px;
    border: 2px solid #c1121f;
    border-radius: 12px;
    font-size: 1.1em;
}

.rating-section {
    margin: 25px 0;
    text-align: center;
}

.rating-section strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #c1121f;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 2.2em;
}

.rating-stars span {
    cursor: pointer;
    transition: color 0.3s;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ALLGEMEINE HILFSKLASSEN */
.empty-message {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 1.4em;
}

.empty-message.big {
    font-size: 1.6em;
    padding: 80px 20px;
}

.hidden {
    display: none !important;
}

.form-box {
    background: #f0f0f0;
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.status-success {
    color: #88d9a0;
    font-weight: bold;
}

.status-warning {
    color: #c1121f;
    font-weight: bold;
}

.status-complete {
    color: #88d9a0;
    font-weight: bold;
}

/* FOOTER */
footer {
    background: #212529;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: auto;
    border-top: 5px solid #c1121f;
}

/* ==========================================================================
   REGISTER.PHP – REGISTRIERUNG
   ========================================================================== */
.register-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
}

.register-box {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(193,18,31,0.15);
}

.account-type {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
}

.type-radio {
    font-size: 1.3em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.type-radio input {
    width: 20px;
    height: 20px;
    accent-color: #c1121f;
}

.type-radio span {
    font-weight: 600;
}

.account-fields {
    transition: all 0.4s ease;
    overflow: hidden;
}

.hidden-section {
    height: 0;
    opacity: 0;
    padding: 0 !important;
    margin: 0 !important;
}

.visible-section {
    height: auto;
    opacity: 1;
    padding: inherit;
    margin: inherit;
}

.input-label {
    display: block;
    margin: 20px 0 8px;
    color: #c1121f;
    font-weight: bold;
    font-size: 1.05em;
}

.file-upload-label {
    display: block;
    margin: 25px 0 10px;
    color: #c1121f;
    font-weight: bold;
    font-size: 1.1em;
}

.file-input {
    display: block;
    width: 100%;
    padding: 16px;
    background: white;
    border: 2px dashed #c1121f;
    border-radius: 12px;
    font-size: 1em;
    cursor: pointer;
}

.file-input::file-selector-button {
    background: #c1121f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-right: 15px;
}

.address-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 15px;
}

.address-grid .input:nth-child(3),
.address-grid .input:nth-child(4) {
    grid-column: 1 / -1;
}

.register-submit {
    width: 100%;
    margin-top: 50px;
    padding: 20px;
    font-size: 1.4em;
    border-radius: 20px;
}

/* ==========================================================================
   SERIE.PHP – DESKTOP TABELLE (PERFEKT PASSEND – NICHT ZU BREIT)
   ========================================================================== */
.serie-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.serie-main {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.cover-section {
    width: 360px;
    flex-shrink: 0;
}

.cover-big {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(193,18,31,0.15);
}

.filter-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.filter-title {
    color: #c1121f;
    font-size: 1.6em;
    margin: 0 0 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ffebee;
}

.filter-group-title {
    display: block;
    margin: 30px 0 12px;
    color: #c1121f;
    font-weight: bold;
    font-size: 1.1em;
}

.filter-label {
    display: flex;
    align-items: center;
    margin: 14px 0;
    font-size: 1.05em;
    cursor: pointer;
    user-select: none;
}

.filter-label input[type="checkbox"] {
    margin-right: 12px;
    transform: scale(1.3);
    accent-color: #c1121f;
}

.filter-select {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 2px solid #ffebee;
    margin: 10px 0 25px;
    font-size: 1.05em;
    background: white;
}

.info-section {
    flex: 1;
    min-width: 300px;
}

.serie-title {
    font-size: 3em;
    color: #c1121f;
    margin: 0 0 20px;
}

.serie-info {
    margin: 15px 0;
    font-size: 1.1em;
}

.info-pending {
    color: #999;
    font-style: italic;
}

.preis-box {
    background: #ffebee;
    padding: 25px;
    border-radius: 16px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(193,18,31,0.1);
}

.preis-table {
    width: 100%;
    font-size: 1.2em;
}

.preis-table td:last-child {
    color: #c1121f;
    font-weight: bold;
    text-align: right;
    font-size: 1.3em;
}

.angebote-title {
    color: #ffb347;
    font-size: 2.4em;
    margin: 50px 0 30px;
}

/* Desktop Tabelle – perfekt passend, nicht zu breit */
.angebote-desktop .angebote-table-wrapper {
    overflow-x: hidden;
}

.angebote-table {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 0 auto;
    table-layout: auto;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.angebote-table thead {
    background: #c1121f;
    color: white;
}

.angebote-table th {
    padding: 16px 12px;
    font-size: 1.05em;
    text-align: left;
}

.angebote-table td {
    padding: 16px 12px;
    vertical-align: middle;
}

/* Spaltenbreiten für optimale Passung */
.angebote-table th:nth-child(1), .angebote-table td:nth-child(1) { width: 18%; min-width: 140px; } /* Verkäufer */
.angebote-table th:nth-child(2), .angebote-table td:nth-child(2) { width: 10%; text-align: center; } /* Band */
.angebote-table th:nth-child(3), .angebote-table td:nth-child(3) { width: 12%; text-align: center; } /* Sprache */
.angebote-table th:nth-child(4), .angebote-table td:nth-child(4) { width: 15%; text-align: center; } /* Zustand */
.angebote-table th:nth-child(5), .angebote-table td:nth-child(5) { width: 12%; text-align: center; } /* Preis */
.angebote-table th:nth-child(6), .angebote-table td:nth-child(6) { width: 10%; text-align: center; } /* Limited */
.angebote-table th:nth-child(7), .angebote-table td:nth-child(7) { width: 12%; text-align: center; } /* 1. Auflage */
.angebote-table th:nth-child(8), .angebote-table td:nth-child(8) { width: 11%; text-align: right; padding-right: 20px; } /* Action */

.angebote-table .btn-kaufen {
    padding: 12px 20px;
    font-size: 1em;
}

/* ==========================================================================
   SUCHE.PHP – SUCHERGEBNISSE
   ========================================================================== */
.search-results-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.no-results {
    text-align: center;
    padding: 120px 20px;
    color: #6c757d;
    font-size: 1.8em;
    line-height: 1.6;
}

.no-results p {
    margin-bottom: 40px;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    margin: 40px 0;
}

.result-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.result-link:hover {
    transform: translateY(-8px);
}

.result-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.result-card:hover {
    box-shadow: 0 20px 50px rgba(193,18,31,0.2);
}

.result-cover {
    height: 280px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.result-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.result-card:hover .result-cover img {
    transform: scale(1.05);
}

.result-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.result-title {
    font-size: 1.6em;
    color: #c1121f;
    margin: 0 0 15px;
    line-height: 1.3;
}

.result-detail {
    margin: 10px 0;
    color: #555;
    font-size: 1.05em;
}

.result-angebote {
    margin-top: auto;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: bold;
    text-align: center;
    font-size: 1.1em;
}

.has-angebote {
    background: #e8f5e9;
    color: #2e7d32;
}

.no-angebote {
    background: #ffebee;
    color: #c62828;
}

/* ==========================================================================
   VERIFY.PHP – KONTOBESTÄTIGUNG
   ========================================================================== */
.verify-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
}

.verify-box {
    background: white;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(193,18,31,0.15);
    text-align: center;
}

.verify-logo {
    width: 280px;
    max-width: 90%;
    margin-bottom: 40px;
    filter: drop-shadow(0 6px 15px rgba(255,131,161,0.2));
}

.verify-title {
    font-size: 2.8em;
    margin: 30px 0;
    color: #88d9a0;
}

.verify-title.error {
    color: #ff85a1;
}

.verify-message {
    font-size: 1.3em;
    color: #555;
    line-height: 1.7;
    margin: 30px 0 50px;
}

.verify-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ==========================================================================
   VERKAUFEN.PHP – MANGAS EIN STELLEN
   ========================================================================== */
.verkaufen-container {
    max-width: 850px;
    margin: 80px auto;
    padding: 0 20px;
}

.verkaufen-box {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(193,18,31,0.15);
}

.verkaufen-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.autocomplete-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 3px solid #c1121f;
    border-top: none;
    border-radius: 0 0 16px 16px;
    max-height: 440px;
    overflow-y: auto;
    z-index: 99;
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    display: none;
}

.ac-item {
    padding: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: background 0.2s;
}

.ac-item:hover {
    background: #ffebee;
}

.ac-item.no-result {
    text-align: center;
    color: #999;
    padding: 30px;
}

.ac-cover {
    width: 56px;
    height: 78px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.new-title-link {
    text-align: center;
    margin: 20px 0 30px;
    font-size: 1em;
}

.new-title-link a {
    color: #c1121f;
    font-weight: bold;
    text-decoration: underline;
}

.preis-hinweis {
    text-align: center;
    font-size: 1.4em;
    color: #c1121f;
    font-weight: 600;
    margin: 20px 0 30px;
    padding: 15px;
    background: #fff5f5;
    border-radius: 12px;
}

.checkbox-group {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    transform: scale(1.3);
    accent-color: #c1121f;
}

/* MODAL: NEUEN TITEL ANLEGEN */
.new-title-modal {
    max-width: 720px;
    width: 90%;
}

.file-upload-box {
    background: white;
    border: 3px dashed #c1121f;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin: 20px 0;
}

.file-upload-box .file-input {
    margin-top: 10px;
}

/* ==========================================================================
   WARENKORB.PHP – WARENKORB
   ========================================================================== */
.warenkorb-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.empty-cart {
    text-align: center;
    padding: 120px 20px;
    background: #f9f9f9;
    border-radius: 20px;
    color: #999;
    font-size: 1.8em;
    line-height: 1.7;
}

.paket-box {
    background: white;
    padding: 35px;
    margin: 30px 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(193,18,31,0.15);
    border-left: 6px solid #c1121f;
}

.paket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.paket-verkaeufer {
    font-size: 1.8em;
    color: #c1121f;
    margin: 0;
}

.countdown {
    background: #c1121f;
    color: white;
    padding: 10px 18px;
    border-radius: 16px;
    font-weight: bold;
    font-size: 1em;
}

.cart-item {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
    flex-wrap: wrap;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-img img {
    width: 90px;
    height: 130px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cart-info {
    flex: 1;
    min-width: 220px;
}

.cart-info strong {
    font-size: 1.3em;
    color: #c1121f;
    display: block;
    margin-bottom: 8px;
}

.cart-preis {
    font-size: 1.5em;
    color: #88d9a0;
    font-weight: bold;
    text-align: right;
    min-width: 150px;
}

.btn-remove {
    background: #c1121f;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.9em;
    cursor: pointer;
    margin-top: 10px;
}

.versand-option {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    margin: 25px 0 15px;
    flex-wrap: wrap;
    font-size: 1.1em;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    transform: scale(1.4);
    accent-color: #c1121f;
}

.lieferadresse-option {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.lieferadresse-option .form-label {
    margin: 0;
    font-size: 1.1em;
}

.paket-summe {
    text-align: right;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 3px solid #c1121f;
    font-size: 1.5em;
}

.paket-gesamt {
    font-size: 1.8em;
    color: #c1121f;
}

.gesamt-box {
    background: #ffebee;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
    font-size: 2.4em;
    color: #c1121f;
}

.checkout-button {
    width: 100%;
    padding: 25px;
    font-size: 2em;
    margin: 30px 0;
}

.guthaben-warning {
    background: #fff0f4;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 10px 40px rgba(193,18,31,0.15);
}

.warning-title {
    color: #c1121f;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 25px;
}

.guthaben-warning p {
    font-size: 1.4em;
    margin: 20px 0;
    line-height: 1.7;
}

.warning-hint {
    margin-top: 25px;
    color: #777;
    font-size: 1em;
}

/* ==========================================================================
   SUPPORT.PHP – TICKET-CHAT
   ========================================================================== */
.support-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.support-box {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.ticket-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 50px;
    line-height: 1.9;
    font-size: 1.1em;
}

.ticket-info p {
    margin: 15px 0;
}

.status-badge {
    padding: 10px 20px;
    border-radius: 16px;
    color: white;
    font-weight: bold;
    font-size: 1em;
}

.status-badge.offen,
.status-badge.bearbeitung { background: #c1121f; }
.status-badge.wartet_auf_user { background: #ffb347; }
.status-badge.erledigt { background: #88d9a0; }

.admin-hinweis {
    background: #fff8e1;
    padding: 25px;
    border-radius: 16px;
    margin-top: 25px;
    border-left: 6px solid #ffb347;
    font-size: 1.05em;
}

.chat-title {
    color: #c1121f;
    font-size: 2em;
    margin: 50px 0 25px;
    text-align: center;
}

.chat-messages {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    max-height: 600px;
    overflow-y: auto;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.chat-message {
    max-width: 80%;
    align-self: flex-start;
}

.chat-message.user-message {
    align-self: flex-end;
}

.message-bubble {
    background: #e9ecef;
    color: #333;
    padding: 18px 22px;
    border-radius: 20px;
    word-wrap: break-word;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.user-message .message-bubble {
    background: #c1121f;
    color: white;
    border-bottom-right-radius: 6px;
}

.admin-message .message-bubble {
    background: #e9ecef;
    color: #333;
    border-bottom-left-radius: 6px;
}

.message-image {
    max-width: 100%;
    border-radius: 14px;
    margin-top: 15px;
    display: block;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.message-meta {
    font-size: 0.9em;
    opacity: 0.8;
    margin-top: 10px;
    text-align: right;
}

.user-message .message-meta {
    color: #ffd0d7;
}

.admin-message .message-meta {
    color: #888;
    text-align: left;
}

.chat-form-wrapper {
    margin-top: 40px;
}

.chat-textarea {
    width: 100%;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 16px;
    font-size: 1.1em;
    resize: vertical;
    min-height: 180px;
    font-family: inherit;
    margin-bottom: 25px;
}

.chat-textarea:focus {
    border-color: #c1121f;
    outline: none;
    box-shadow: 0 0 0 4px rgba(193,18,31,0.15);
}

.ticket-closed {
    text-align: center;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 40px;
    border-radius: 20px;
    font-size: 1.5em;
    font-weight: bold;
    margin: 40px 0;
}

.support-back {
    text-align: center;
    margin-top: 60px;
}

/* ==========================================================================
   SUPPORT_ERSTELLEN.PHP – NEUES TICKET
   ========================================================================== */
.support-create-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.support-create-box {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.order-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 50px;
    line-height: 1.8;
    font-size: 1.1em;
}

.order-summary p {
    margin: 12px 0;
}

.form-label {
    display: block;
    margin: 30px 0 12px;
    font-weight: bold;
    font-size: 1.2em;
    color: #c1121f;
}

.form-hint {
    color: #666;
    font-size: 0.95em;
    margin: 10px 0 20px;
}

.form-actions {
    text-align: center;
    margin: 50px 0 40px;
}

.support-back {
    text-align: center;
    margin-top: 40px;
}

/* RESPONSIVE ANZEIGE FÜR SERIE.PHP – TABELLE NUR DESKTOP, CARDS NUR MOBILE */
.angebote-desktop {
    display: block;
}

.angebote-mobile {
    display: none;
}
/* ==========================================================================
   MOBILE OPTIMIERUNGEN – FINAL & PERFEKT (Tabelle versteckt, Cards sichtbar)
   ========================================================================== */
@media (max-width: 768px) {
    .main-header {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .logo {
        height: 130px;
        margin: 0 auto;
    }

    .header-search-wrapper {
        width: 100%;
        margin: 20px 0 10px 0;
        max-width: none;
    }

    .header-search_input {
        font-size: 1.2em;
        padding: 18px 24px;
    }

    .header-search_results .autocomplete-item {
        padding: 18px 20px;
    }

    .header-search_results .autocomplete-item img {
        width: 50px;
        height: 70px;
    }

    /* AUSGELOGGT: FELDER & BUTTONS VOLLE BREITE */
    .login-form {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        align-items: end;
    }

    .login-form .input {
        grid-column: 1 / -1;
    }

    .login-form button {
        width: 100%;
        padding: 16px;
    }

    /* EINGELOGGT: 4 BUTTONS 2x2 – ZENTRIERT, VOLLE BREITE, KEIN ABSCHNEIDEN */
    #auth-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    #auth-container button,
    #auth-container .btn {
        width: 100%;
        padding: 18px 12px;
        font-size: 1.05em;
        text-align: center;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        white-space: normal;
        word-wrap: break-word;
    }

    /* INDEX.PHP – SICHER 1 SPALTE */
    .top-angebote-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
        padding: 0 15px;
    }

    .card-cover {
        height: 300px;
    }

    .card-info h3 {
        font-size: 1.4em;
    }

    .card-info .preis {
        font-size: 2.2em;
    }

    .card-info button {
        padding: 14px;
        font-size: 1.1em;
    }

    /* SERIE.PHP MOBILE – TABELLE VERSTECKT, CARDS SICHTBAR */
    .serie-main {
        flex-direction: column;
        padding: 0 10px;
    }

    .cover-section {
        width: 100%;
        max-width: 340px;
        margin: 0 auto 30px;
    }

    .filter-box {
        position: static;
        margin: 30px 0;
        padding: 25px;
    }

    .serie-title {
        font-size: 2.4em;
        text-align: center;
    }

    .preis-box {
        padding: 20px;
    }

    .angebote-title {
        font-size: 2em;
        text-align: center;
    }

    /* Umschalten: Desktop-Tabelle verstecken, Mobile-Cards zeigen */
    .angebote-desktop {
        display: none !important;
    }

    .angebote-mobile {
        display: block !important;
    }

    /* Rechteckige kompakte Cards auf Mobile */
    .angebot-card-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        padding: 16px 20px;
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        margin-bottom: 12px;
        transition: transform 0.2s;
    }

    .angebot-card-mobile:hover {
        transform: translateY(-2px);
    }

    .angebot-card-mobile.reserviert-card {
        opacity: 0.6;
    }

    .card-mobile-left {
        flex: 1;
        min-width: 0;
    }

    .card-mobile-band {
        font-size: 1.4em;
        font-weight: bold;
        color: #c1121f;
        margin-bottom: 6px;
    }

    .card-mobile-zustand {
        margin: 8px 0;
    }

    .card-mobile-seller {
        font-size: 1em;
        color: #555;
        margin: 6px 0;
    }

    .card-mobile-extras {
        font-size: 0.95em;
        color: #777;
        margin-top: 4px;
    }

    .card-mobile-right {
        text-align: right;
        margin-left: 20px;
    }

    .card-mobile-preis {
        font-size: 1.8em;
        font-weight: bold;
        color: #c1121f;
        margin-bottom: 10px;
    }

    .card-mobile-right .btn-kaufen {
        width: 140px;
        padding: 14px 10px;
        font-size: 1em;
    }

    .card-mobile-right .reserviert-text {
        font-size: 1.1em;
        color: #c1121f;
        font-weight: bold;
    }

    /* WEITERE MOBILE ANPASSUNGEN */
    .page-title,
    .section-title,
    h2 {
        font-size: 2.4em !important;
        text-align: center !important;
        padding: 0 15px !important;
    }

    .register-box,
    .verkaufen-box,
    .support-box,
    .warenkorb-container,
    .verify-box {
        padding: 30px;
        margin: 40px auto;
    }

    .checkbox-group {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .paket-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .countdown {
        align-self: flex-end;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cart-preis {
        text-align: left;
        margin-top: 10px;
    }

    .versand-option,
    .lieferadresse-option {
        justify-content: flex-start;
        flex-direction: column;
        align-items: stretch;
    }

    .gesamt-box,
    .checkout-button {
        padding: 30px;
        font-size: 2em;
    }

    .guthaben-warning {
        padding: 30px;
    }

    .warning-title {
        font-size: 1.8em;
    }

    .support-container,
    .support-create-container {
        margin: 40px auto;
        padding: 0 15px;
    }

    .support-box,
    .support-create-box {
        padding: 30px;
    }

    .ticket-info,
    .order-summary {
        padding: 25px;
    }

    .chat-messages {
        max-height: 500px;
        padding: 20px;
    }

    .chat-message {
        max-width: 92%;
    }

    .chat-title {
        font-size: 1.8em;
        margin: 40px 0 20px;
    }

    .chat-textarea {
        padding: 18px;
        font-size: 1em;
    }

    .ticket-closed {
        padding: 30px;
        font-size: 1.3em;
    }

    .form-label {
        font-size: 1.1em;
        margin: 25px 0 10px;
    }

    .select-input,
    .textarea-input {
        font-size: 1em;
        padding: 14px;
    }

    .form-actions {
        margin: 40px 0 30px;
    }

    /* SUCHE.PHP MOBILE */
    .search-results-container {
        margin: 40px auto;
        padding: 0 15px;
    }

    .no-results {
        padding: 80px 20px;
        font-size: 1.5em;
    }

    .search-results-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .result-cover {
        height: 240px;
    }

    .result-info {
        padding: 20px;
    }

    .result-title {
        font-size: 1.5em;
    }

    .result-angebote {
        padding: 14px;
        font-size: 1.2em;
    }

    /* VERIFY.PHP MOBILE */
    .verify-container {
        margin: 40px auto;
        padding: 0 15px;
    }

    .verify-box {
        padding: 40px 25px;
    }

    .verify-logo {
        width: 220px;
        margin-bottom: 30px;
    }

    .verify-title {
        font-size: 2.2em;
    }

    .verify-message {
        font-size: 1.2em;
        margin: 25px 0 40px;
    }

    .verify-links {
        flex-direction: column;
        gap: 15px;
    }

    .verify-links a {
        width: 100%;
    }
}