/* Gemeinsames CSS der Shop-Seiten.
   Im Altsystem hatte jede der 13 Shop-Views einen eigenen <style>-Block;
   zusammen 2710 Zeilen (55% des View-Codes), mit 56 mehrfach identisch
   definierten Selektoren. Hier einmalig und dedupliziert.
   Die einzigen zwei widerspruechlichen Regeln (.section-header und
   .section-header i, minimal abweichend zwischen Bezahlung und
   BestellungFertig) sind unten ueber .shop-bezahlung gescoped. */

/* Order Success Container */ .order-success-container {
    text-align: center; padding: 50px 30px; background: linear-gradient(135deg, #72c02c 0%, #5fa824 100%); border-radius: 12px; margin-bottom: 30px; box-shadow: 0 4px 20px rgba(114, 192, 44, 0.3);
}

.success-icon {
    margin-bottom: 20px;
}

.success-icon i {
    font-size: 80px; color: #fff; animation: successPulse 2s ease-in-out infinite;
}

0%, 100% {
    transform: scale(1);
}

50% {
    transform: scale(1.1);
}

.success-title {
    margin: 0 0 10px 0; font-size: 32px; font-weight: 700; color: #fff;
}

.success-subtitle {
    margin: 0; font-size: 18px; color: rgba(255, 255, 255, 0.9);
}

/* Section Styling */ .order-details-section, .payment-info-section, .next-steps-section {
    background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; margin-bottom: 20px; overflow: hidden;
}

.section-header {
    background: #f8f9fa; padding: 20px; border-bottom: 1px solid #e0e0e0;
}

.section-header h3 {
    margin: 0; font-size: 20px; font-weight: 600; color: #333;
}

.section-header i {
    margin-right: 10px; color: #72c02c;
}

.section-body {
    padding: 25px;
}

/* Order Details */ .detail-row {
    display: flex; justify-content: space-between; align-items: center; padding: 15px; border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 15px; color: #666; font-weight: 500;
}

.detail-label i {
    margin-right: 8px; color: #72c02c; width: 20px; text-align: center;
}

.detail-value {
    font-size: 16px; font-weight: 600; color: #333;
}

.order-number {
    font-size: 18px; color: #72c02c; font-weight: 700;
}

.total-amount {
    font-size: 20px; color: #72c02c;
}

/* Payment Info Section */ .payment-info-vorkasse {
    border: 2px solid #ffc107;
}

.payment-info-paypal {
    border: 2px solid #72c02c;
}

.payment-info-header {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%); padding: 20px; color: #fff; display: flex; align-items: center; gap: 15px;
}

.payment-info-paypal .payment-info-header {
    background: linear-gradient(135deg, #72c02c 0%, #5fa824 100%);
}

.payment-info-header i {
    font-size: 32px;
}

.payment-info-header h3 {
    margin: 0; font-size: 20px; font-weight: 600;
}

.payment-info-body {
    padding: 25px;
}

/* Bank Details */ .bank-details {
    background: #f8f9fa; border: 1px solid #e0e0e0; border-radius: 8px; padding: 20px; margin-bottom: 20px;
}

.bank-detail-row {
    display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #e0e0e0;
}

.bank-detail-row:last-child {
    border-bottom: none;
}

.bank-detail-row.important {
    background: #fff3cd; margin: 15px -20px -20px -20px; padding: 15px 20px; border-bottom: none;
}

.bank-label {
    font-weight: 600; color: #555; font-size: 14px;
}

.bank-value {
    color: #333; font-size: 15px;
}

.bank-value.code {
    font-family: 'Courier New', monospace; font-weight: 600; letter-spacing: 1px;
}

.bank-value.highlight {
    color: #72c02c; font-weight: 700; font-size: 18px;
}

/* Payment Notice */ .payment-notice {
    display: flex; align-items: flex-start; gap: 12px; padding: 15px; background: #fff3cd; border-left: 3px solid #ffc107; border-radius: 6px;
}

.payment-notice i {
    font-size: 20px; color: #ffc107; margin-top: 2px; flex-shrink: 0;
}

.payment-notice p {
    margin: 0; color: #856404; line-height: 1.6;
}

/* Payment Success Message */ .payment-success-message {
    display: flex; align-items: flex-start; gap: 12px; padding: 15px; background: #d4edda; border-left: 3px solid #72c02c; border-radius: 6px;
}

.payment-success-message i {
    font-size: 24px; color: #72c02c; flex-shrink: 0;
}

.payment-success-message p {
    margin: 0; color: #155724; line-height: 1.6;
}

/* Next Steps */ .step-item {
    display: flex; gap: 20px; margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid #e0e0e0;
}

.step-item:last-child {
    margin-bottom: 0; padding-bottom: 0; border-bottom: none;
}

.step-number {
    flex-shrink: 0; width: 40px; height: 40px; background: linear-gradient(135deg, #72c02c 0%, #5fa824 100%); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700;
}

.step-content h4 {
    margin: 0 0 8px 0; font-size: 18px; font-weight: 600; color: #333;
}

.step-content p {
    margin: 0; color: #666; line-height: 1.6;
}

/* Thank You Section */ .thank-you-section {
    background: #f8f9fa; border-radius: 8px; padding: 40px 30px; text-align: center; margin-bottom: 30px;
}

.thank-you-content {
    margin-bottom: 30px;
}

.thank-you-content i {
    font-size: 50px; color: #e74c3c; margin-bottom: 15px;
}

.thank-you-content h3 {
    margin: 0 0 10px 0; font-size: 24px; font-weight: 600; color: #333;
}

.thank-you-content p {
    margin: 0; font-size: 16px; color: #666;
}

.action-buttons {
    display: flex; gap: 15px; justify-content: center; flex-wrap: wrap;
}

.action-buttons .btn-u {
    min-width: 200px;
}

/* Contact Help Section */ .contact-help-section {
    background: #fff; border: 2px solid #e0e0e0; border-radius: 8px; padding: 30px; margin-top: 30px;
}

.contact-help-content {
    display: flex; align-items: center; gap: 20px; margin-bottom: 30px; padding: 20px; background: #f0f4ff; border-left: 4px solid #3498db; border-radius: 6px;
}

.contact-help-content i {
    font-size: 40px; color: #3498db; flex-shrink: 0;
}

.contact-help-content h4 {
    margin: 0 0 5px 0; font-size: 18px; font-weight: 600; color: #333;
}

.contact-help-content p {
    margin: 0; color: #555;
}

@media (max-width: 768px) {
        .success-icon i {
            font-size: 60px;
        }

        .success-title {
            font-size: 24px;
        }

        .success-subtitle {
            font-size: 16px;
        }

        .order-success-container {
            padding: 40px 20px;
        }

        .section-header {
            padding: 15px;
        }

        .section-body {
            padding: 15px;
        }

        .detail-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .bank-detail-row {
            flex-direction: column;
            gap: 5px;
        }

        .step-item {
            gap: 15px;
        }

        .step-number {
            width: 35px;
            height: 35px;
            font-size: 16px;
        }

        .thank-you-section {
            padding: 30px 20px;
        }

        .action-buttons {
            flex-direction: column;
        }

            .action-buttons .btn-u {
                width: 100%;
            }

        .contact-help-content {
            flex-direction: column;
            text-align: center;
        }
    }

@media (max-width: 480px) {
        .success-icon i {
            font-size: 50px;
        }

        .success-title {
            font-size: 20px;
        }

        .payment-info-header {
            flex-direction: column;
            text-align: center;
        }

            .payment-info-header i {
                font-size: 28px;
            }
    }

/* Checkout Form */ .checkout-form {
    margin-bottom: 30px;
}

/* Validation Summary - oben platziert */ .validation-summary-checkout {
    background-color: #e74c3c; border-color: #c0392b; color: #fff !important; padding: 15px 20px; border-radius: 6px; margin-bottom: 30px; border-left: 4px solid #c0392b; box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.validation-summary-checkout ul {
    margin: 0; padding-left: 20px; color: #fff;
}

.validation-summary-checkout li {
    color: #fff !important; font-size: 14px; font-weight: 500; margin-bottom: 5px;
}

.validation-summary-checkout::before {
    content: "\f071"; font-family: FontAwesome; margin-right: 10px; font-size: 18px;
}

/* Checkout Sections */ .checkout-section {
    background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; margin-bottom: 20px; overflow: hidden;
}

.section-number {
    display: flex; align-items: center; justify-content: center; width: 35px; height: 35px; background: linear-gradient(135deg, #72c02c 0%, #5fa824 100%); color: #fff; border-radius: 50%; font-weight: 700; font-size: 16px; flex-shrink: 0;
}

/* Address Cards */ .address-card {
    background: #f8f9fa; border: 1px solid #e0e0e0; border-radius: 6px; padding: 20px; margin-bottom: 15px;
}

.address-title {
    margin: 0 0 15px 0; font-size: 16px; font-weight: 600; color: #333; border-bottom: 2px solid #72c02c; padding-bottom: 10px;
}

.address-title i {
    color: #72c02c; margin-right: 8px;
}

.address-content p {
    margin: 5px 0; color: #555; line-height: 1.6;
}

.address-content p strong {
    color: #333;
}

.address-content i {
    color: #72c02c; margin-right: 5px;
}

/* Shipping Method */ .shipping-method {
    display: flex; align-items: center; gap: 12px; padding: 15px; background: #f0f9ea; border: 1px solid #72c02c; border-radius: 6px;
}

.shipping-method i {
    font-size: 24px; color: #72c02c;
}

.shipping-method span {
    font-size: 16px; font-weight: 600; color: #333;
}

/* Order Items */ .order-items {
    display: flex; flex-direction: column; gap: 15px;
}

.order-item {
    display: flex; align-items: center; gap: 15px; padding: 15px; background: #f8f9fa; border: 1px solid #e0e0e0; border-radius: 6px;
}

.order-item-image {
    flex-shrink: 0; width: 80px; height: 80px; border-radius: 4px; overflow: hidden; background: #fff; display: flex; align-items: center; justify-content: center;
}

.order-item-image img {
    max-width: 100%; max-height: 100%; object-fit: contain;
}

.order-item-details {
    flex: 1;
}

.order-item-details h5 {
    margin: 0 0 8px 0; font-size: 15px; font-weight: 600; color: #333;
}

.order-item-meta {
    display: flex; flex-wrap: wrap; gap: 10px; font-size: 14px; color: #666;
}

.order-item-meta .quantity {
    font-weight: 500;
}

.order-item-meta .price {
    font-weight: 600; color: #333;
}

.order-item-meta .discount-badge {
    display: inline-block; background: #72c02c; color: #fff; padding: 2px 8px; border-radius: 3px; font-size: 11px; font-weight: 500;
}

.order-item-total {
    flex-shrink: 0; font-size: 18px; font-weight: 700; color: #333;
}

/* Payment Widget - min-height stammte vom alten eingebetteten PayPal-Plus-
   Widget (reservierter Platz fürs iFrame), das entfallen ist (siehe
   Kommentar in Checkout.cshtml). Ohne Widget zwingt sie die Box unnötig auf
   300px, selbst wenn der eigentliche Inhalt (Hinweistext oder wenige
   Zahlart-Karten) viel kürzer ist. */

/* Mollie-Zahlartenauswahl - Optik an .sky-select angeglichen (Rahmen, Radius,
   Grün-Akzent), aber als anklickbare Karten statt Dropdown, da Mollie pro
   Zahlart ein eigenes Icon liefert. */
.mollie-methods {
    display: flex; flex-direction: column; gap: 10px; margin: 15px 0;
}

.mollie-method-option {
    position: relative;
}

.mollie-method-input {
    position: absolute; opacity: 0; width: 0; height: 0;
}

.mollie-method-label {
    display: flex; align-items: center; gap: 15px; width: 100%; margin: 0; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; background-color: #fff; color: #333; font-size: 14px; font-weight: 400; cursor: pointer; transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.mollie-method-label:hover {
    border-color: #72c02c;
}

.mollie-method-input:checked + .mollie-method-label {
    border-color: #72c02c; box-shadow: 0 0 5px rgba(114, 192, 44, 0.3); background-color: #f7fdf2;
}

.mollie-method-input:focus-visible + .mollie-method-label {
    outline: 2px solid #72c02c; outline-offset: 2px;
}

.mollie-methode-icon {
    flex-shrink: 0; object-fit: contain;
}

/* Terms and Conditions */ .terms-info {
    background: #f0f4ff; border-left: 3px solid #3498db; padding: 15px; border-radius: 6px; margin-bottom: 20px;
}

.terms-info p {
    margin: 0; color: #555; line-height: 1.6;
}

.terms-info i {
    color: #3498db; margin-right: 8px;
}

.terms-info a {
    color: #3498db; font-weight: 600;
}

.terms-checkbox {
    display: flex; align-items: flex-start; gap: 10px;
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 4px; width: 18px; height: 18px; cursor: pointer;
}

.terms-checkbox label {
    flex: 1; color: #555; line-height: 1.6; cursor: pointer; margin: 0;
}

.terms-checkbox a {
    color: #72c02c; font-weight: 600;
}

.required {
    color: #e74c3c; font-weight: bold;
}

/* Order Summary */ .order-summary {
    background: #fff; border: 2px solid #e0e0e0; border-radius: 8px; overflow: hidden; position: sticky; top: 20px;
}

.order-summary-header {
    background: linear-gradient(135deg, #72c02c 0%, #5fa824 100%); padding: 20px; color: #fff;
}

.order-summary-header h3 {
    margin: 0; font-size: 20px; font-weight: 600;
}

.order-summary-header i {
    margin-right: 8px;
}

.order-summary-body {
    padding: 20px;
}

.summary-row {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px;
}

.summary-label {
    color: #555; font-size: 14px;
}

.summary-value {
    font-weight: 600; color: #333; font-size: 15px;
}

.summary-divider {
    height: 1px; background: #e0e0e0; margin: 15px 0;
}

.summary-total {
    margin-top: 15px;
}

.summary-total .summary-label {
    font-size: 16px; font-weight: 600; color: #333;
}

.summary-total .summary-value {
    font-size: 22px; color: #72c02c;
}

.summary-tax {
    font-size: 13px; color: #777;
}

.summary-tax .summary-value {
    font-size: 13px; font-weight: 500;
}

/* Shipping Info */ .shipping-info {
    display: flex; align-items: flex-start; gap: 10px; padding: 12px; border-radius: 6px; margin: 15px 0;
}

.shipping-info i {
    font-size: 18px; margin-top: 2px; flex-shrink: 0;
}

.shipping-info p {
    margin: 0; font-size: 13px; line-height: 1.5;
}

.shipping-info-warning {
    background: #fff3cd; border-left: 3px solid #ffc107; color: #856404;
}

.shipping-info-warning i {
    color: #ffc107;
}

.shipping-info-success {
    background: #d4edda; border-left: 3px solid #72c02c; color: #155724;
}

.shipping-info-success i {
    color: #72c02c;
}

/* Order Summary Footer */ .order-summary-footer {
    padding: 20px; background: #f8f9fa;
}

.btn-order {
    background: linear-gradient(135deg, #72c02c 0%, #5fa824 100%); border: none; font-size: 16px; font-weight: 600; padding: 18px 20px; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; gap: 8px;
}

.btn-order:hover {
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(114, 192, 44, 0.4);
}

.btn-order-text {
    display: flex; align-items: center; gap: 8px;
}

.btn-order-text i {
    font-size: 18px;
}

.btn-order-amount {
    font-size: 22px; font-weight: 700; letter-spacing: 0.5px;
}

/* Security Info */ .checkout-security-info {
    margin-top: 20px; padding: 20px; background: #f8f9fa; border-radius: 8px;
}

.security-item {
    display: flex; align-items: center; gap: 12px; padding: 10px 0; color: #555;
}

.security-item i {
    font-size: 20px; color: #72c02c; width: 30px; text-align: center;
}

.security-item span {
    font-size: 14px; font-weight: 500;
}

/* Error Messages */ .error-message {
    display: block; color: #e74c3c; font-size: 13px; margin-top: 8px;
}

@media (max-width: 768px) {
        .order-item {
            flex-direction: column;
            align-items: flex-start;
        }

        .order-item-image {
            width: 100%;
            height: 150px;
        }

        .order-item-total {
            width: 100%;
            text-align: right;
        }

        .order-summary {
            position: static;
            margin-top: 30px;
        }

        .section-header {
            padding: 15px;
        }

        .section-body {
            padding: 15px;
        }

        .summary-total .summary-value {
            font-size: 18px;
        }

        .btn-order-amount {
            font-size: 20px;
        }
    }

.sky-form section {
    margin-bottom: 20px;
}

.sky-form .label {
    font-weight: 600; color: #555; margin-bottom: 8px; display: block;
}

.sky-form .input {
    position: relative; display: block;
}

.sky-form .input i.icon-append {
    position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: #999; z-index: 10;
}

.sky-form .input input {
    width: 100%; padding: 12px 40px 12px 15px; border: 1px solid #ddd; border-radius: 4px; transition: all 0.3s ease;
}

.sky-form .input input:focus {
    border-color: #72c02c; outline: none; box-shadow: 0 0 5px rgba(114, 192, 44, 0.3);
}

.sky-form footer {
    margin-top: 25px;
}

/* Vertikale Trennlinie */ .kundendaten-divider {
    position: relative; height: 100%; min-height: 300px; display: flex; align-items: center; justify-content: center;
}

.kundendaten-divider::before {
    content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: #ddd;
}

.kundendaten-divider span {
    position: relative; background: #fff; padding: 8px 4px; color: #999; font-size: 13px; z-index: 1;
}

/* Service Blocks */ .service-block {
    padding: 20px; border-radius: 4px; background: #f7f7f7; transition: all 0.3s ease;
}

.service-block:hover {
    transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-block-blue {
    border-left: 3px solid #3498db;
}

.service-block-default {
    border-left: 3px solid #95a5a6;
}

.service-block-green {
    border-left: 3px solid #72c02c;
}

.service-block .heading-md {
    font-size: 18px; margin: 0 0 10px 0; color: #555; font-weight: 600;
}

.service-block p {
    margin: 0; color: #777; font-size: 14px; line-height: 1.6;
}

.icon-custom {
    display: inline-block; width: 50px; height: 50px; line-height: 50px; text-align: center; border-radius: 50%; margin-bottom: 15px;
}

.icon-md {
    font-size: 24px;
}

.icon-bg-blue {
    background: #3498db; color: #fff;
}

.icon-bg-grey {
    background: #95a5a6; color: #fff;
}

.icon-bg-green {
    background: #72c02c; color: #fff;
}

.btn-block {
    display: block; width: 100%; text-align: center;
}

.alert-danger {
    background-color: #f2dede; border-color: #ebccd1; color: #a94442; padding: 15px; border-radius: 4px; margin-bottom: 20px;
}

.text-danger {
    color: #a94442; display: block; margin-top: 5px; font-size: 13px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-top-20 {
    margin-top: 20px;
}

@media (max-width: 768px) {
        .service-block {
            margin-bottom: 15px;
        }

        .kundendaten-divider {
            display: none;
        }
    }

.select-wrapper {
    position: relative; display: block;
}

.sky-select {
    width: 100%; padding: 10px 40px 10px 15px; height: 44px; border: 1px solid #ddd; border-radius: 4px; background-color: #fff; color: #333; font-size: 14px; appearance: none; -webkit-appearance: none; -moz-appearance: none; cursor: pointer; transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sky-select:focus {
    border-color: #72c02c; outline: none; box-shadow: 0 0 5px rgba(114, 192, 44, 0.3);
}

.sky-select option {
    color: #333; background-color: #fff;
}

.select-arrow {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: #999; font-size: 12px; pointer-events: none;
}

.service-block {
    padding: 20px; border-radius: 4px; background: #f7f7f7; transition: all 0.3s ease;
}

@media (max-width: 768px) {
        .service-block {
            margin-bottom: 15px;
        }
    }

/* Anpassung an bestehendes Theme */ .sky-form {
    margin-top: 20px;
}

/* Service Blocks Styling */ .service-block {
    padding: 20px; border-radius: 4px; background: #f7f7f7; transition: all 0.3s ease;
}

.service-block .icon-custom {
    margin-bottom: 15px;
}

/* Icon Styling */ .icon-custom {
    display: inline-block; width: 50px; height: 50px; line-height: 50px; text-align: center; border-radius: 50%;
}

/* Button Anpassungen */ .btn-block {
    display: block; width: 100%; text-align: center;
}

/* Alert Styling */ .alert-info {
    background-color: #d9edf7; border-color: #bce8f1; color: #31708f; padding: 15px; border-radius: 4px; border-left: 3px solid #31708f;
}

.margin-left-10 {
    margin-left: 10px;
}

.alert-success {
    background-color: #dff0d8; border-color: #d6e9c6; color: #3c763d; padding: 15px; border-radius: 4px; border-left: 3px solid #3c763d; overflow: hidden;
}

.alert-success p {
    margin-bottom: 0;
}

.margin-right-15 {
    margin-right: 15px;
}

.margin-top-5 {
    margin-top: 5px;
}

.sky-form {
    margin-top: 20px;
}

/* ── Dropdown-Styling ── */ .select-wrapper {
    position: relative; display: block;
}

.sky-select option:first-child {
    color: #999;
}

/* ── Service Blocks ── */ .service-block {
    padding: 20px; border-radius: 4px; background: #f7f7f7; transition: all 0.3s ease;
}

/* Cart Items Container */ .cart-items {
    margin-bottom: 30px;
}

/* Individual Cart Item */ .cart-item {
    display: flex; align-items: flex-start; gap: 20px; background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 20px; margin-bottom: 15px; transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); border-color: #72c02c;
}

/* Cart Item Image */ .cart-item-image {
    flex-shrink: 0; width: 120px; height: 120px; border-radius: 6px; overflow: hidden; background: #f8f9fa; display: flex; align-items: center; justify-content: center;
}

.cart-item-image img {
    max-width: 100%; max-height: 100%; object-fit: contain;
}

/* Cart Item Details */ .cart-item-details {
    flex: 1;
}

.cart-item-title {
    margin: 0 0 15px 0; font-size: 18px; font-weight: 600; color: #333;
}

.cart-item-meta {
    display: flex; gap: 20px; flex-wrap: wrap;
}

.cart-item-quantity, .cart-item-price, .cart-item-total {
    flex: 1; min-width: 120px;
}

.cart-item-meta label {
    display: block; font-size: 13px; color: #777; margin-bottom: 5px; font-weight: 500;
}

.quantity-select {
    max-width: 80px; padding: 8px; border: 1px solid #ddd; border-radius: 4px;
}

.price-value, .total-value {
    font-size: 16px; font-weight: 600; color: #333;
}

.discount-badge {
    display: inline-block; background: #72c02c; color: #fff; padding: 2px 8px; border-radius: 3px; font-size: 11px; margin-left: 5px; font-weight: 500;
}

/* Cart Item Actions */ .cart-item-actions {
    flex-shrink: 0;
}

.btn-remove {
    display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: #f8f9fa; color: #e74c3c; transition: all 0.3s ease; text-decoration: none; font-size: 17px !important; font-weight: bold; border: none;
}

/* Continue Shopping Button */ .cart-continue-shopping {
    margin-top: 20px;
}

/* Cart Summary */ .cart-summary {
    background: #fff; border: 2px solid #e0e0e0; border-radius: 8px; overflow: hidden; position: sticky; top: 20px;
}

.cart-summary-header {
    background: linear-gradient(135deg, #72c02c 0%, #5fa824 100%); padding: 20px; color: #fff;
}

.cart-summary-header h3 {
    margin: 0; font-size: 20px; font-weight: 600;
}

.cart-summary-header i {
    margin-right: 8px;
}

.cart-summary-body {
    padding: 20px;
}

/* Cart Summary Footer */ .cart-summary-footer {
    padding: 20px; background: #f8f9fa;
}

.btn-checkout {
    background: linear-gradient(135deg, #72c02c 0%, #5fa824 100%); border: none; font-size: 16px; font-weight: 600; padding: 15px; transition: all 0.3s ease;
}

.btn-checkout:hover {
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(114, 192, 44, 0.4);
}

.btn-checkout i {
    margin-right: 8px;
}

/* Security Info */ .cart-security-info {
    margin-top: 20px; padding: 20px; background: #f8f9fa; border-radius: 8px;
}

/* Empty Cart */ .cart-empty {
    text-align: center; padding: 80px 20px; background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cart-empty-icon {
    margin-bottom: 30px;
}

.cart-empty-icon i {
    font-size: 80px; color: #ddd;
}

.cart-empty h2 {
    margin: 0 0 15px 0; color: #555; font-size: 28px;
}

.cart-empty p {
    color: #777; font-size: 16px; margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto;
}

@media (max-width: 768px) {
        .cart-item {
            flex-direction: column;
            gap: 15px;
        }

        .cart-item-image {
            width: 100%;
            height: 180px;
        }

        .cart-item-meta {
            flex-direction: column;
            gap: 15px;
        }

        .cart-item-quantity,
        .cart-item-price,
        .cart-item-total {
            min-width: 100%;
        }

        .cart-summary {
            position: static;
            margin-top: 30px;
        }

        .cart-empty {
            padding: 50px 15px;
        }

        .cart-empty-icon i {
            font-size: 60px;
        }

        .cart-empty h2 {
            font-size: 24px;
        }
    }

@media (max-width: 480px) {
        .summary-total .summary-value {
            font-size: 18px;
        }
    }

/* Nur Bezahlung-Seite (abweichend von BestellungFertig) */
.shop-bezahlung .section-header {
    background: #f8f9fa; padding: 20px; border-bottom: 1px solid #e0e0e0; display: flex; align-items: center; gap: 15px;
}

.shop-bezahlung .section-header i {
    margin-right: 8px; color: #72c02c;
}
