/* ============================= */
/* RESET */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================= */
/* THEME VARIABLEN */
/* ============================= */
:root {
    --bg-primary: linear-gradient(135deg, #b30000, #ff1a1a);
    --text-color: white;
    --nav-bg: rgba(0, 0, 0, 0.2);
    --card-bg: rgba(255, 255, 255, 0.1);
    --button-bg: white;
    --button-text: #b30000;
}

/* Light Mode */
body.light {
    --bg-primary: #ff4d4d;
    --text-color: #1a1a1a;
    --nav-bg: rgba(255, 255, 255, 0.6);
    --card-bg: rgba(255, 255, 255, 0.6);
    --button-bg: #b30000;
    --button-text: white;
}

/* Dark Mode */
body.dark {
    --bg-primary: #a70000;
    --text-color: white;
    --nav-bg: rgba(0, 0, 0, 0.4);
    --card-bg: rgba(0, 0, 0, 0.3);
    --button-bg: white;
    --button-text: #660000;
}

/* ============================= */
/* BODY & TYPOGRAPHIE */
/* ============================= */
html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-color);
    transition: background 0.4s ease, color 0.4s ease;
    min-height: 100vh;
}

/* PAGE WRAPPER FÜR FOOTER FIX */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1; /* füllt den Raum zwischen Navbar und Footer */
}

/* ============================= */
/* NAVIGATION */
/* ============================= */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background-color: var(--text-color);
    transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-login {
    padding: 0.4rem 1rem;
    border: 1px solid var(--text-color);
    border-radius: 30px;
    transition: 0.3s ease;
}

.btn-login:hover {
    background: var(--text-color);
    color: #b30000;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    border-radius: 30px;
    padding: 0.3rem 0.7rem;
    cursor: pointer;
    margin-right: 1rem;
    transition: 0.3s ease;
}

.theme-toggle:hover {
    background: var(--text-color);
    color: #b30000;
}

.nav-right {
    display: flex;
    align-items: center;
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
}

@media (max-width: 768px) {
    /* Mobile Menü Container */
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(255, 255, 255, 0.95); /* hell im Light-Mode */
        flex-direction: column;
        width: 220px;
        padding: 1.5rem;
        transform: translateX(100%);
        transition: 0.3s ease;
        border-radius: 10px 0 0 10px;
        z-index: 999;
    }

    /* Menü geöffnet */
    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.9rem 0;
        font-size: 1.1rem;
        color: #1a1a1a; /* dunkle Schrift im Light-Mode */
    }

    /* Dark-Mode Anpassungen */
    body.dark .nav-links {
        background: rgba(0, 0, 0, 0.9);
    }

    body.dark .nav-links a {
        color: #fff;
    }

    /* Login-Button */
    .btn-login {
        margin-top: 1rem;
        background: var(--button-bg);
        color: var(--button-text) !important;
        text-align: center;
        font-weight: 600;
        border: none;
        border-radius: 12px;
        padding: 1rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        transition: transform 0.2s;
    }

    .btn-login:hover {
        transform: scale(1.02);
    }

    /* Hamburger-Icon */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: #1a1a1a; /* dunkle Linien im Light-Mode */
        border-radius: 3px;
        transition: background 0.3s ease;
    }

    body.dark .menu-toggle span {
        background: #fff; /* helle Linien im Dark-Mode */
    }
}

/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
    min-height: 25vh; /* kompakter */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 1rem 2rem; /* kleinerer Abstand */
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1s ease;
}

.hero h1 {
    font-size: clamp(1.8rem, 6vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ============================= */
/* FEATURE GRID & CARDS */
/* ============================= */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.4s ease, transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.feature-card ul {
    list-style: disc;
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.feature-card ul ul {
    padding-left: 1.5rem;
    list-style-type: circle;
}

.feature-card img {
    display: block;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    margin: 1rem 0;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    background: none;
}

.feature-card-clear {
    background: none !important;
    backdrop-filter: none !important;
    border: none;
    padding: 0;
}

/* ============================= */
/* BUTTONS & LINKS */
/* ============================= */
.cta-button {
    display: inline-block;
    background: var(--button-bg);
    color: var(--button-text);
    padding: 0.9rem 2.2rem;
    border-radius: 40px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.4s ease;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.cta-group {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap; /* sorgt für sauberen Umbruch auf Mobile */
}

.card-link {
    text-decoration: none;
    font-weight: 600;
    color: var(--text-color);
    transition: 0.3s ease;
}

.card-link:hover { letter-spacing: 1px; }

/* ============================= */
/* ANIMATION */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================= */
/* FORM SECTION */
.form-section {
    max-width: 900px;
    margin: auto;
    padding: 2rem;
}

.modern-form {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: 0.4s ease;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.modern-form label { margin-bottom: 0.5rem; font-weight: 500; }

.modern-form input,
.modern-form select,
.modern-form textarea {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: rgba(255,255,255,0.15);
    color: var(--text-color);
    transition: 0.3s ease;
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    box-shadow: 0 0 0 2px var(--button-bg);
}

.form-submit { width: 100%; margin-top: 1rem; }

/* ============================= */
/* KARTEN- & PAPIERBILDER */

/* Container für die Bilder der Karte oder Papierbilder */
.karte-bilder-container,
.papier-bilder-container {
    text-align: center;         /* Überschrift und Bilder zentrieren */
    margin-bottom: 2rem;        /* Abstand zu den nachfolgenden Inhalten */
}

/* Bilder selbst */
.karte-bilder,
.papier-bilder {
    display: inline-flex;       /* nebeneinander */
    gap: 2rem;                  /* Abstand zwischen Bildern */
    flex-wrap: wrap;            /* umbrechen bei kleinen Bildschirmen */
    justify-content: center;    /* horizontal zentrieren */
    margin-top: 1rem;
}

/* Einzelne Bilder */
.karte-bilder img,
.papier-bilder img {
    width: auto;                /* Breite nach Inhalt */
    max-width: 400px;           /* Maximale Breite pro Bild */
    height: auto;               /* Höhe proportional */
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: transform 0.2s;
}

/* Hover-Effekt */
.karte-bilder img:hover,
.papier-bilder img:hover {
    transform: scale(1.05);
}

/* ============================= */
/* CHIP-BILDER */

/* Container für Chip-Bilder */
.chip-bilder-container {
    text-align: center;         /* Überschrift und Bilder zentrieren */
    margin-bottom: 2rem;        /* Abstand zu den Chipinformationen */
}

/* Bilder selbst */
.chip-bilder {
    display: inline-flex;       /* nebeneinander */
    gap: 2rem;                  /* Abstand zwischen Bildern */
    flex-wrap: wrap;            /* umbrechen bei kleinen Bildschirmen */
    justify-content: center;    /* horizontal zentrieren */
    margin-top: 1rem;
}

/* Einzelne Bilder */
.chip-bilder img {
    width: auto;
    max-width: 200px;           /* maximale Bildbreite */
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: transform 0.2s;
}

/* Hover-Effekt */
.chip-bilder img:hover {
    transform: scale(1.05);
}

/* ============================= */
/* LIGHTBOX / POPUP BILDER */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 2000;
    cursor: zoom-out;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

#lightbox img:hover {
    transform: scale(1.05);
}

/* ============================= */
/* PAGE HEADER */
.page-header {
    padding-top: 120px;
    text-align: center;
    padding-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.85;
}

/* ============================= */
/* FOOTER */
.footer {
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    color: var(--text-color);
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 0.9rem;
    transition: background 0.4s ease, color 0.4s ease;
}

.footer a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: 0.3s ease;
}

.footer a:hover {
    color: var(--button-bg);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    gap: 1rem;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
}

.footer-center { text-align: center; }

.footer-right { text-align: right; }

.footer-right a { margin-left: 0.5rem; }

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
        flex: unset;
    }
    .footer-right a { margin-left: 0.5rem; }
}

/* ============================= */
/* ADMIN: Bestellungen Tabelle */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

thead th {
    border-bottom: 2px solid var(--text-color);
    padding: 0.75rem;
    text-align: left;
}

tbody td {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 0.65rem;
}

tr:hover {
    background: rgba(255,255,255,0.1);
}

/* Zahlungsstatus */
.status {
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-weight: bold;
}

.status.offen { 
    background: orange; 
    color: #fff; 
}

.status.bezahlt { 
    background: green; 
    color: #fff; 
}

/* Responsive Anpassung für Admin-Tabelle auf Mobile */
@media (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }

    thead tr {
        display: none;
    }

    tbody tr {
        margin-bottom: 1rem;
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 12px;
        padding: 0.75rem;
    }

    tbody td {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-bottom: none;
    }

    tbody td::before {
        content: attr(data-label);
        font-weight: bold;
        flex-basis: 50%;
    }
}

/* Kleine Buttons in Admin-Tabelle */
.cta-button.small {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    background-color: #b30000;
    color: #fff;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button.small:hover {
    background-color: #e60000;
}

/* Optional: Abstand zwischen Status-Label und Button */
td .status + .cta-button.small {
    margin-left: 5px;
}

/* ============================= */
/* ADMIN: Bestelldetails Accordion */
.details {
    display: none;
    background: rgba(255,255,255,0.05);
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 0.25rem;
}

.details p {
    margin: 0.25rem 0;
}

.name-click {
    cursor: pointer;
    text-decoration: underline;
    color: var(--button-bg);
    transition: 0.3s ease;
}

.name-click:hover {
    color: #ff9999;
}

/* Bilder in der unsichtbaren Tabelle normal darstellen */
.chip-bilder-table img {
    max-width: 450px;      /* gewünschte Größe */
    height: auto;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: none;       /* falls Schatten dunkel wirkt, einfach entfernen */
    filter: none !important; /* keine Helligkeits-/Farbanpassung */
    opacity: 1 !important;   /* volle Deckkraft */
    background: none;
    transition: transform 0.2s;
}

.chip-bilder-table img:hover {
    transform: scale(1.05);
}

/* ============================= */
/* CHIP-BILDER ORIGINAL ANZEIGEN */
.chip-bilder-original {
    background: none !important;       /* kein Hintergrund */
    box-shadow: none !important;       /* keine Schatten */
    filter: none !important;           /* keine Filter */
    opacity: 1 !important;             /* volle Deckkraft */
    border-radius: 0;                  /* optional, falls rund nicht gewünscht */
    max-width: 450px;
    height: auto;
    display: inline-block;
}

/* ============================= */
/* FAQ AKKORDEON */
/* ============================= */
.faq-question {
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    padding-right: 25px;
    transition: color 0.3s;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-question.active::after {
    content: "-";
}

.faq-answer {
    display: none;
    margin-top: 0.5rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Smooth Slide Animation */
.faq-answer.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { max-height: 0; opacity: 0; }
    to { max-height: 500px; opacity: 1; }
}

/* Optimierung für Mobile */
@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem;
    }
    .faq-question {
        font-size: 1rem;
    }
    .faq-answer {
        font-size: 0.95rem;
    }
}

/* ===== Website Sections ===== */

.section-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-block.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 780px) {
    .section-block,
    .section-block.reverse {
        flex-direction: column;
    }
}

.checkbox-group {
    display: block; /* Container block */
}

.checkbox-item {
    margin-bottom: 10px; /* Abstand zwischen den Produkten */
}

/* ================= COOKIE BANNER ================= */
.cookie-banner {
    position: fixed;
    bottom: 40px;        /* Abstand vom Footer / unteren Rand */
    left: 50%;
    transform: translateX(-50%);
    width: 480px;        /* feste Breite für Desktop */
    max-width: 90%;      /* responsiv */
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    display: none;
    z-index: 9999;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #111;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-text {
    font-size: 14px;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.cookie-btn.primary {
    background: #0d6efd;
    color: #fff;
}

.cookie-btn.primary:hover {
    background: #0056b3;
}

.cookie-btn.secondary {
    background: #e0e0e0;
    color: #111;
}

.cookie-btn.secondary:hover {
    background: #c2c2c2;
}

.cookie-btn.link {
    background: transparent;
    color: #555;
    text-decoration: underline;
}

.cookie-btn.link:hover {
    color: #0d6efd;
}

/* ================= COOKIE MODAL ================= */
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.cookie-modal-content {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    width: 90%;
    max-width: 480px;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #111;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #555;
}

.cookie-close:hover {
    color: #0d6efd;
}

.cookie-modal-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 14px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-option div strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.cookie-option div p {
    margin: 0;
    font-size: 13px;
    color: #555;
}

.cookie-modal-footer {
    text-align: right;
    margin-top: 20px;
}

.cookie-modal-footer .cookie-btn {
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
    .cookie-banner {
        bottom: 15px;
        width: 95%;
        padding: 15px;
    }
    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }
    .cookie-modal-content {
        padding: 20px;
    }
}

/* ============================= */
/* CHIP-BILDER - flexible Breite */
.chip-bilder img {
    width: 100%;           /* passt sich dem Container an */
    max-width: 200px;      /* maximale Breite Desktop */
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: transform 0.2s;
}

/* Chip-Bilder-Wrapper für Flexbox */
.chip-bilder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ============================= */
/* VIEW_ORDER.PHP STYLES */
/* ============================= */

.order-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
}

.order-box {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
    transition: 0.3s ease;
}

.order-box h3 {
    color: var(--button-bg);
    margin-bottom: 1rem;
}

.order-box p,
.order-box li {
    margin-bottom: 0.5rem;
}

.order-summary {
    text-align: center;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    background: var(--card-bg);
}

.order-box ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.order-box a {
    color: var(--button-bg);
    text-decoration: none;
}

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

/* Formularzentrierung */
.form-center {
    max-width: 400px;
    margin: 3rem auto;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Inputs */
.form-center input[type="text"],
.form-center input[type="date"] {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.15);
    color: var(--text-color);
}

.form-center button {
    width: 100%;
    padding: 0.9rem;
    border-radius: 40px;
    border: none;
    background: var(--button-bg);
    color: var(--button-text);
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.form-center button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.error-msg {
    color: #ff5555;
    margin-bottom: 1rem;
    text-align: center;
}

/* Passfoto-Thumbnail */
.order-box img {
    max-width: 200px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.order-box img:hover {
    transform: scale(1.05);
}

.order-box .product-item {
    margin-bottom: 0.5rem; /* Abstand zwischen den Produkten */
}

/* Standard-Link-Style */
.tracking-link {
    font-weight: bold;
    text-decoration: none;
}

/* Link im Lightmode (schwarz) */
body:not(.darkmode) .tracking-link {
    color: #000;
}

/* Link im Darkmode (weiß) */
body.darkmode .tracking-link {
    color: #fff;
}