/* =========================================
   GLOBAL WRAPPER
   ========================================= */
.page-content {
    margin-top: 110px; /* vorher 100px */
}

.price-cart-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px; /* vorher 8px */
}

.price-box {
    font-size: 1rem; /* vorher 0.9rem */
    color: #667085;
}

.cart-form button {
    background: transparent;
    color: #0f0f0f;
    border: none;
    padding: 8px 14px; /* vorher 6px 12px */
    border-radius: 6px; /* vorher 5px */
    cursor: pointer;
    font-size: 0.9rem; /* vorher 0.8rem */
    font-weight: 600;
}

.cart-form button:hover {
    opacity: 0.85;
    box-shadow: 0 4px 14px rgba(50, 50, 50, 0.18);
}

.ticket-details-section {
    display: flex;
    justify-content: center;
    padding: 26px; /* vorher 20px */
}

.ticket-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px; /* vorher 12px */
    max-width: 1200px; /* vorher 1100px */
    width: 100%;
    justify-content: center;
}

/* =========================================
   CARD BASE
   ========================================= */

.ticket-card {
    width: 100%;
    max-width: 400px; /* vorher 360px */
    border-radius: 8px; /* vorher 5px */
    padding: 14px; /* vorher 10px */
    transition: 0.25s ease;
    cursor: pointer;
    background-color: #ffffff;
    border: 1px solid #d0d5dd;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08); /* vorher 0 2px 6px */
    color: #222;
}

/* Hover */
.ticket-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.14); /* etwas stärker */
}

/* Header */
.ticket-header {
    background: transparent;
    color: #1a1a1a;
    border-radius: 6px; /* vorher 5px */
    padding: 8px; /* vorher 6px */
    margin-top: 8px; /* vorher 6px */
    text-align: center;
}

.ticket-header h2 {
    font-size: 1.15rem; /* vorher 1rem */
    margin: 0;
    text-align: center;
    color: #1a1a1a;
}

/* Body */
.ticket-body {
    font-size: 0.95rem; /* vorher 0.85rem */
    line-height: 1.45rem; /* vorher 1.35rem */
    color: #667085;
    text-align: center;
}

/* Footer */
.ticket-footer a,
.ticket-footer button {
    color: #667085;
    font-weight: 600;
}

/* =========================================
   DARK MODE
   ========================================= */

.dark .ticket-card {
    background: #1c1c1c;
    border: 1px solid #2a2a2a;
    box-shadow: 0 3px 12px rgba(0,0,0,0.35);
    color: #bbbbbb;
}

.dark .ticket-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(50, 50, 50, 0.22);
}

.dark .ticket-header {
    background: #2a2a2a;
    color:#bbbbbb;
    border-radius: 6px;
    padding: 8px;
    text-align: center;
    margin-bottom: 12px;
}

.dark .ticket-header h2 {
    font-size: 1.15rem;
    margin: 0;
    color: #bbbbbb;
}

.dark .ticket-body {
    font-size: 0.95rem;
    line-height: 1.45rem;
    color: #bbbbbb;
}

.dark .ticket-footer a,
.dark .ticket-footer button {
    color: #2ecc71;
    font-weight: 600;
}

.dark .cart-form button {
    background: #2a2a2a;
    color: #667085;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.dark .ticket-header::before,
.dark .ticket-header:after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #FFB000, transparent);
}

/* =========================================
   BUTTONS
   ========================================= */

.ticket-footer button {
    background: transparent;
    border: none;
    padding: 10px 14px; /* vorher 8px 12px */
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem; /* vorher 0.8rem */
}

.ticket-footer button:hover {
    opacity: 0.8;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 700px) {
    .ticket-card {
        max-width: 100%;
        padding: 18px; /* vorher 14px */
    }

    .ticket-header h2 {
        font-size: 1.05rem; /* vorher 0.95rem */
    }

    .ticket-body {
        font-size: 0.9rem; /* vorher 0.8rem */
    }
}
