/* =========================================
   AdminCheckout - Corporate B2B Checkout
   Senior Approach: Clean, Maintainable CSS
   ========================================= */

/* Container */
.modern-cart-container {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* Seller Group */
.seller-group {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.seller-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.seller-info {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
}

.seller-info i {
    color: #0e947a;
}

.seller-checkbox {
    position: relative;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seller-checkbox-input {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid rgba(14, 148, 122, 0.35);
    cursor: pointer;
    accent-color: #0e947a;
}

.seller-checkbox-input:checked {
    background-color: #0e947a;
    border-color: #0e947a;
}

.seller-name {
    color: #0f172a;
}

.seller-total {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

/* Products List */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 12px;
    padding: 0.75rem;
}

.product-card {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 1rem;
    align-items: flex-start;
    /* Changed from center to start for stability */
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: opacity 0.2s ease;
    position: relative;
    min-height: 100px;
}

.product-card .product-image {
    margin-right: 0;
}

.product-card.passive {
    opacity: 0.6;
    background: #f1f5f9;
}

/* Product Remove Button - Top Right */
.product-remove-section {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 20;
    pointer-events: auto;
}

.product-remove-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.product-remove-btn:hover:not(:disabled) {
    background: rgba(239, 68, 68, 0.2);
    color: #dc2626;
    transform: scale(1.1);
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

.product-remove-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-checkbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    /* Match product image height to align vertically with image */
}

.product-checkbox-input {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid rgba(14, 148, 122, 0.35);
    cursor: pointer;
    accent-color: #0e947a;
}

.product-checkbox-input:checked {
    background-color: #0e947a;
    border-color: #0e947a;
}

.product-image {
    position: relative;
    flex-shrink: 0;
}

.product-image img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 0.3rem;
    display: block;
}


.product-image-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.5rem;
}

.product-image-placeholder i {
    opacity: 0.6;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
    overflow: hidden;
    position: relative;
    padding-right: 0;
    margin-left: 0.75rem;
}

.product-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding-right: 35px;
    position: relative;
}

.product-name {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    max-width: 100%;
    flex: 1;
    min-width: 0;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-section {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.unit-price {
    color: #64748b;
    font-size: 0.85rem;
}

.unit-price.strikethrough {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.8rem;
}

.total-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0e947a;
}

/* Quantity Controls - Modern Design like CartPage */
.quantity-section {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    flex-shrink: 0;
}

.quantity-controls {
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #f8fafc;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.8rem;
    border-right: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.qty-btn:last-of-type {
    border-right: none;
    border-left: 1px solid #e2e8f0;
}

.qty-btn:hover:not(:disabled) {
    background: #f1f5f9;
    color: #0f172a;
}

.qty-btn:active:not(:disabled) {
    background: #e2e8f0;
}

.qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f8fafc;
}

.qty-input {
    width: 45px;
    height: 32px;
    border: none;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #0f172a;
    background: #ffffff;
    padding: 0;
    -moz-appearance: textfield;
    appearance: textfield;
    flex-shrink: 0;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input:focus {
    outline: none;
    background: #ffffff;
    border-color: #0e947a;
    box-shadow: 0 0 0 2px rgba(14, 148, 122, 0.1);
}

/* Discounts */
/* Product Promotions (Discounts & Savings) */
.product-promotions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.35rem;
}

.promo-badge,
.savings-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
}

.promo-badge {
    background: rgba(14, 148, 122, 0.1);
    color: #0e947a;
}

.promo-badge i {
    font-size: 0.7rem;
}

.savings-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
}

.savings-badge i {
    font-size: 0.7rem;
}

.seller-discounts {
    background: #f0fdf4;
    border-radius: 8px;
    padding: 0.75rem;
    border: 1px solid rgba(14, 148, 122, 0.2);
}

.discounts-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #0f172a;
}

.discounts-header i {
    color: #0e947a;
}

.discounts-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.discount-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: #ffffff;
    border-radius: 8px;
    font-size: 0.9rem;
}

.discount-name {
    color: #0f172a;
    font-weight: 500;
}

.discount-value {
    color: #0e947a;
    font-weight: 700;
}

/* Cargo Selection */
.seller-cargo-container {
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.75rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.cargo-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #0f172a;
}

.cargo-header i {
    color: #0e947a;
}

.cargo-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cargo-radio-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem;
    align-items: center;
    padding: 0.6rem 0.75rem;
    cursor: pointer;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    background: #ffffff;
}

.cargo-radio-item:hover {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

.cargo-radio-item.selected {
    background: #f0fdf4;
    border-color: #0e947a;
    box-shadow: 0 1px 3px rgba(14, 148, 122, 0.1);
}

.radio-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: #fff;
    flex-shrink: 0;
}

.cargo-radio-item.selected .radio-circle {
    border-color: #0e947a;
    background: #fff;
}

.radio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0e947a;
}

.cargo-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cargo-name {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
}

.cargo-delivery {
    font-size: 0.85rem;
    color: #64748b;
}

.cargo-price {
    font-weight: 700;
    color: #0e947a;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Seller Footer */
.seller-footer {
    border-top: 1px dashed rgba(148, 163, 184, 0.3);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.seller-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    font-weight: 600;
    color: #0f172a;
    font-size: 1rem;
}

.summary-price {
    font-weight: 700;
    color: #0e947a;
    font-size: 1.1rem;
}

/* Order Summary Card */
.order-summary-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 25px 45px -35px rgba(15, 23, 42, 0.25);
    padding: 1.5rem;
    /* Slightly reduced padding for compactness */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    /* Prevent any accidental internal spill */
}

/* Ensure ALL child inputs stay within bounds */
.order-summary-card .rz-dropdown,
.order-summary-card .order-note-input,
.order-summary-card select,
.order-summary-card textarea,
.order-summary-card .rz-lookup {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 0.5rem;
}

.summary-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.summary-totals {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.45);
    padding-top: 1.1rem;
}

.total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
}

.total-row.discount-row {
    color: #0e947a;
}

.total-row.final-total {
    font-size: 1.25rem;
}

.final-price {
    color: #0e947a;
    font-weight: 700;
}

.checkout-section {
    display: flex;
}

.btn-checkout {
    flex: 1;
    border-radius: 14px;
    border: none;
    padding: 1rem 1.25rem;
    font-weight: 700;
    background: #0e947a;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-checkout:hover:not(:disabled) {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(14, 148, 122, 0.3);
}

.btn-checkout:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Delivery Info */
.delivery-info-header {
    font-size: 0.95rem;
    color: #0f172a;
}

.delivery-info-header i {
    color: #0e947a;
}

.delivery-info-content {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
}

.delivery-info-name {
    color: #0f172a;
}

/* Order Note */
.order-note-label {
    color: #0f172a;
}

.order-note-input {
    font-size: 0.85rem;
    border-radius: 8px;
}

/* Discount Summaries Section */
.discounts-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 12px;
    border: 1px solid rgba(14, 148, 122, 0.2);
}

.discount-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.discount-info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #0f172a;
    font-size: 0.9rem;
}

.discount-info i {
    color: #0e947a;
}

.discount-percentage {
    color: #64748b;
    font-weight: 500;
    font-size: 0.85rem;
}

.discount-amount {
    font-weight: 700;
    color: #0e947a;
    font-size: 0.95rem;
}

/* Loading States */
.cart-update-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    /* Slate-900 with opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    transition: all 0.3s ease;
}

.cart-update-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(14, 148, 122, 0.2);
    border-radius: 50%;
    border-top-color: #10b981;
    animation: cart-spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

@keyframes cart-spin {
    to {
        transform: rotate(360deg);
    }
}

.cart-update-spinner .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}

.spinner-text {
    font-weight: 600;
    color: #0e947a;
    font-size: 1rem;
}

.quantity-controls.updating {
    position: relative;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.5rem;
}

.checkbox-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.seller-checkbox .checkbox-loading {
    width: 22px;
    height: 22px;
}

.product-checkbox-wrapper .checkbox-loading {
    width: 20px;
    height: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .products-list {
        gap: 0.5rem;
        padding: 0.5rem;
        border-radius: 8px;
    }

    .product-card {
        grid-template-columns: auto 1fr auto;
        gap: 0.5rem;
        padding: 0.6rem 0.75rem;
        border-radius: 8px;
    }

    .product-checkbox-wrapper {
        grid-row: 1;
        grid-column: 1;
    }

    .product-image {
        grid-row: 1;
        grid-column: 2;
    }

    .product-details {
        grid-row: 1;
        grid-column: 2;
        margin-left: 0.5rem;
    }

    .product-remove-section {
        top: 0.4rem;
        right: 0.4rem;
    }

    .product-remove-btn {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .product-image img {
        width: 60px;
        height: 60px;
        border-radius: 6px;
        padding: 0.25rem;
    }

    .product-name {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .product-actions {
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .price-section {
        gap: 0.15rem;
        flex: 1;
        min-width: 0;
    }

    .unit-price {
        font-size: 0.8rem;
    }

    .total-price {
        font-size: 0.9rem;
    }

    .quantity-section {
        margin-left: auto;
        flex-shrink: 0;
    }

    .quantity-controls {
        width: auto;
        justify-content: flex-end;
    }

    .product-promotions {
        gap: 0.25rem;
        margin-top: 0.25rem;
    }

    .promo-badge,
    .savings-badge {
        padding: 0.2rem 0.4rem;
        font-size: 0.65rem;
    }

    .seller-group {
        padding: 1rem 1.2rem;
        border-radius: 12px;
    }

    .seller-header {
        gap: 1rem;
    }

    .seller-info {
        font-size: 0.95rem;
    }

    .seller-total {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .product-card {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .product-checkbox-wrapper {
        grid-row: 1;
        grid-column: 1;
        justify-self: start;
    }

    .product-image {
        grid-row: 2;
        grid-column: 1;
        justify-self: start;
    }

    .product-details {
        grid-row: 3;
        grid-column: 1;
        margin-left: 0;
    }

    .product-remove-section {
        top: 0.4rem;
        right: 0.4rem;
    }

    .product-remove-btn {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .product-actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }

    .price-section {
        flex: 1;
        min-width: 0;
    }

    .quantity-section {
        margin-left: auto;
        flex-shrink: 0;
        width: auto;
    }

    .quantity-controls {
        width: auto;
        max-width: none;
        margin: 0;
        justify-content: flex-end;
    }
}


/* Robust 3D Secure Modal (Senior Approach - Ultra Refined) */
.modern-checkout-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    /* Match standard dialog range */
    background-color: rgba(0, 0, 0, 0.5);
    /* Lighter shadow */
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.modern-checkout-modal-overlay.open {
    display: flex;
    pointer-events: auto;
}

.modern-checkout-modal-content {
    background-color: #ffffff !important;
    border-radius: 24px !important;
    width: 520px !important;
    max-width: 90% !important;
    height: auto !important;
    min-height: 520px !important;
    max-height: 90vh !important;
    box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.6) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    animation: modalSpringIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.modern-checkout-modal-header {
    padding: 1.25rem 1.75rem !important;
    background: #f8fafc !important;
    border-bottom: 1px solid #e2e8f0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.modern-checkout-modal-header h4 {
    margin: 0 !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
}

.btn-close-modal {
    background: #f1f5f9 !important;
    border: none !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
    color: #64748b !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.btn-close-modal:hover {
    background: #e2e8f0 !important;
    color: #ef4444 !important;
    transform: rotate(90deg) !important;
}

.modern-checkout-modal-body {
    padding: 0 !important;
    flex: 1 !important;
    background: #fff !important;
}

.three-d-iframe {
    width: 100% !important;
    height: 520px !important;
    border: none !important;
    display: block !important;
}

@keyframes modalSpringIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Payment Selection Modern */
.card-type-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.payment-radio-option-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
}

.payment-radio-option-modern:hover {
    border-color: #0e947a;
    background: #f0fdf4;
}

.payment-radio-option-modern.selected {
    border-color: #0e947a;
    background: #f0fdf4;
    box-shadow: 0 4px 6px -1px rgba(14, 148, 122, 0.1);
}

.payment-radio-option-modern input[type="radio"] {
    accent-color: #0e947a;
    width: 18px;
    height: 18px;
}

.installment-list-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.installment-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
}

.installment-item-modern:hover {
    border-color: #0e947a;
    background: #f0fdf4;
}

.installment-item-modern.selected {
    border-color: #0e947a;
    background: #f0fdf4;
    box-shadow: 0 4px 6px -1px rgba(14, 148, 122, 0.1);
}

.inst-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.inst-info input[type="radio"] {
    accent-color: #0e947a;
}

.inst-total {
    font-weight: 700;
    color: #0e947a;
    font-size: 0.95rem;
}

.form-control-modern {
    border-radius: 10px;
    border: 1.5px solid rgba(15, 23, 42, 0.08);
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
}

.form-control-modern:focus {
    border-color: #0e947a;
    box-shadow: 0 0 0 3px rgba(14, 148, 122, 0.1);
}

.maturity-row span {
    font-weight: 700;
}