/**
 * Module DFLiveSearch - Styles CSS
 *
 * @author    DataFirefly
 * @copyright DataFirefly
 * @license   Commercial
 */

/* Variables */
:root {
    --dfls-primary: #2196F3;
    --dfls-primary-hover: #1976D2;
    --dfls-text: #333;
    --dfls-text-light: #666;
    --dfls-text-muted: #999;
    --dfls-border: #e0e0e0;
    --dfls-bg: #fff;
    --dfls-bg-hover: #f5f5f5;
    --dfls-overlay: rgba(0, 0, 0, 0.35);
    --dfls-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    --dfls-radius: 8px;
    --dfls-discount: #e74c3c;
    --dfls-success: #27ae60;
}

/* ==========================================================================
   Trigger (barre de recherche affichee dans l'en-tete)
   ========================================================================== */

.dflivesearch-wrapper {
    position: relative;
    width: 100%;
}

.dflivesearch-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--dfls-bg);
    border: 1px solid var(--dfls-border);
    border-radius: var(--dfls-radius);
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 200px;
}

.dflivesearch-trigger:hover {
    border-color: var(--dfls-primary);
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.15);
}

.dflivesearch-trigger i {
    color: var(--dfls-text-muted);
    font-size: 20px;
}

.dflivesearch-trigger-text {
    color: var(--dfls-text-muted);
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.dflivesearch-trigger:focus-visible {
    outline: 2px solid var(--dfls-primary);
    outline-offset: 2px;
}

/* Raccourci clavier */
.dflivesearch-kbd {
    margin-left: auto;
    padding: 2px 7px;
    border: 1px solid var(--dfls-border);
    border-radius: 4px;
    background: var(--dfls-bg-hover);
    color: var(--dfls-text-muted);
    font-size: 11px;
    font-family: inherit;
    line-height: 1.4;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ==========================================================================
   Panneau : pleine largeur, ancre en haut de la fenetre
   ========================================================================== */

.dflivesearch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dfls-overlay);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.dflivesearch-overlay.active {
    display: flex;
    opacity: 1;
}

.dflivesearch-modal {
    width: 100%;
    max-width: none;
    background: var(--dfls-bg);
    border-radius: 0;
    box-shadow: var(--dfls-shadow);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    transform: translateY(-12px);
    transition: transform 0.2s ease;
}

.dflivesearch-overlay.active .dflivesearch-modal {
    transform: translateY(0);
}

/* Conteneur centre : porte la largeur max reglable en back-office. */
.dflivesearch-panel-inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ==========================================================================
   En-tete : logo + champ + fermeture
   ========================================================================== */

.dflivesearch-header {
    flex-shrink: 0;
    border-bottom: 1px solid var(--dfls-border);
    padding: 14px 0 16px;
}

.dflivesearch-header-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.dflivesearch-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    line-height: 0;
}

.dflivesearch-logo img {
    max-height: 34px;
    max-width: 180px;
    width: auto;
    height: auto;
}

.dflivesearch-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--dfls-text);
    border-radius: 0;
    padding: 6px 0;
}

.dflivesearch-icon {
    color: var(--dfls-text);
    font-size: 22px;
    flex-shrink: 0;
}

.dflivesearch-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    font-size: 18px;
    line-height: 1.4;
    color: var(--dfls-text);
    outline: none;
    padding: 4px 0;
}

.dflivesearch-input::placeholder {
    color: var(--dfls-text-muted);
}

/* Effacer le champ */
.dflivesearch-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--dfls-text-muted);
    flex-shrink: 0;
}

.dflivesearch-clear:hover {
    color: var(--dfls-text);
}

.dflivesearch-clear i {
    font-size: 22px;
}

/* Valider la recherche : discret, sans pastille de couleur */
.dflivesearch-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    color: var(--dfls-text-light);
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.dflivesearch-submit:hover {
    background: none;
    color: var(--dfls-primary);
    transform: none;
}

.dflivesearch-submit i {
    font-size: 22px;
}

/* Fermeture : croix fine a droite (fleche retour a gauche sur mobile) */
.dflivesearch-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--dfls-text);
    transition: color 0.2s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.dflivesearch-close:hover {
    color: var(--dfls-text-light);
}

.dflivesearch-close i {
    font-size: 28px;
}

.dflivesearch-back-icon {
    display: none;
}

/* ==========================================================================
   Suggestions : rangee de puces sous le champ
   ========================================================================== */

.dflivesearch-autocomplete {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dflivesearch-autocomplete-item {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border: 1px solid var(--dfls-border);
    background: var(--dfls-bg);
    font-size: 13px;
    line-height: 1.2;
    color: var(--dfls-text);
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.dflivesearch-autocomplete-item:hover,
.dflivesearch-autocomplete-item.active {
    border-color: var(--dfls-text);
    background: var(--dfls-bg-hover);
}

.dflivesearch-autocomplete-item span {
    font-size: 13px;
}

.dflivesearch-autocomplete-item span strong {
    font-weight: 700;
}

.dflivesearch-autocomplete-item[data-type="correction"] {
    border-color: var(--dfls-success);
}

/* ==========================================================================
   Corps
   ========================================================================== */

.dflivesearch-body {
    padding: 24px 0 32px;
    overflow-y: auto;
    flex: 1;
}

.dflivesearch-section {
    margin-bottom: 28px;
}

.dflivesearch-section:last-child {
    margin-bottom: 0;
}

.dflivesearch-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.dflivesearch-section-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dfls-text);
    text-transform: none;
    letter-spacing: 0;
    margin: 0 0 10px;
}

.dflivesearch-section-header .dflivesearch-section-title {
    margin: 0;
}

.dflivesearch-clear-all {
    background: none;
    border: none;
    color: var(--dfls-text-light);
    font-size: 12px;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.dflivesearch-clear-all:hover {
    color: var(--dfls-text);
    text-decoration: underline;
}

/* Vue initiale : recherches a gauche, carrousel produits a droite */
.dflivesearch-initial {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.dflivesearch-col-side {
    flex: 0 0 200px;
    max-width: 200px;
}

.dflivesearch-col-main {
    flex: 1;
    min-width: 0;
}

/* ==========================================================================
   Listes de recherches (recentes + populaires)
   ========================================================================== */

.dflivesearch-tags,
.dflivesearch-popular-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dflivesearch-tag,
.dflivesearch-popular-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    background: none;
    border: none;
    border-radius: 0;
    font-size: 14px;
    line-height: 1.3;
    color: var(--dfls-text);
    cursor: pointer;
    transition: color 0.2s ease;
}

.dflivesearch-tag:hover,
.dflivesearch-popular-item:hover {
    background: none;
    color: var(--dfls-primary);
}

.dflivesearch-tag-text,
.dflivesearch-popular-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Icone de gauche : masquee sur grand ecran, affichee sur mobile */
.dflivesearch-tag-icon,
.dflivesearch-popular-icon {
    display: none;
    font-size: 18px;
    color: var(--dfls-text-muted);
    flex-shrink: 0;
}

/* Fleche "reprendre cette recherche" (mobile) */
.dflivesearch-popular-arrow {
    display: none;
    font-size: 16px;
    color: var(--dfls-text-muted);
    flex-shrink: 0;
    transform: rotate(-90deg);
}

.dflivesearch-tag-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: none;
    border-radius: 0;
    font-size: 14px;
    line-height: 1;
    color: var(--dfls-text-muted);
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.dflivesearch-tag-remove:hover {
    background: none;
    color: var(--dfls-text);
}

/* ==========================================================================
   Carrousel produits recommandes
   ========================================================================== */

.dflivesearch-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dflivesearch-carousel {
    flex: 1;
    overflow: hidden;
}

.dflivesearch-carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease;
}

.dflivesearch-carousel-nav {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 0;
    background: none;
    border: none;
    color: var(--dfls-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    z-index: 2;
}

.dflivesearch-carousel-nav:hover {
    background: none;
    border: none;
    color: var(--dfls-primary);
}

.dflivesearch-carousel-nav:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.dflivesearch-carousel-nav:disabled:hover {
    background: none;
    color: var(--dfls-text);
}

.dflivesearch-carousel-nav i {
    font-size: 26px;
}

/* ==========================================================================
   Cartes produit (carrousel + resultats)
   ========================================================================== */

.dflivesearch-product,
.dflivesearch-result-item {
    display: flex;
    flex-direction: column;
    background: var(--dfls-bg);
    border: 1px solid var(--dfls-border);
    border-radius: 0;
    text-decoration: none;
    color: var(--dfls-text);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.dflivesearch-product {
    flex: 0 0 180px;
}

.dflivesearch-product:hover,
.dflivesearch-result-item:hover {
    border-color: var(--dfls-text-muted);
    box-shadow: none;
    transform: none;
}

.dflivesearch-product-image,
.dflivesearch-result-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: var(--dfls-bg);
    overflow: hidden;
}

.dflivesearch-product-image img,
.dflivesearch-result-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14px;
}

.dflivesearch-product-discount,
.dflivesearch-result-discount {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--dfls-discount);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 5px 8px;
    border-radius: 0;
    z-index: 2;
}

.dflivesearch-product-info,
.dflivesearch-result-info {
    flex: 1;
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dflivesearch-product-name,
.dflivesearch-result-name {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--dfls-text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}

.dflivesearch-product-name:hover,
.dflivesearch-result-name:hover {
    color: var(--dfls-text);
    text-decoration: underline;
}

.dflivesearch-result-reference {
    font-size: 11px;
    color: var(--dfls-text-muted);
}

/* Bas de carte : prix a gauche, bouton panier a droite */
.dflivesearch-card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    flex-wrap: wrap;
}

.dflivesearch-product-price,
.dflivesearch-result-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin: 0;
}

.dflivesearch-product-current-price,
.dflivesearch-result-current-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--dfls-text);
}

.dflivesearch-product-regular-price,
.dflivesearch-result-regular-price {
    font-size: 12px;
    color: var(--dfls-text-muted);
    text-decoration: line-through;
}

.dflivesearch-product.has-discount .dflivesearch-product-current-price,
.dflivesearch-result-item.has-discount .dflivesearch-result-current-price {
    color: var(--dfls-discount);
}

/* Rupture de stock */
.dflivesearch-product-out-of-stock,
.dflivesearch-result-out-of-stock {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 8px;
    text-align: center;
    z-index: 2;
    pointer-events: none;
}

.out-of-stock .dflivesearch-product-image img,
.out-of-stock .dflivesearch-result-image img {
    opacity: 0.5;
}

/* ==========================================================================
   Ajout au panier : icone seule dans le bas de carte
   ========================================================================== */

.dflivesearch-add-cart-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 0 0 0 auto;
    flex-wrap: wrap;
}

.dflivesearch-add-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    background: none;
    color: var(--dfls-text);
    text-decoration: none;
    border: none;
    border-radius: 0;
    font-size: 12px;
    cursor: pointer;
    transition: color 0.2s ease;
    flex: 0 0 auto;
}

/* Le libelle reste dans le DOM pour l'accessibilite et les traductions. */
.dflivesearch-add-cart-btn span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.dflivesearch-add-cart-btn:hover {
    background: none;
    color: var(--dfls-primary);
}

.dflivesearch-add-cart-btn.dflivesearch-see-options {
    background: none;
    color: var(--dfls-text);
    border: none;
}

.dflivesearch-add-cart-btn.dflivesearch-see-options:hover {
    background: none;
    color: var(--dfls-primary);
}

.dflivesearch-add-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dflivesearch-add-cart-btn.added {
    background: none;
    color: var(--dfls-success);
}

.dflivesearch-add-cart-btn i {
    font-size: 22px;
}

/* Message transitoire (stock insuffisant, etc.) */
.dflivesearch-cart-msg {
    width: 100%;
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.3;
    padding: 4px 8px;
    text-align: center;
}

.dflivesearch-cart-msg-error {
    background: rgba(231, 76, 60, 0.1);
    color: var(--dfls-discount);
}

.dflivesearch-cart-msg-info {
    background: var(--dfls-bg-hover);
    color: var(--dfls-text-light);
}

/* Selecteur de quantite (optionnel) */
.dflivesearch-qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--dfls-border);
    overflow: hidden;
}

.dflivesearch-qty-btn {
    width: 26px;
    height: 26px;
    background: var(--dfls-bg-hover);
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: var(--dfls-text);
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dflivesearch-qty-btn:hover {
    background: #e0e0e0;
}

.dflivesearch-qty-input {
    width: 36px;
    height: 26px;
    border: none;
    border-left: 1px solid var(--dfls-border);
    border-right: 1px solid var(--dfls-border);
    text-align: center;
    font-size: 13px;
    -moz-appearance: textfield;
}

.dflivesearch-qty-input::-webkit-outer-spin-button,
.dflivesearch-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ==========================================================================
   Resultats
   ========================================================================== */

.dflivesearch-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.dflivesearch-results-count {
    font-size: 14px;
    color: var(--dfls-text);
}

.dflivesearch-see-all {
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--dfls-text);
    cursor: pointer;
    transition: color 0.2s ease;
}

.dflivesearch-see-all:hover {
    background: none;
    color: var(--dfls-primary);
    text-decoration: underline;
    transform: none;
    box-shadow: none;
}

.dflivesearch-results-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

/* Aucun resultat */
.dflivesearch-no-results-text {
    text-align: center;
    color: var(--dfls-text-muted);
    font-size: 15px;
    padding: 40px 20px;
}

/* ==========================================================================
   Correction orthographique
   ========================================================================== */

.dflivesearch-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 10px 14px;
    background: var(--dfls-bg-hover);
    border: none;
    border-left: 3px solid var(--dfls-primary);
    border-radius: 0;
    font-size: 14px;
    color: var(--dfls-text-light);
}

.dflivesearch-notice i {
    color: var(--dfls-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.dflivesearch-notice .dflivesearch-notice-corrected {
    color: var(--dfls-text);
    font-weight: 700;
}

.dflivesearch-notice-original {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: var(--dfls-primary);
    cursor: pointer;
    text-decoration: underline;
}

.dflivesearch-notice-original:hover {
    color: var(--dfls-primary-hover);
}

/* ==========================================================================
   Chargement
   ========================================================================== */

.dflivesearch-loading {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.dflivesearch-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--dfls-border);
    border-top-color: var(--dfls-primary);
    border-radius: 50%;
    animation: dfls-spin 0.8s linear infinite;
}

.dflivesearch-spin {
    animation: dfls-spin 1s linear infinite;
}

@keyframes dfls-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1200px) {
    .dflivesearch-panel-inner {
        padding: 0 20px;
    }

    .dflivesearch-initial {
        gap: 28px;
    }

    .dflivesearch-col-side {
        flex-basis: 180px;
        max-width: 180px;
    }
}

@media (max-width: 991px) {
    .dflivesearch-logo {
        display: none;
    }

    .dflivesearch-header-row {
        gap: 16px;
    }

    .dflivesearch-initial {
        flex-direction: column;
        gap: 24px;
    }

    .dflivesearch-col-side,
    .dflivesearch-col-main {
        flex: 1 1 auto;
        max-width: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .dflivesearch-kbd {
        display: none;
    }

    .dflivesearch-modal {
        max-height: 100vh;
        height: 100vh;
    }

    .dflivesearch-panel-inner {
        padding: 0 16px;
    }

    .dflivesearch-header {
        padding: 10px 0 12px;
    }

    /* La fermeture passe a gauche et devient une fleche retour. */
    .dflivesearch-close {
        order: -1;
        padding: 0 4px 0 0;
    }

    .dflivesearch-close-icon {
        display: none;
    }

    .dflivesearch-back-icon {
        display: inline-block;
    }

    .dflivesearch-close i {
        font-size: 24px;
    }

    .dflivesearch-input-wrapper {
        border-bottom: none;
        gap: 8px;
    }

    .dflivesearch-icon {
        display: none;
    }

    .dflivesearch-input {
        font-size: 16px;
    }

    .dflivesearch-submit {
        display: none;
    }

    .dflivesearch-autocomplete {
        margin-top: 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .dflivesearch-autocomplete::-webkit-scrollbar {
        display: none;
    }

    .dflivesearch-body {
        padding: 16px 0 24px;
    }

    /* Listes de recherches facon application mobile */
    .dflivesearch-tag-icon,
    .dflivesearch-popular-icon,
    .dflivesearch-popular-arrow {
        display: inline-block;
    }

    .dflivesearch-tag,
    .dflivesearch-popular-item {
        padding: 11px 0;
    }

    .dflivesearch-results-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .dflivesearch-carousel-nav {
        display: none;
    }

    .dflivesearch-carousel {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .dflivesearch-carousel::-webkit-scrollbar {
        display: none;
    }

    .dflivesearch-carousel-track {
        transform: none !important;
    }

    .dflivesearch-product {
        flex: 0 0 150px;
        scroll-snap-align: start;
    }
}

@media (max-width: 480px) {
    .dflivesearch-trigger {
        min-width: auto;
        padding: 8px 12px;
    }

    .dflivesearch-trigger-text {
        display: none;
    }

    .dflivesearch-product-info,
    .dflivesearch-result-info {
        padding: 10px;
    }

    .dflivesearch-product-name,
    .dflivesearch-result-name {
        font-size: 12px;
        min-height: 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dflivesearch-overlay,
    .dflivesearch-modal,
    .dflivesearch-trigger,
    .dflivesearch-carousel-track {
        transition: none !important;
    }

    .dflivesearch-spinner {
        animation-duration: 1.5s;
    }
}

@media print {
    .dflivesearch-overlay {
        display: none !important;
    }
}
