/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
 * Framework CSS InYourLife - gestione fluid e responsive
 *
 * INDICE:
 * 1. Variabili globali (root): padding, altezza hero, offset, larghezze narrow
 * 2. Classi section-xxs ... section-xxl: padding fluido per sezioni
 * 3. section-header: padding specifico per header
 * 4. section-hero: altezza minima e centratura contenuto
 * 5. section-full: sezioni full-width (senza padding laterale)
 * 6. section-narrow / section-narrow-xs: larghezza massima del contenuto
 * 7. section-offset: padding superiore offset per header overlay
 *
 * Breve descrizione:
 * Questo framework semplifica la costruzione di layout responsive
 * basati su classi utility. Usa variabili CSS per spaziature fluide,
 * gestisce hero full-screen, sezioni a larghezza limitata o piena,
 * e supporta facilmente overlay di header con offset.
 */

:root {
    /* Global Padding Variables - Editable */
    /* Left and Right Padding All /Sections/Containers*/
    --fluid-side-padding-min: 1.25rem; /* 20px */
    --fluid-side-padding-max: 5rem;   /* 80px */

    /* Top and Bottom Padding All Containers*/
    --section-xxl-padding-min: 9.375rem; /* 150px */
    --section-xxl-padding-max: 10rem; /* 160px */ 
  
    --section-xl-padding-min: 6.875rem; /* 110px */
    --section-xl-padding-max: 7.5rem; /* 120px */
  
    --section-l-padding-min: 5.625rem; /* 90px */
    --section-l-padding-max: 6.25rem; /* 100px */
  
    --section-m-padding-min: 5rem; /* 80px */
    --section-m-padding-max: 5rem; /* 80px */
  
    --section-s-padding-min: 3.75rem; /* 60px */
    --section-s-padding-max: 3.75rem; /* 60px */
  
    --section-xs-padding-min: 2.5rem; /* 40px */
    --section-xs-padding-max: 2.5rem; /* 40px */
  
    --section-xxs-padding-min: 1.5rem; /* 24px */
    --section-xxs-padding-max: 1.5rem; /* 24px */
    
    --section-header-padding-min: 1.25rem; /* 20px */
    --section-header-padding-max: 1.25rem; /* 20px */

  
    /* Hero Sections Height Variable */
    --section-hero-height: 100vh; /* 100% the screen height */
  
    /* Offset Padding for Overlay Headers */
    --section-offset-header: 80px; /* Adjust to the overlay header's negative margin */

    /* Width For Narrow Sections*/
    --section-narrow: 62.5rem; /* 1000px */
    --section-narrow-xs: 45rem; /* 720px */
  }


/* CSS Template (do not edit below) */
  
  
  /* Section/Container Padding - Fluid Variants */
  .section-xxl {
    padding-top: clamp(var(--section-xxl-padding-min), 1.087vw + 9.13rem, var(--section-xxl-padding-max));
    padding-bottom: clamp(var(--section-xxl-padding-min), 1.087vw + 9.13rem, var(--section-xxl-padding-max));
    padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
    padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
  }
  
  .section-xl {
    padding-top: clamp(var(--section-xl-padding-min), 1.087vw + 6.63rem, var(--section-xl-padding-max));
    padding-bottom: clamp(var(--section-xl-padding-min), 1.087vw + 6.63rem, var(--section-xl-padding-max));
    padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
    padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
  }
  
  .section-l {
    padding-top: clamp(var(--section-l-padding-min), 1.087vw + 5.38rem, var(--section-l-padding-max));
    padding-bottom: clamp(var(--section-l-padding-min), 1.087vw + 5.38rem, var(--section-l-padding-max));
    padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
    padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
  }
  
  .section-m {
    padding-top: clamp(var(--section-m-padding-min), 0vw + 5rem, var(--section-m-padding-max));
    padding-bottom: clamp(var(--section-m-padding-min), 0vw + 5rem, var(--section-m-padding-max));
    padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
    padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
  }
  
  .section-s {
    padding-top: clamp(var(--section-s-padding-min), 0vw + 3.75rem, var(--section-s-padding-max));
    padding-bottom: clamp(var(--section-s-padding-min), 0vw + 3.75rem, var(--section-s-padding-max));
    padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
    padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
  }
  
  .section-xs {
    padding-top: clamp(var(--section-xs-padding-min), 0vw + 2.5rem, var(--section-xs-padding-max));
    padding-bottom: clamp(var(--section-xs-padding-min), 0vw + 2.5rem, var(--section-xs-padding-max));
    padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
    padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
  }
  
  .section-xxs {
    padding-top: clamp(var(--section-xxs-padding-min), 0vw + 1.5rem, var(--section-xxs-padding-max));
    padding-bottom: clamp(var(--section-xxs-padding-min), 0vw + 1.5rem, var(--section-xxs-padding-max));
    padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
    padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
  }
  
  .section-header {
    padding-top: clamp(var(--section-header-padding-min), 0vw + 1.25rem, var(--section-header-padding-max));
    padding-bottom: clamp(var(--section-header-padding-min), 0vw + 1.25rem, var(--section-header-padding-max));
    padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
    padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
  }
  
body{
	overflow-x:hidden;
}

  /* Hero Container/Sections Height */
  .section-hero {
    min-height: var(--section-hero-height)!important;
  }

  .section-hero .e-con-inner {
    justify-content: center!important;
}
  
  /* Full Width Sections - No Side Padding */

  .section-full div {
    max-width: 100%!important;
  }
  

  /* Narrow Sections */
  .section-narrow .e-con-inner {
    max-width: var(--section-narrow)!important;
  }

  .section-narrow-xs .e-con-inner {
    max-width: var(--section-narrow-xs)!important;
  }


  /* Offset Padding for Overlay Headers */
  .section-offset {
    padding-top: calc(var(--section-offset-header) + var(--section-xxl-padding-min));
  }


/* === FILTRO PRODOTTI - STILE PERSONALIZZATO === */

/* Contenitore principale filtro */
.wpfMainWrapper {
    font-family: var(--e-global-typography-text-font-family) !important;
    color: var(--e-global-color-secondary) !important;
}

/* Wrapper singoli filtri */
.wpfFilterWrapper {
    margin-bottom: 20px !important;
}

/* === FILTRO PREZZO — NUOVO STILE === */

/* Linea slider (più sottile) */
.wpfPriceFilterRange.ui-slider {
    background: transparent !important; /* niente colore pieno */
    border: 1px solid var(--e-global-color-d67569a) !important; /* bordo verde */
    height: 2px !important; /* linea più sottile */
    border-radius: 3px !important;
    margin-bottom: 5px !important;
}

.ui-slider.ui-widget-content .ui-slider-handle {
    background: #fff;
    border: 1px solid #000 !important;
    border-radius: 50px !important;
}

/* Barra attiva (solo bordo, no riempimento) */
.wpfPriceFilterRange .ui-slider-range {
    background: transparent !important;
    border-top: 1px solid var(--e-global-color-d67569a) !important;
    border-bottom: 1px solid var(--e-global-color-d67569a) !important;
}

.wpfPriceFilterRange .ui-slider-handle:hover,
.wpfPriceFilterRange .ui-slider-handle:focus {
    background: var(--e-global-color-d67569a) !important; /* leggero accento */
    
}

.ui-slider.ui-widget-content .ui-slider-handle{
    border: 1px solid var(--e-global-color-d67569a) !important; /* bordo verde */
}


/* Input prezzo */
.wpfPriceInputs {
    display: flex;
    align-items: center;
    gap: 8px !important;
    font-family: var(--e-global-typography-text-font-family) !important;
    font-size: var(--e-global-typography-text-font-size) !important;
    color: var(--e-global-color-secondary) !important;
}

.wpfCurrencySymbol {
    font-weight: 500 !important;
    color: var(--e-global-color-secondary) !important;
}

.wpfPriceRangeField {
    border: 1px solid var(--e-global-color-d67569a) !important;
    background: #fff !important;
    padding: 6px 10px !important;
    border-radius: 4px !important;
    font-family: var(--e-global-typography-text-font-family) !important;
    font-size: var(--e-global-typography-text-font-size) !important;
    color: var(--e-global-color-secondary) !important;
}

.wpfFilterDelimeter {
    color: var(--e-global-color-text) !important;
}

/* === DROPDOWN CATEGORIE E MARCA === */

/* Select dropdown */
#wpfSortProducts,
.wpfCheckboxHier select {
    width: 100% !important;
    padding: 12px 16px !important;
    font-family: var(--e-global-typography-text-font-family) !important;
    font-size: var(--e-global-typography-text-font-size) !important;
    color: var(--e-global-color-secondary) !important;
    background: #fff !important;
    border: 1px solid var(--e-global-color-d67569a) !important;
    border-radius: 0px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.wpfCheckboxHier select:hover {
    border-color: var(--e-global-color-primary) !important;
}

.wpfCheckboxHier select:focus {
    outline: none !important;
    border-color: var(--e-global-color-primary) !important;
    box-shadow: 0 0 0 3px rgba(72, 169, 77, 0.1) !important;
}

/* Opzioni dropdown */
.wpfCheckboxHier select option {
    padding: 10px !important;
    font-family: var(--e-global-typography-text-font-family) !important;
    color: var(--e-global-color-secondary) !important;
}

.wpfCheckboxHier select option:first-child {
    color: var(--e-global-color-text) !important;
}

/* === PULSANTE FILTRO === */

.wpfFilterButtons {
    margin-top: 20px !important;
}

.wpfFilterButton {
    width: 80% !important;
    padding: 14px 24px !important;
    font-family: var(--e-global-typography-accent-font-family) !important;
    font-size: var(--e-global-typography-ea15545-font-size) !important;
    font-weight: var(--e-global-typography-ea15545-font-weight) !important;
    text-transform: var(--e-global-typography-ea15545-text-transform) !important;
    letter-spacing: var(--e-global-typography-ea15545-letter-spacing) !important;
    color: #fff !important;
    background: var(--e-global-color-primary) !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.wpfFilterButton:hover {
    background: var(--e-global-color-accent) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(72, 169, 77, 0.3) !important;
}

.wpfFilterButton:active {
    transform: translateY(0) !important;
}

/* === LOADER === */

.wpfLoaderLayout {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(255, 255, 255, 0.9) !important;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    z-index: 100 !important;
}

.wpfLoaderLayout i {
    color: var(--e-global-color-primary) !important;
}

.woobewoo-filter-loader.spinner {
    border-color: var(--e-global-color-89d7ca9) !important;
    border-top-color: var(--e-global-color-primary) !important;
}

/* === RESPONSIVE === */

@media (max-width: 768px) {
    .wpfFilterButton {
        padding: 12px 20px !important;
        font-size: 13px !important;
    }
    
    .wpfCheckboxHier select {
        padding: 10px 14px !important;
        font-size: 15px !important;
    }
}


/* ========================================== */
/* === YITH WOOCOMMERCE WISHLIST === */
/* ========================================== */

/* === CONTENITORE PRINCIPALE === */
.yith-wcwl-form.wishlist-fragment {
    font-family: var(--e-global-typography-text-font-family) !important;
    color: var(--e-global-color-secondary) !important;
}

/* === TITOLO WISHLIST === */
.wishlist-title-container {
    margin-bottom: 30px !important;
}

.wishlist-title h2 {
    font-family: var(--e-global-typography-secondary-font-family) !important;
    font-size: var(--e-global-typography-secondary-font-size) !important;
    font-weight: var(--e-global-typography-secondary-font-weight) !important;
    color: var(--e-global-color-secondary) !important;
    margin: 0 !important;
}

/* Pulsante modifica titolo */
.wishlist-title .show-title-form {
    font-family: var(--e-global-typography-text-font-family) !important;
    font-size: 14px !important;
    color: var(--e-global-color-text) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-left: 15px !important;
    transition: color 0.3s ease !important;
}

.wishlist-title .show-title-form:hover {
    color: var(--e-global-color-primary) !important;
}

.wishlist-title .show-title-form svg {
    width: 16px !important;
    height: 16px !important;
}

/* Form modifica titolo */
.hidden-title-form {
    margin-top: 15px !important;
}

.hidden-title-form input[type="text"] {
    font-family: var(--e-global-typography-text-font-family) !important;
    font-size: var(--e-global-typography-text-font-size) !important;
    padding: 10px 15px !important;
    border: 1px solid var(--e-global-color-d67569a) !important;
    border-radius: 4px !important;
    color: var(--e-global-color-secondary) !important;
    width: 300px !important;
    max-width: 100% !important;
}

.edit-title-buttons a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 4px !important;
    margin-left: 8px !important;
    transition: all 0.3s ease !important;
}

.edit-title-buttons .save-title-form {
    background: var(--e-global-color-primary) !important;
    color: #fff !important;
}

.edit-title-buttons .save-title-form:hover {
    background: var(--e-global-color-accent) !important;
}

.edit-title-buttons .hide-title-form {
    background: var(--e-global-color-89d7ca9) !important;
    color: var(--e-global-color-secondary) !important;
}

.edit-title-buttons .hide-title-form:hover {
    background: #e74c3c !important;
    color: #fff !important;
}

/* ========================================== */
/* === VERSIONE DESKTOP - TABELLA === */
/* ========================================== */

.shop_table.wishlist_table:not(.mobile) {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    background: #fff !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

/* Header tabella desktop */
.shop_table.wishlist_table:not(.mobile) thead {
    background: var(--e-global-color-89d7ca9) !important;
}

.shop_table.wishlist_table:not(.mobile) thead th {
    font-family: var(--e-global-typography-accent-font-family) !important;
    font-size: var(--e-global-typography-ea15545-font-size) !important;
    font-weight: var(--e-global-typography-ea15545-font-weight) !important;
    text-transform: var(--e-global-typography-ea15545-text-transform) !important;
    letter-spacing: var(--e-global-typography-ea15545-letter-spacing) !important;
    color: var(--e-global-color-secondary) !important;
    padding: 16px 20px !important;
    border: none !important;
    text-align: left !important;
}

/* Celle tabella desktop */
.shop_table.wishlist_table:not(.mobile) tbody td {
    font-family: var(--e-global-typography-text-font-family) !important;
    font-size: var(--e-global-typography-text-font-size) !important;
    color: var(--e-global-color-secondary) !important;
    padding: 20px !important;
    border-bottom: 1px solid var(--e-global-color-89d7ca9) !important;
    vertical-align: middle !important;
}

.shop_table.wishlist_table:not(.mobile) tbody tr:last-child td {
    border-bottom: none !important;
}

/* Immagine prodotto desktop */
.shop_table.wishlist_table:not(.mobile) .product-thumbnail img {
    border-radius: 4px !important;
    max-width: 100px !important;
    height: auto !important;
}

/* ========================================== */
/* === VERSIONE MOBILE - LISTA === */
/* ========================================== */

.shop_table.wishlist_table.mobile {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.shop_table.wishlist_table.mobile > li {
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 20px !important;
    overflow: hidden !important;
}

/* Item wrapper mobile */
.shop_table.wishlist_table.mobile .item-wrapper {
    display: flex !important;
    padding: 20px !important;
    gap: 15px !important;
}

/* Immagine prodotto mobile */
.shop_table.wishlist_table.mobile .product-thumbnail {
    flex-shrink: 0 !important;
}

.shop_table.wishlist_table.mobile .product-thumbnail img {
    border-radius: 4px !important;
    width: 100px !important;
    height: 100px !important;
    object-fit: cover !important;
}

/* Dettagli prodotto mobile */
.shop_table.wishlist_table.mobile .item-details {
    flex: 1 !important;
}

.shop_table.wishlist_table.mobile .product-name h3 {
    font-family: var(--e-global-typography-text-font-family) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--e-global-color-secondary) !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.4 !important;
}

.shop_table.wishlist_table.mobile .product-name a {
    color: var(--e-global-color-secondary) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.shop_table.wishlist_table.mobile .product-name a:hover {
    color: var(--e-global-color-primary) !important;
}

/* Tabella dettagli mobile */
.shop_table.wishlist_table.mobile .item-details-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-top: 10px !important;
}

.shop_table.wishlist_table.mobile .item-details-table td {
    padding: 5px 0 !important;
    font-family: var(--e-global-typography-text-font-family) !important;
    font-size: 14px !important;
    border: none !important;
}

.shop_table.wishlist_table.mobile .item-details-table .label {
    color: var(--e-global-color-text) !important;
    font-weight: 500 !important;
    padding-right: 10px !important;
}

.shop_table.wishlist_table.mobile .item-details-table .value {
    color: var(--e-global-color-secondary) !important;
}

/* Additional info wrapper mobile */
.shop_table.wishlist_table.mobile .additional-info-wrapper {
    padding: 0 20px 20px 20px !important;
    border-top: 1px solid var(--e-global-color-89d7ca9) !important;
    padding-top: 15px !important;
}

.shop_table.wishlist_table.mobile .additional-info {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 15px !important;
}

.shop_table.wishlist_table.mobile .additional-info td {
    padding: 5px 0 !important;
    font-family: var(--e-global-typography-text-font-family) !important;
    font-size: 14px !important;
    border: none !important;
}

.shop_table.wishlist_table.mobile .additional-info .label {
    color: var(--e-global-color-text) !important;
    font-weight: 500 !important;
    padding-right: 10px !important;
}

.shop_table.wishlist_table.mobile .additional-info .value {
    color: var(--e-global-color-secondary) !important;
} 

.select#wpfSortProducts
Specificità: (1,0,1)
 {
    width: 100% !important;
    padding: 12px 16px !important;
    font-family: var(--e-global-typography-text-font-family) !important;
    font-size: var(--e-global-typography-text-font-size) !important;
    color: var(--e-global-color-secondary) !important;
    background: #fff !important;
    border: 1px solid var(--e-global-color-d67569a) !important;
    border-radius: 0px !important;
    cursor: pointer !important;
    transition: all 0.3s 
ease !important;
}











/* ========================================== */
/* === ELEMENTI COMUNI (DESKTOP E MOBILE) === */
/* ========================================== */

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    z-index: 10!important;
}

/* Stato vuoto */
.shop_table.wishlist_table .wishlist-empty {
    text-align: center !important;
    font-family: var(--e-global-typography-text-font-family) !important;
    font-size: var(--e-global-typography-1eae699-font-size) !important;
    color: var(--e-global-color-text) !important;
    padding: 60px 20px !important;
}

/* Prezzi */
.shop_table.wishlist_table .woocommerce-Price-amount {
    font-family: var(--e-global-typography-text-font-family) !important;
    font-size: var(--e-global-typography-1eae699-font-size) !important;
    font-weight: 600 !important;
    color: var(--e-global-color-primary) !important;
}

.shop_table.wishlist_table del .woocommerce-Price-amount {
    color: var(--e-global-color-text) !important;
    font-weight: 400 !important;
}

.shop_table.wishlist_table ins {
    text-decoration: none !important;
}

/* Stato magazzino */
.shop_table.wishlist_table .wishlist-in-stock {
    color: var(--e-global-color-accent) !important;
    font-weight: 500 !important;
}

.shop_table.wishlist_table .wishlist-out-of-stock {
    color: #e74c3c !important;
    font-weight: 500 !important;
}

/* === PULSANTI AZIONE === */

/* Pulsante Aggiungi al carrello */
.shop_table.wishlist_table .add_to_cart,
.shop_table.wishlist_table .product-add-to-cart a {
    display: inline-block !important;
    padding: 12px 24px !important;
    font-family: var(--e-global-typography-accent-font-family) !important;
    font-size: var(--e-global-typography-ea15545-font-size) !important;
    font-weight: var(--e-global-typography-ea15545-font-weight) !important;
    text-transform: var(--e-global-typography-ea15545-text-transform) !important;
    letter-spacing: var(--e-global-typography-ea15545-letter-spacing) !important;
    color: #fff !important;
    background: var(--e-global-color-primary) !important;
    border: none !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
}

.shop_table.wishlist_table .add_to_cart:hover,
.shop_table.wishlist_table .product-add-to-cart a:hover {
    background: var(--e-global-color-accent) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(72, 169, 77, 0.3) !important;
}

/* Pulsante Rimuovi */
.shop_table.wishlist_table .product-remove {
    text-align: center !important;
    margin-top: 10px !important;
}

.shop_table.wishlist_table .product-remove a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 20px !important;
    font-family: var(--e-global-typography-text-font-family) !important;
    font-size: 14px !important;
    background: var(--e-global-color-89d7ca9) !important;
    border-radius: 4px !important;
    color: var(--e-global-color-secondary) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    gap: 6px !important;
}

.shop_table.wishlist_table .product-remove a:hover {
    background: #e74c3c !important;
    color: #fff !important;
}

.shop_table.wishlist_table .product-remove i {
    font-size: 14px !important;
}

/* === FOOTER WISHLIST === */
.yith_wcwl_wishlist_footer {
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid var(--e-global-color-89d7ca9) !important;
}

/* === CONDIVISIONE SOCIAL === */
.yith-wcwl-share {
    display: none !important;
}

/* === LOADER - NO IMPORTANT per AJAX === */
.yith-wcwl-add-to-wishlist .ajax-loading,
.yith-wcwl-wishlistexistsbrowse .ajax-loading,
.yith-wcwl-wishlistaddedbrowse .ajax-loading {
    opacity: 0.6;
}

/* === MESSAGGI === */
.woocommerce-message,
.woocommerce-info {
    font-family: var(--e-global-typography-text-font-family) !important;
    font-size: var(--e-global-typography-text-font-size) !important;
    border-left-color: var(--e-global-color-primary) !important;
}

/* === RESPONSIVE FINALE === */
@media (max-width: 768px) {
    .wishlist-title h2 {
        font-size: 24px !important;
    }
    
    .hidden-title-form input[type="text"] {
        width: 100% !important;
    }
    
    .shop_table.wishlist_table.mobile .item-wrapper {
        flex-direction: column !important;
    }
    
    .shop_table.wishlist_table.mobile .product-thumbnail {
        text-align: center !important;
    }
    
    .shop_table.wishlist_table.mobile .product-thumbnail img {
        width: 120px !important;
        height: 120px !important;
    }
}

//Header

:root {
  --header-h: 80px; /* altezza header */
  --mm-z: 9999;
}

/* Contenitore globale dei pannelli */
#mm-panels {
  position: relative; /* rimane dentro l'header template */
  z-index: var(--mm-z);
}

/* Ogni pannello mega-menu */
.mm-panel {
  position: fixed;        /* overlay rispetto alla pagina */
  left: 0;
  top: var(--header-h);   /* subito sotto l’header fisso */
  width: 100vw;
  height: calc(100vh - var(--header-h));
  background: var(--e-global-color-primary, #fff);
  display: none;          /* nascosto di default */
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

/* Stato aperto */
.mm-panel.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Backdrop (clic per chiudere) */
.mm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(2px);
  z-index: calc(var(--mm-z) - 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.mm-open .mm-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* Header “sticky” sopra i pannelli */
header, .elementor-location-header {
  z-index: calc(var(--mm-z) + 1) !important;
}

/* Nav: cursore e stato attivo */
.has-mm > a {
  cursor: pointer;
}
.has-mm.mm-active > a {
  color: var(--e-global-color-accent);
}

/* Responsivo */
@media (max-width: 1024px) {
  .mm-panel {
    top: var(--header-h);
    height: calc(100dvh - var(--header-h));
  }
}



















/* PAGINA NEGOZI FIRENZE */

/* wrapper */
.zswap-wrap { 
  position: relative; 
}

/* TRIGGERS sempre sopra */
.zswap-wrap .zswap-triggers {
  position: relative;
  z-index: 200;
}

.zswap-wrap .zswap-trigger {
  position: relative;
  cursor: pointer;
  pointer-events: auto;
}

/* Overlay sul TRIGGER attivo */
.zswap-wrap .zswap-trigger::after {
  content: "";
  position:absolute;
  inset: 0;
  background-color: #0B4714C7;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  border-radius: inherit;
}

.zswap-wrap .zswap-trigger.is-active::after {
  opacity: 1;
}

/* TARGET sotto ai trigger */
.zswap-wrap .zswap-targets {
  position: relative;
  z-index: 10;
}

.zswap-wrap .zswap-target {
  position: relative;
  pointer-events: none;
}

/* Target attivo cliccabile */
.zswap-wrap .zswap-target.is-top {
  pointer-events: auto;
}

.icona-meno svg{ 
    margin-top: 5px;
   }

  /* Add your custom styles here */


/*  */
