/* Payment Page Styles - PeakCloud Studio */

/* === BODY BACKGROUND === */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #454343 0%, #000000 100%);
    min-height: 100vh;
    color: #fff;
    overflow-y: auto;
    overflow-x: hidden;
}

/* === FLOATING ELEMENTS === */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    animation: float 6s ease-in-out infinite;
}

.cloud:nth-child(1) {
    width: 100px;
    height: 50px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cloud:nth-child(2) {
    width: 150px;
    height: 70px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.cloud:nth-child(3) {
    width: 120px;
    height: 60px;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* === MAIN CONTENT CONTAINER === */
.main-content {
    min-height: 100vh;
    padding: 100px 20px 60px;
    overflow-y: visible;
    position: relative;
    z-index: 1;
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.payment-header {
    text-align: center;
    margin-bottom: 40px;
}

.payment-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* === ERROR/SUCCESS MESSAGES === */
.payment-message,
.error-message,
.success-message {
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 500;
    display: none;
}

.payment-error,
.error-message {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
}

.payment-success,
.success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    color: #10b981;
}

/* === PAYMENT TABS === */
.payment-method-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.payment-tab {
    flex: 1;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.payment-tab:last-child {
    border-right: none;
}

.payment-tab:hover:not(.active) {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    transform: translateY(-2px);
}

.payment-tab.active {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transform: translateY(-2px);
}

.payment-tab i,
.payment-tab .payment-icon {
    height: 20px;
    width: 20px;
    flex-shrink: 0;
}

.payment-tab svg.payment-icon {
    height: 20px;
    width: auto;
    max-width: 60px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-tab:not(.active) svg.payment-icon {
    opacity: 0.7;
    filter: grayscale(0.3);
}

.payment-tab.active svg.payment-icon {
    opacity: 1;
    filter: none;
    transform: scale(1.05);
}

.payment-tab:not(.active) i {
    opacity: 0.7;
}

.payment-tab.active i {
    opacity: 1;
}

/* === PAYMENT FORMS === */
.payment-forms {
    position: relative;
}

.payment-form {
    display: none;
    animation: fadeIn 0.3s ease;
}

.payment-form.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === FORM STYLING === */
.form-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.form-section:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateY(-2px);
}

.form-section h3 {
    margin: 0 0 20px 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section h3:before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    border-radius: 2px;
}

.form-grid {
    display: grid;
    gap: 20px;
}

.form-grid.two-columns {
    grid-template-columns: 1fr 1fr;
}

.form-grid.three-columns {
    grid-template-columns: 2fr 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-weight: 500;
    color: var(--text-primary, #111827);
    font-size: 14px;
}

.form-input,
.form-select {
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 500;
}

.form-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ff6b6b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 18px !important;
    padding-right: 50px !important;
    cursor: pointer !important;
    background-color: rgba(255, 107, 107, 0.1) !important;
    border-color: rgba(255, 107, 107, 0.3) !important;
}

.form-select option {
    background: #1a1a1a !important;
    color: #fff !important;
    padding: 14px !important;
    font-weight: 500 !important;
    border: none !important;
}

.form-select option:hover,
.form-select option:checked {
    background: linear-gradient(45deg, #ff6b6b, #ffa500) !important;
    color: #fff !important;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.15);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.2);
    transform: translateY(-1px);
}

.form-select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffa500' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

.form-input:hover:not(:focus),
.form-select:hover:not(:focus) {
    border-color: rgba(255, 107, 107, 0.5) !important;
    background: rgba(255, 107, 107, 0.12) !important;
    transform: translateY(-1px);
}

.form-input.error,
.form-select.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.field-error {
    color: #dc2626;
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
}

/* === CREDIT CARD SPECIFIC === */
.card-logos {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
}

.card-logo {
    height: 24px;
    width: auto;
    transition: opacity 0.2s ease;
}

.card-number-group {
    position: relative;
}

.card-security-info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 12px;
    color: var(--text-secondary, #6b7280);
}

.security-icon {
    width: 16px;
    height: 16px;
}

/* === KLARNA OPTIONS === */
.klarna-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.klarna-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.klarna-option:hover {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.klarna-option input[type="radio"] {
    margin: 0;
}

.klarna-option-content {
    flex: 1;
}

.klarna-option-title {
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}

.klarna-option-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* === PAYSAFE PINS === */
.paysafe-pins {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.paysafe-pin {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.paysafe-pin::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.paysafe-pin:focus {
    outline: none;
    border-color: #ff6b6b;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.add-pin-btn {
    align-self: flex-start;
    padding: 10px 20px;
    background: rgba(255, 107, 107, 0.1);
    border: 2px dashed rgba(255, 107, 107, 0.4);
    border-radius: 10px;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.add-pin-btn:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

/* === PAYPAL NOTICE === */
.paypal-notice {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    padding: 18px;
    margin: 16px 0;
}

.paypal-notice-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.paypal-notice-title:before {
    content: 'ℹ️';
    font-size: 18px;
}

.paypal-notice-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* === PLAN SUMMARY === */
.plan-summary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.plan-summary:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateY(-2px);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price {
    text-align: right;
}

.plan-price-amount {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.plan-features {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.plan-features ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.plan-features li {
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
    font-size: 18px;
}

/* === TOTAL CALCULATION === */
.total-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.total-section:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateY(-2px);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.total-row.subtotal {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 12px;
    padding-bottom: 12px;
}

.total-row.final {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: 12px;
    padding-top: 16px;
}

.total-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.total-amount {
    font-weight: 600;
    color: #fff;
}

/* === TERMS AND CONDITIONS === */
.terms-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.terms-section:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 107, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.checkbox-group:hover {
    background: rgba(255, 107, 107, 0.05);
}

.checkbox-group input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-label a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.checkbox-label a:hover {
    color: #ffa500;
    text-decoration: underline;
}

/* === SUBMIT BUTTON === */
.submit-section {
    text-align: center;
}

.submit-btn {
    width: 100%;
    padding: 18px 36px;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover:not(:disabled) {
    background: linear-gradient(45deg, #ffa500, #ff6b6b);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

.submit-btn:active:not(:disabled) {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

/* === PAYMENT ACTIONS BUTTONS === */
.payment-actions {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    justify-content: space-between;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    flex: 1;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(45deg, #ffa500, #ff6b6b);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

.btn-primary:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: #ff6b6b;
    color: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.button-loading {
    display: none;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .main-content {
        padding: 80px 15px 40px;
    }
    
    .payment-header h1 {
        font-size: 26px;
    }
    
    .payment-method-tabs {
        flex-direction: column;
    }
    
    .payment-tab {
        border-right: none;
        border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    }
    
    .payment-tab:last-child {
        border-bottom: none;
    }
    
    .form-grid.two-columns,
    .form-grid.three-columns {
        grid-template-columns: 1fr;
    }
    
    .plan-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .plan-price {
        text-align: left;
    }
    
    .form-section,
    .plan-summary,
    .total-section,
    .terms-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 70px 10px 30px;
    }
    
    .payment-header h1 {
        font-size: 22px;
    }
    
    .payment-header p {
        font-size: 14px;
    }
    
    .form-section {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .plan-summary,
    .total-section,
    .terms-section {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .payment-tab {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .form-input,
    .form-select {
        padding: 12px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .submit-btn {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    .plan-price-amount {
        font-size: 24px;
    }
}

/* === SECURITY INDICATORS === */
.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.security-icon {
    width: 14px;
    height: 14px;
}

.card-security-info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-section,
.plan-summary,
.total-section,
.terms-section {
    animation: fadeInUp 0.5s ease;
}

/* === CARD TYPE INDICATOR === */
.card-logos {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.card-logo {
    height: 28px;
    width: auto;
    transition: all 0.3s ease;
    opacity: 0.5;
    filter: grayscale(0.5);
}

.card-logo:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.1);
}

/* === LOADING OVERLAY === */
.form-section.loading {
    pointer-events: none;
    opacity: 0.6;
    position: relative;
}

.form-section.loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid rgba(255, 107, 107, 0.2);
    border-top: 3px solid #ff6b6b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* === FOCUS STATES === */
.form-input:focus-visible,
.form-select:focus-visible,
.submit-btn:focus-visible {
    outline: 3px solid rgba(255, 107, 107, 0.5);
    outline-offset: 2px;
}

/* === PAYMENT METHOD ICONS === */
.payment-method-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* === FORM LABEL === */
.form-label {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 8px;
}