/* ============================================================
   GRUPPEN-RECHNER - MOBILE FIRST DESIGN
   ============================================================ */

.group-calculator-light {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px 30px;
    margin: 30px auto 25px auto;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    max-width: 1200px;
}

/* Header */
.group-header-light {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 15px;
}

.group-icon-light {
    background: #fff7e6;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffe4b5;
    flex-shrink: 0;
}

.group-icon-light i {
    font-size: 2rem;
    color: #E7A800;
}

.group-title-light {
    margin: 0;
    color: #1a2639;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.group-subtitle-light {
    margin: 5px 0 0;
    color: #6c757d;
    font-size: 1rem;
    font-weight: 400;
}

/* Slider */
.group-form-light {
    margin: 0 0 15px 0;
}

.group-slider-container-light {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.group-slider-header-light {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.group-label-light {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #495057;
    font-weight: 500;
}

.group-label-light i {
    font-size: 1.3rem;
    color: #E7A800;
}

.group-value-light {
    display: flex;
    align-items: baseline;
    gap: 5px;
    background: white;
    padding: 5px 15px;
    border-radius: 40px;
    border: 1px solid #e9ecef;
}

.group-number-light {
    font-size: 2rem;
    font-weight: 800;
    color: #E7A800;
    line-height: 1;
}

.group-unit-light {
    font-size: 0.9rem;
    color: #6c757d;
}

.group-track-light {
    position: relative;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    margin: 25px 0 10px;
}

.group-range-light {
    position: absolute;
    width: 100%;
    height: 8px;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    z-index: 10;
    cursor: pointer;
}

.group-range-light::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: #E7A800;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -7px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(231,168,0,0.3);
}

.group-range-light::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: #E7A800;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
}

.group-fill-light {
    position: absolute;
    height: 100%;
    background: #E7A800;
    border-radius: 4px;
    pointer-events: none;
}

.group-labels-light {
    display: flex;
    justify-content: space-between;
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 10px;
}

.group-recommend-light {
    background: #fff7e6;
    padding: 4px 12px;
    border-radius: 30px;
    color: #E7A800;
    font-weight: 600;
    font-size: 0.85rem;
}

.group-button-wrapper-light {
    text-align: center;
    margin-top: 20px;
}

.group-button-light {
    background: #E7A800;
    color: white;
    border: none;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #d49c00;
    box-shadow: 0 2px 6px rgba(231,168,0,0.2);
}

.group-button-light:hover {
    background: #d49c00;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(231,168,0,0.3);
}

/* Live Badge */
.live-total-badge {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.live-total-inner {
    background: #f8f9fa;
    padding: 6px 18px;
    border-radius: 40px;
    border: 1px solid #e9ecef;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-total-icon {
    color: #E7A800;
}

.live-total-number {
    font-weight: 700;
    margin: 0 5px;
    color: #1a2639;
}

.live-total-text {
    color: #6c757d;
}

.live-indicator-dot {
    color: #28a745;
    font-size: 0.5rem;
    margin-left: 8px;
    animation: blink 1.5s infinite;
}

.live-indicator-text {
    color: #28a745;
    font-size: 0.8rem;
}

/* ============================================================
   MOBILE CARDS - HAUPTANSICHT FÜR MOBILE (bis 768px)
   ============================================================ */

.mobile-cards-container {
    display: block;
}

.desktop-table-container {
    display: none;
}

.mobile-section-header {
    background: linear-gradient(135deg, #1a2639 0%, #2d3748 100%);
    color: white;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 1rem;
    margin: 20px -15px 15px -15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-restaurant-card {
    display: flex;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.mobile-card-left {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.mobile-card-right {
    width: 120px;
    flex-shrink: 0;
}

.mobile-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.mobile-dish-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.mobile-dish-name {
    font-weight: 700;
    color: #E7A800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-price-main {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a2639;
    line-height: 1;
}

.mobile-price-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 12px;
}

.mobile-restaurant-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2639;
    margin-bottom: 4px;
    word-break: break-word;
}

.mobile-restaurant-address {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    word-break: break-word;
}

.mobile-restaurant-address i {
    color: #E7A800;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.mobile-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    width: fit-content;
}

.mobile-status-badge.open {
    background: #d4edda;
    color: #155724;
}

.mobile-status-badge.closed {
    background: #f8d7da;
    color: #721c24;
}

/* NEUE STYLES für Beilage in Mobile Cards */
.mobile-price-details {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.mobile-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #495057;
}

.mobile-price-row i {
    color: #6c757d;
    font-size: 0.9rem;
}

.mobile-price-row.side {
    color: #28a745;
    background: #e8f5e9;
    padding: 4px 10px;
    border-radius: 20px;
}

.mobile-price-row.total {
    font-weight: 700;
    color: #1a2639;
}

.mobile-price-row.total i {
    color: #E7A800;
}

.mobile-per-person-final {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 12px;
}

.mobile-details-btn {
    background: #E7A800;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 10px;
    border: none;
    cursor: pointer;
}

.mobile-details-btn:hover {
    background: #d49c00;
}

.mobile-views-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #6c757d;
}

.mobile-views-badge i.fa-eye {
    color: #adb5bd;
}

.live-dot {
    color: #28a745;
    font-size: 0.4rem;
    animation: blink 1.5s infinite;
}

.live-text {
    color: #28a745;
    font-size: 0.75rem;
}

/* OPTIMIERTE MOBILE BILDER */
.mobile-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    min-height: auto;
    overflow: hidden;
}

.mobile-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile-rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.95);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #1a2639;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mobile-rating-badge i {
    color: #ffc107;
    font-size: 0.8rem;
}

/* ============================================================
   DESKTOP TABLE - AB 769px SICHTBAR
   ============================================================ */

@media (min-width: 769px) {
    .mobile-cards-container {
        display: none;
    }
    
    .desktop-table-container {
        display: block;
    }
    
    .mobile-section-header {
        display: none;
    }
    
    .group-calculator-light {
        padding: 25px 30px;
    }
}

/* Table Styles */
.group-table-container-light {
    margin-top: 25px;
    border-radius: 16px;
    overflow-x: auto;
    background: white;
    border: 1px solid #e9ecef;
}

.group-table-light {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 1000px;
}

.group-table-light th {
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    padding: 15px 12px;
    text-align: left;
    border-bottom: 2px solid #e9ecef;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.group-table-light td {
    padding: 14px 12px;
    border-bottom: 1px solid #f1f3f5;
    vertical-align: middle;
}

.group-table-light tbody tr:hover {
    background: #fcf9f3;
}

/* Section Header in Table */
.section-header-row {
    background: linear-gradient(135deg, #1a2639 0%, #2d3748 100%);
}

.section-header-cell {
    padding: 12px 15px;
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: none;
}

/* Category Cell */
.category-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-icon {
    font-size: 1.3rem;
    width: 28px;
    text-align: center;
}

.category-name {
    font-weight: 600;
    color: #1a2639;
}

/* Restaurant Cell */
.restaurant-cell {
    min-width: 200px;
}

.restaurant-address {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.address-icon {
    font-size: 0.7rem;
}

/* Image Cell */
.image-cell {
    width: 70px;
    text-align: center;
}

.restaurant-thumb {
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    width: 70px;
    height: 70px;
}

.restaurant-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Rating */
.rating-cell {
    text-align: center;
}

.rating-badge {
    background: #ffc107;
    color: #1a2639;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Price Cells */
.price-cell {
    text-align: right;
}

.avg-price {
    font-weight: 600;
    color: #1a2639;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
}

.price-detail {
    font-size: 0.75rem;
    color: #adb5bd;
    margin-top: 2px;
}

.side-price {
    font-weight: 600;
    color: #28a745;
    background: #e8f5e9;
    padding: 4px 8px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
}

.side-total {
    font-size: 0.8rem;
    color: #28a745;
    font-weight: 600;
    margin-top: 2px;
}

.no-side {
    color: #adb5bd;
}

.drink-cell {
    text-align: right;
}

.drink-price {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Total Cell */
.total-cell {
    text-align: right;
}

.total-price {
    font-weight: 700;
    color: #E7A800;
    font-size: 1.1rem;
}

.per-person {
    font-size: 0.75rem;
    color: #28a745;
    font-weight: 600;
    margin-top: 2px;
}

/* Views Cell */
.views-cell {
    text-align: center;
}

.live-views-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.live-views-badge i {
    color: #6c757d;
}

.view-count {
    font-weight: 600;
    color: #1a2639;
}

/* Action Button */
.action-cell {
    text-align: center;
}

.btn-table-view {
    background: #E7A800;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
}

.btn-table-view:hover {
    background: #d49c00;
    transform: scale(1.05);
}

/* Text Utilities */
.text-right {
    text-align: right;
}

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

/* ============================================================
   LEGEND
   ============================================================ */

.group-legend {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #6c757d;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-icon {
    color: #E7A800;
}

/* ============================================================
   RESPONSIVE ANPASSUNGEN
   ============================================================ */

@media (max-width: 768px) {
    .group-calculator-light {
        padding: 20px 15px;
        margin: 20px 10px;
        border-radius: 16px;
    }
    
    .group-title-light {
        font-size: 1.4rem;
    }
    
    .group-header-light {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .group-icon-light {
        width: 50px;
        height: 50px;
    }
    
    .group-icon-light i {
        font-size: 1.5rem;
    }
    
    /* Mobile Cards Anpassungen */
    .mobile-card-right {
        width: 120px;
    }
    
    .mobile-image-container {
        aspect-ratio: 1 / 1;
    }
    
    .mobile-price-main {
        font-size: 1.8rem;
    }
    
    .group-legend {
        flex-direction: column;
        gap: 10px;
    }
    
    .mobile-section-header {
        margin: 20px -15px 15px -15px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mobile-restaurant-card {
        flex-direction: column;
    }
    
    .mobile-card-right {
        width: 100%;
        height: auto;
    }
    
    .mobile-image-container {
        aspect-ratio: 16 / 9;
        min-height: unset;
    }
    
    .mobile-price-details {
        gap: 10px;
    }
    
    .mobile-price-row {
        font-size: 0.85rem;
    }
}

/* Animation für Live Indicator */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============================================================
   MEIN MENÜ - GEMISCHTE BESTELLUNGEN (NEU)
   ============================================================ */

.group-order-toggle {
    display: flex;
    gap: 12px;
    margin: 25px 0 20px;
    flex-wrap: wrap;
}

.order-toggle-btn {
    flex: 1 1 200px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 40px;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 1rem;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.order-toggle-btn i {
    font-size: 1.2rem;
    color: #adb5bd;
    transition: color 0.2s;
}

.order-toggle-btn.active {
    background: #E7A800;
    border-color: #d49c00;
    color: white;
}

.order-toggle-btn.active i {
    color: white;
}

.order-toggle-btn:hover {
    border-color: #E7A800;
    background: #fff7e6;
}

.mixed-order-container {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.mixed-order-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a2639;
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.mixed-order-title i {
    color: #E7A800;
    font-size: 1.4rem;
}

.person-selectors {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 20px;
}

.person-selector-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: white;
    border-radius: 50px;
    border: 1px solid #e9ecef;
    transition: all 0.2s;
}

.person-selector-row:hover {
    border-color: #E7A800;
    box-shadow: 0 2px 8px rgba(231,168,0,0.1);
}

.person-number {
    min-width: 90px;
    font-weight: 600;
    color: #1a2639;
    padding-left: 8px;
}

.person-category-select {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: #f8f9fa;
    border-radius: 30px;
    font-size: 0.95rem;
    cursor: pointer;
    outline: none;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.person-category-select:focus {
    border-color: #E7A800;
    background: white;
}

.mixed-order-preview {
    background: white;
    border-radius: 16px;
    padding: 18px;
    margin: 20px 0;
    border-left: 4px solid #E7A800;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.mixed-order-preview h4 {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 15px 0;
    color: #1a2639;
    font-size: 1.1rem;
}

.preview-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
    min-height: 60px;
}

.preview-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 30px;
    font-size: 0.95rem;
}

.preview-item-name {
    display: flex;
    align-items: center;
    gap: 6px;
}

.preview-item-price {
    font-weight: 600;
    color: #28a745;
}

.preview-note {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    padding-top: 8px;
    border-top: 1px dashed #e9ecef;
}

.mixed-order-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 18px 22px;
    background: #e8f5e9;
    border-radius: 50px;
    margin: 20px 0;
    font-size: 1.1rem;
    flex-wrap: wrap;
    gap: 15px;
}

.total-label {
    font-weight: 600;
    color: #1a2639;
}

.total-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #28a745;
    line-height: 1;
}

.per-person {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400;
}

.update-mixed-btn {
    width: 100%;
    background: #E7A800;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #d49c00;
    box-shadow: 0 4px 12px rgba(231,168,0,0.2);
}

.update-mixed-btn:hover {
    background: #d49c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(231,168,0,0.3);
}

.update-mixed-btn i {
    font-size: 1.2rem;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .person-selector-row {
        flex-direction: column;
        align-items: stretch;
        border-radius: 20px;
        gap: 8px;
        padding: 12px;
    }
    
    .person-number {
        padding-left: 0;
    }
    
    .mixed-order-total {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 30px;
    }
    
    .update-mixed-btn {
        padding: 14px 20px;
    }
}

/* ============================================================
   MEIN MENÜ - GEMISCHTE BESTELLUNGEN MIT GETRÄNKEN
   ============================================================ */

.group-order-toggle {
    display: flex;
    gap: 12px;
    margin: 25px 0 20px;
    flex-wrap: wrap;
}

.order-toggle-btn {
    flex: 1 1 200px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 40px;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 1rem;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.order-toggle-btn i {
    font-size: 1.2rem;
    color: #adb5bd;
    transition: color 0.2s;
}

.order-toggle-btn.active {
    background: #E7A800;
    border-color: #d49c00;
    color: white;
}

.order-toggle-btn.active i {
    color: white;
}

.order-toggle-btn:hover {
    border-color: #E7A800;
    background: #fff7e6;
}

.mixed-order-container {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.mixed-order-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a2639;
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.mixed-order-title i {
    color: #E7A800;
    font-size: 1.4rem;
}

.person-selectors {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 20px;
}

.person-card {
    background: white;
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.person-header {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #e9ecef;
}

.person-number {
    font-weight: 700;
    color: #E7A800;
    font-size: 1.1rem;
}

.person-choices {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.choice-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.choice-icon {
    width: 30px;
    text-align: center;
    color: #E7A800;
    font-size: 1.1rem;
}

.person-category-select, .person-drink-select {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: #f8f9fa;
    border-radius: 30px;
    font-size: 0.95rem;
    cursor: pointer;
    outline: none;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.person-category-select:focus, .person-drink-select:focus {
    border-color: #E7A800;
    background: white;
}

.mixed-order-preview {
    background: white;
    border-radius: 16px;
    padding: 18px;
    margin: 20px 0;
    border-left: 4px solid #E7A800;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.mixed-order-preview h4 {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 15px 0;
    color: #1a2639;
    font-size: 1.1rem;
}

.preview-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
}

.preview-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 30px;
    font-size: 0.95rem;
}

.preview-item-name {
    display: flex;
    align-items: center;
    gap: 6px;
}

.preview-item-price {
    font-weight: 600;
    color: #28a745;
}

.preview-drinks-header {
    font-weight: 600;
    color: #1a2639;
    margin: 10px 0 5px;
    padding-top: 8px;
    border-top: 1px solid #e9ecef;
}

.preview-drink {
    background: #fff7e6;
    margin-left: 15px;
}

.preview-totals {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 2px solid #e9ecef;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-around;
}

.preview-subtotal {
    font-size: 0.95rem;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 30px;
}

.preview-grand-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #E7A800;
    padding: 6px 15px;
    background: #fff7e6;
    border-radius: 30px;
}

.mixed-order-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 18px 22px;
    background: #e8f5e9;
    border-radius: 50px;
    margin: 20px 0;
    font-size: 1.1rem;
    flex-wrap: wrap;
    gap: 15px;
}

.total-label {
    font-weight: 600;
    color: #1a2639;
}

.total-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #28a745;
    line-height: 1;
}

.per-person {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400;
}

.update-mixed-btn {
    width: 100%;
    background: #E7A800;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #d49c00;
    box-shadow: 0 4px 12px rgba(231,168,0,0.2);
}

.update-mixed-btn:hover {
    background: #d49c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(231,168,0,0.3);
}

.update-mixed-btn i {
    font-size: 1.2rem;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .choice-row {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
    }
    
    .choice-icon {
        width: auto;
        text-align: left;
        padding-left: 5px;
    }
    
    .person-category-select, .person-drink-select {
        width: 100%;
    }
    
    .preview-totals {
        flex-direction: column;
        gap: 8px;
    }
    
    .preview-subtotal, .preview-grand-total {
        text-align: center;
    }
    
    .mixed-order-total {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 30px;
    }
    
    .update-mixed-btn {
        padding: 14px 20px;
    }
}