/**
 * Styles WooCommerce - Template Toolbox
 * Intégration des styles WooCommerce avec le design system
 * 
 * @package Toolbox
 * @version 1.0.0
 * @author Figaro 3D Immo
 */

/* ==========================================================================
   VARIABLES WOOCOMMERCE
   ========================================================================== */

   :root {
    /* Couleurs WooCommerce - Utilisation des variables de main.css */
    --wc-primary: var(--primary-color);
    --wc-primary-dark: var(--primary-dark);
    --wc-secondary: var(--secondary-color);
    --wc-success: var(--success-color);
    --wc-warning: var(--warning-color);
    --wc-error: var(--error-color);
    
    /* Espacements - Utilisation des variables de main.css */
    --wc-spacing-xs: var(--spacing-xs);
    --wc-spacing-sm: var(--spacing-sm);
    --wc-spacing-md: var(--spacing-md);
    --wc-spacing-lg: var(--spacing-lg);
    --wc-spacing-xl: var(--spacing-xl);
    --wc-spacing-2xl: var(--spacing-2xl);
    --wc-spacing-3xl: var(--spacing-3xl);
    
    /* Bordures - Utilisation des variables de main.css */
    --wc-border-radius: var(--border-radius-md);
    --wc-border-color: var(--border-color);
    
    /* Ombres - Utilisation des variables de main.css */
    --wc-shadow-sm: var(--shadow-sm);
    --wc-shadow-md: var(--shadow-md);
}

/* ==========================================================================
   LAYOUT WOOCOMMERCE
   ========================================================================== */

.woocommerce-page {
    padding: var(--wc-spacing-lg) 0;
}

.woocommerce-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--wc-spacing-md);
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
    float: none;
    width: 100%;
    margin-bottom: var(--wc-spacing-md);
}

.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
    float: none;
    width: 100%;
}

/* ==========================================================================
   CARTES PRODUITS AVEC QUANTITÉ
   ========================================================================== */

.pricing-card .cart {
    display: flex;
    align-items: center;
    gap: var(--wc-spacing-sm);
    margin-top: var(--wc-spacing-md);
}

.pricing-card .quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--wc-border-color);
    border-radius: var(--wc-border-radius);
    overflow: hidden;
    background: white;
}

.pricing-card .quantity input[type="number"] {
    width: 60px;
    padding: var(--wc-spacing-sm);
    border: none;
    text-align: center;
    font-size: 0.9rem;
    background: transparent;
}

.pricing-card .quantity input[type="number"]:focus {
    outline: none;
    background: var(--gray-50);
}

.pricing-card .single_add_to_cart_button {
    flex: 1;
    min-width: 120px;
}

/* Breadcrumbs WooCommerce */
.woocommerce-breadcrumb {
    background: var(--gray-100);
    padding: var(--wc-spacing-sm) var(--wc-spacing-md);
    border-radius: var(--wc-border-radius);
    margin-bottom: var(--wc-spacing-lg);
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

.woocommerce-breadcrumb a {
    color: var(--wc-primary);
    text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   ARCHIVE PRODUITS
   ========================================================================== */

.woocommerce-archive-header {
    text-align: center;
    margin-bottom: var(--wc-spacing-xl);
}

.woocommerce-archive-header .page-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--wc-spacing-md);
}

.category-description {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray-600);
    line-height: 1.6;
}

.woocommerce-archive-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--wc-spacing-xl);
    align-items: start;
}

.woocommerce-archive-sidebar {
    background: var(--bg-primary);
    border-radius: var(--wc-border-radius);
    padding: var(--wc-spacing-lg);
    box-shadow: var(--wc-shadow-sm);
    position: sticky;
    top: var(--wc-spacing-lg);
}

.woocommerce-archive-main {
    min-width: 0; /* Pour éviter les débordements */
}

.woocommerce-archive-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--wc-spacing-lg);
    padding: var(--wc-spacing-md);
    background: var(--gray-50);
    border-radius: var(--wc-border-radius);
}

.woocommerce-result-count {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

.woocommerce-ordering select {
    border: 1px solid var(--wc-border-color);
    border-radius: var(--wc-border-radius);
    padding: var(--wc-spacing-sm) var(--wc-spacing-md);
    background: var(--bg-primary);
    font-size: var(--font-size-sm);
}

/* ==========================================================================
   GRILLE PRODUITS
   ========================================================================== */

.woocommerce-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--wc-spacing-lg);
    margin-bottom: var(--wc-spacing-xl);
}

.product-card {
    background: var(--bg-primary);
    border-radius: var(--wc-border-radius);
    overflow: hidden;
    box-shadow: var(--wc-shadow-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--wc-shadow-md);
}

.product-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

.product-card:hover .product-thumbnail {
    transform: scale(1.05);
}

.product-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--gray-100);
    color: var(--gray-500);
}

.product-badge {
    position: absolute;
    top: var(--wc-spacing-sm);
    right: var(--wc-spacing-sm);
    padding: var(--wc-spacing-xs) var(--wc-spacing-sm);
    border-radius: var(--wc-border-radius);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sale-badge {
    background: var(--wc-error);
    color: #ffffff;
}

.out-of-stock-badge {
    background: var(--gray-500);
    color: #ffffff;
}

.product-info {
    padding: var(--wc-spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--wc-spacing-sm);
    line-height: 1.3;
}

.product-title a {
    color: var(--gray-900);
    text-decoration: none;
}

.product-title a:hover {
    color: var(--wc-primary);
}

.product-price {
    margin-bottom: var(--wc-spacing-sm);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--wc-primary);
}

.product-price del {
    color: var(--gray-500);
    font-weight: 400;
    margin-right: var(--wc-spacing-xs);
}

.product-rating {
    margin-bottom: var(--wc-spacing-md);
}

.product-actions {
    margin-top: auto;
}

/* ==========================================================================
   PRODUIT UNIQUE
   ========================================================================== */

.woocommerce-single-product-content {
    max-width: 1200px;
    margin: 0 auto;
}

.product-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--wc-spacing-xl);
    margin-bottom: var(--wc-spacing-xl);
}

.product-gallery {
    background: var(--bg-primary);
    border-radius: var(--wc-border-radius);
    padding: var(--wc-spacing-lg);
    box-shadow: var(--wc-shadow-sm);
}

.product-summary {
    background: var(--bg-primary);
    border-radius: var(--wc-border-radius);
    padding: var(--wc-spacing-lg);
    box-shadow: var(--wc-shadow-sm);
}

.product-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--wc-spacing-md);
    color: var(--gray-900);
}

.product-summary .product-price {
    font-size: var(--font-size-xl);
    margin-bottom: var(--wc-spacing-md);
}

.product-details {
    margin-top: var(--wc-spacing-xl);
}

/* ==========================================================================
   BOUTONS WOOCOMMERCE
   ========================================================================== */

.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
    background: var(--wc-primary);
    color: #ffffff;
    border: none;
    border-radius: var(--wc-border-radius);
    padding: var(--wc-spacing-md) var(--wc-spacing-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--wc-spacing-xs);
}

.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover {
    background: var(--wc-primary-dark);
    transform: translateY(-1px);
    color: white
}

.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce a.button.alt {
    background: var(--wc-secondary);
}

.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce a.button.alt:hover {
    background: var(--gray-700);
}

/* ==========================================================================
   FORMULAIRES WOOCOMMERCE
   ========================================================================== */

.woocommerce form .form-row {
    margin-bottom: var(--wc-spacing-md);
}

.woocommerce form .form-row label {
    display: block;
    margin-bottom: var(--wc-spacing-xs);
    font-weight: 600;
    color: var(--gray-700);
}

.woocommerce form .form-row input,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
    width: 100%;
    padding: var(--wc-spacing-md) var(--wc-spacing-md);
    border: 1px solid var(--wc-border-color);
    border-radius: var(--wc-border-radius);
    font-size: var(--font-size-base);
    transition: border-color var(--transition-fast);
}

.woocommerce form .form-row input:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
    outline: none;
    border-color: var(--wc-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ==========================================================================
   MESSAGES WOOCOMMERCE
   ========================================================================== */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: var(--wc-spacing-md);
    border-radius: var(--wc-border-radius);
    margin-bottom: var(--wc-spacing-md);
    /* border-left: 4px solid; */
}

.woocommerce-message {
    background: rgba(16, 185, 129, 0.1);
    border-left-color: var(--wc-success);
    color: var(--wc-success);
}

.woocommerce-info {
    background: rgba(37, 99, 235, 0.1);
    border: 0;
    color: var(--primary-light);
    text-align: center;
}

.woocommerce-error {
    background: rgba(239, 68, 68, 0.1);
    border-left-color: var(--wc-error);
    color: var(--wc-error);
}

.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
    content: none;
}

.woocommerce-content .page-title {
    margin: var(--wc-spacing-xl) 0;
    text-align: center;
}

.woocommerce-message, .woocommerce-info, .woocommerce-error {
    border: 0;
    text-align: center;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: none;
    /* S'assurer que les gateways de paiement sont visibles */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* S'assurer que les méthodes de paiement sont bien affichées */
.woocommerce-checkout #payment .payment_methods {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block !important;
    visibility: visible !important;
}

.woocommerce-checkout #payment .payment_methods li {
    display: block;
    margin-bottom: var(--wc-spacing-md);
    padding: var(--wc-spacing-md);
    border: 1px solid var(--wc-border-color);
    border-radius: var(--wc-border-radius);
    background: var(--bg-primary);
}

.woocommerce-checkout #payment .payment_methods li input[type="radio"] {
    margin-right: var(--wc-spacing-sm);
}

.woocommerce-checkout #payment .payment_methods li label {
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
}

/* Styles pour les gateways Stripe et autres */
.woocommerce-checkout #payment .payment_box {
    margin-top: var(--wc-spacing-sm);
    padding: var(--wc-spacing-md);
    background: var(--gray-50);
    border-radius: var(--wc-border-radius);
    display: block !important;
    visibility: visible !important;
}

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce a.button.alt {
    background: var(--wc-primary);
}
.woocommerce #payment #place_order:hover, .woocommerce-page #payment #place_order .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce a.button.alt:hover {
    background: var(--wc-primary-dark);
}

.woocommerce form .form-row input, .woocommerce form .form-row select, .woocommerce form .form-row textarea {
    padding: var(--wc-spacing-md) var(--wc-spacing-md) !important;
    border: 1px solid var(--wc-border-color) !important;
}

.woocommerce-billing-fields__field-wrapper .select2-container .select2-selection--single {
    padding: var(--wc-spacing-sm) var(--wc-spacing-md) !important;
    height: 50px !important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:disabled[disabled] {
    color: #333;
    background: #f1f5f9;
    cursor: not-allowed;
    opacity: .5;
    padding: .618em 1em;
}

#add_payment_method table.cart td.actions .coupon .input-text, .woocommerce-cart table.cart td.actions .coupon .input-text, .woocommerce-checkout table.cart td.actions .coupon .input-text {
    border-radius: var(--wc-border-radius) !important;
    padding: var(--wc-spacing-md) var(--wc-spacing-md) !important;
    margin-right: var(--wc-spacing-sm) !important;
    width: 200px !important;
}

.woocommerce .quantity .qty {
    width: 3.631em;
    text-align: center;
    padding: var(--wc-spacing-sm) var(--wc-spacing-md) !important;
    border: 1px solid var(--wc-border-color) !important;
    border-radius: var(--wc-border-radius) !important;
    font-size: var(--font-size-base) !important;
    transition: border-color var(--transition-fast) !important;
}

/* ==========================================================================
   PAGE THANKYOU / CONFIRMATION DE COMMANDE
   ========================================================================== */

.success-icon {
    font-size: 4rem;
    line-height: 1;
    margin-top: var(--wc-spacing-2xl);
    display: block;
    text-align: center;
}

.thankyou-message { 
    margin: 0 auto;
    background-color: #fafcfe;
    width: 60%;
    border: 1px solid var(--wc-border-color);
    border-radius: var(--wc-border-radius);
    padding: var(--wc-spacing-lg);
    box-shadow: var(--wc-shadow-sm);
}

.thankyou-actions {
    margin-top: var(--wc-spacing-lg);
    text-align: center;
}
.thankyou-actions .btn.btn-primary {
    border: 2px solid var(--primary-color);
}

/* ==========================================================================
   PAGE RESULTATS OUTILS
   ========================================================================== */

.tool-navigation .progress-bar {
    height: 100px;
}

.result-header .success-icon {
    margin-top: 0;;
}
.copy-link-container {
    margin-top: var(--wc-spacing-md);
    text-align: center;
    color: var(--gray-400);
}

a.copy-link {
    color: var(--primary-color);
    text-decoration: none;
}
a.copy-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.job-result-page, .job-tracking-page, .tool-configuration-page, .pdf-converter-tool {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    .woocommerce-archive-content {
        grid-template-columns: 1fr;
        gap: var(--wc-spacing-lg);
    }
    
    .woocommerce-archive-sidebar {
        position: static;
        order: 2;
    }
    
    .woocommerce-archive-toolbar {
        flex-direction: column;
        gap: var(--wc-spacing-md);
        align-items: stretch;
    }
    
    .woocommerce-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: var(--wc-spacing-md);
    }
    
    .product-content-wrapper {
        grid-template-columns: 1fr;
        gap: var(--wc-spacing-lg);
    }
}

@media (max-width: 480px) {
    .woocommerce-products-grid {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-content {
        padding: 0 var(--wc-spacing-sm);
    }
}

/* ==========================================================================
    PAGE CONFIGURATION OUTIL
   ========================================================================== */
.tool-configuration-page h1 {
    text-align: center;
    margin: var(--wc-spacing-md) 0 !important;
}
.tool-configuration-page p {
    margin-bottom: var(--wc-spacing-lg);
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    text-align: center;
}

.do-file-info p {
    margin-bottom: var(--wc-spacing-lg);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    text-align: center;
    font-style: italic;
}

.tool-header {
    text-align: center;
    margin-bottom: 30px;
}

.tool-title {
    color: #2c3e50;
    margin-bottom: 10px;
}

.tool-description {
    color: #7f8c8d;
    margin-bottom: 15px;
}

.tool-info {
    background: #ecf0f1;
    padding: 10px;
    border-radius: 6px;
    display: inline-block;
}

.credit-cost {
    font-weight: bold;
    color: #e74c3c;
}

.file-selection-area {
    margin-bottom: 30px;
}

.file-drop-zone {
    border: 2px dashed #bdc3c7;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-drop-zone:hover,
.file-drop-zone.dragover {
    border-color: #3498db;
    background: #e3f2fd;
}

.drop-zone-content {
    pointer-events: none;
}

.drop-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.select-files-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
    pointer-events: all;
}

.select-files-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.file-info {
    margin-top: 20px;
}

.file-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.file-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    position: relative;
}

.file-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.file-name {
    font-weight: bold;
    margin-bottom: 5px;
    word-break: break-word;
}

.file-size {
    color: #7f8c8d;
    font-size: 12px;
}

.remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 12px;
}

.conversion-options {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.conversion-options h3, .do-options-section h3 {
    margin-top: 0;
    margin-bottom: 40px;
    padding-bottom: 10px;
    color: #2c3e50;
    border-bottom: 1px solid var(--border-color);
    font-size: var(--font-size-xl);
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2c3e50;
}

.option-group select,
.option-group input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

#pdf-converter-form .form-actions {
    text-align: right; 
    padding: 0 !important;
    background: none !important;
    display:block !important;
}

.submit-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover:not(:disabled) {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.submit-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    opacity: 0.6;
}

.result-messages {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
}

.result-messages.success {
    background: #d5f4e6;
    color: #27ae60;
    border: 1px solid #27ae60;
}

.result-messages.error {
    background: #fadbd8;
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.configuration-content {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .tool-configuration-page {
        padding: 10px;
    }
    
    .configuration-content {
        padding: 20px;
    }
}