/**
 * Components CSS — De Anciola
 * Boutons, lightbox panier, bouton add to cart WooCommerce.
 *
 * @package deanciola
 * @version 3.0.0
 */

/* ========================================
   BOUTON — BASE
   Effet fill-from-bottom au hover.
   Usage Elementor : classe CSS supplémentaire → de-btn + variante

   VARIANTES DISPONIBLES :
   .de-btn--gold   → bordure dorée, remplissage doré  (sur fond sombre)
   .de-btn--white  → bordure blanche, remplissage blanc (sur fond sombre)
   .de-btn--dark   → bordure sombre, remplissage sombre (sur fond clair)
   ======================================== */

.de-btn {
    position: relative;
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-primary);
    font-size: 0.82em;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid currentColor;
    background: transparent;
    transition: color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
}

/* Pseudo-élément : le remplissage qui monte par le bas */
.de-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: 0;
    transition: height 0.3s ease;
}

/* Le texte reste toujours au-dessus du remplissage */
.de-btn span,
.de-btn > * {
    position: relative;
    z-index: 1;
}

/* Déclencher le remplissage */
.de-btn:hover::before {
    height: 100%;
}

/* Taille petite */
.de-btn--sm {
    padding: 10px 24px;
    font-size: 0.78em;
}

/* Taille grande */
.de-btn--lg {
    padding: 18px 48px;
    font-size: 0.88em;
}

/* ========================================
   VARIANTE DORÉE
   Contexte : fond sombre (#1A202C)
   Texte initial doré → texte sombre au hover
   ======================================== */

.de-btn--gold {
    color: #FDBD74;
    border-color: #FDBD74;
}

.de-btn--gold::before {
    background-color: #FDBD74;
}

.de-btn--gold:hover {
    color: #1A202C;
}

/* ========================================
   VARIANTE BLANCHE
   Contexte : fond sombre (#1A202C)
   Texte initial blanc → texte sombre au hover
   ======================================== */

.de-btn--white {
    color: #FFFAEC;
    border-color: #FFFAEC;
}

.de-btn--white::before {
    background-color: #FFFAEC;
}

.de-btn--white:hover {
    color: #1A202C;
}

/* ========================================
   VARIANTE SOMBRE
   Contexte : fond clair (#FFFAEC ou blanc)
   Texte initial sombre → texte clair au hover
   ======================================== */

.de-btn--dark {
    color: #1A202C;
    border-color: #1A202C;
}

.de-btn--dark::before {
    background-color: #1A202C;
}

.de-btn--dark:hover {
    color: #FFFAEC;
}

/* ========================================
   BOUTON RING-PLUS
   Cercle avec croix, s'utilise via [btn-plus]
   Deux variantes :
   .de-btn-plus--dark  → fond clair  : anneau/plus sombres → fond sombre, plus blanc
   .de-btn-plus--light → fond sombre : anneau/plus dorés   → fond doré, plus sombre
   ======================================== */

.de-btn-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
}

.de-btn-plus svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Anneau */
.de-btn-plus .ring {
    fill: none;
    stroke-width: 3;
    transition: fill 0.3s ease, stroke 0.3s ease;
}

/* Lignes du plus */
.de-btn-plus .plus {
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke 0.3s ease;
}

/* Rotation 90° au hover sur le SVG */
.de-btn-plus svg {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.de-btn-plus:hover svg {
    transform: rotate(90deg);
}

/* ----------------------------------------
   VARIANTE DARK — sur fond clair
   ---------------------------------------- */

.de-btn-plus--dark .ring {
    stroke: #1A202C;
}

.de-btn-plus--dark .plus {
    stroke: #1A202C;
}

.de-btn-plus--dark:hover .ring {
    fill: #1A202C;
    stroke: #1A202C;
}

.de-btn-plus--dark:hover .plus {
    stroke: #FFFAEC;
}

/* ----------------------------------------
   VARIANTE LIGHT — sur fond sombre
   ---------------------------------------- */

.de-btn-plus--light .ring {
    stroke: #ffffff;
}

.de-btn-plus--light .plus {
    stroke: #ffffff;
}

.de-btn-plus--light:hover .ring {
    fill: #ffffff;
    stroke: #ffffff;
}

.de-btn-plus--light:hover .plus {
    stroke: #1A202C;
}

/* ========================================
   BOUTON ADD TO CART
   Style harmonisé avec [btn-plus] variant dark
   ======================================== */

.de-anciola-add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.de-anciola-add-to-cart-btn svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Rotation au hover */
.de-anciola-add-to-cart-btn:hover svg {
    transform: rotate(90deg);
}

.de-anciola-add-to-cart-btn .ring {
    fill: none;
    stroke: #1A202C;
    stroke-width: 3;
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.de-anciola-add-to-cart-btn .plus {
    stroke: #1A202C;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke 0.3s ease;
}

/* Hover : remplissage sombre, plus blanc */
.de-anciola-add-to-cart-btn:hover .ring {
    fill: #1A202C;
    stroke: #1A202C;
}

.de-anciola-add-to-cart-btn:hover .plus {
    stroke: #FFFAEC;
}

/* État loading */
.de-anciola-add-to-cart-btn.loading {
    opacity: 0.4;
    pointer-events: none;
}

.de-anciola-add-to-cart-btn.loading svg {
    animation: de-spin 0.8s linear infinite;
}

@keyframes de-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* État added : anneau et plus en couleur accent */
.de-anciola-add-to-cart-btn.added .ring {
    fill: var(--color-accent);
    stroke: var(--color-accent);
}

.de-anciola-add-to-cart-btn.added .plus {
    stroke: #FFFAEC;
    transform: rotate(45deg);
    transform-origin: 50px 50px;
}

/* Masquer le bouton WooCommerce natif et le lien "Voir le panier" */
.de-anciola-wc-hidden,
.added_to_cart.wc-forward {
    display: none !important;
}

/* ========================================
   LIGHTBOX PANIER — POPUP CENTRÉ
   ======================================== */

.de-cart-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    padding: 20px;
}

.de-cart-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.de-cart-lightbox__main {
    width: 100%;
    max-width: 480px;
    max-height: 85vh;
    background: #fff;
    padding: 48px 36px 36px;
    overflow-y: auto;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s ease;
    opacity: 0;
    position: relative;
    border-radius: 2px;
}

.de-cart-lightbox.active .de-cart-lightbox__main {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.de-cart-lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.de-cart-lightbox__close::before {
    content: '×';
}

.de-cart-lightbox__close:hover {
    color: var(--color-accent);
}

.de-cart-lightbox__product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.de-cart-lightbox__product-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.de-cart-lightbox__product-info {
    flex: 1;
}

.de-cart-lightbox__product-name a {
    font-size: 0.9em;
    font-weight: 500;
    color: var(--color-text);
}

.de-cart-lightbox__product-price {
    font-size: 0.85em;
    color: var(--color-muted);
    margin-top: 4px;
}

.de-cart-lightbox__product-remove a {
    font-size: 22px;
    color: var(--color-muted);
    line-height: 1;
    transition: color 0.2s ease;
}

.de-cart-lightbox__product-remove a:hover {
    color: var(--color-accent);
}

.de-cart-lightbox__subtotal {
    padding: 16px 0;
    font-size: 0.95em;
    font-weight: 500;
    border-top: 1px solid var(--color-border);
    margin-top: 8px;
}

.de-cart-lightbox__footer-buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 16px;
}

/* Les boutons du panier utilisent le système de-btn standard */
.de-cart-lightbox__footer-buttons .de-btn {
    display: block;
    text-align: center;
    width: 50%;
    flex: 1;
}


.de-cart-lightbox__empty {
    padding: 32px 0;
    text-align: center;
    color: var(--color-muted);
    font-size: 0.95em;
}

.de-cart-lightbox__loading {
    padding: 32px 0;
    text-align: center;
    color: var(--color-muted);
}

/* ========================================
   ANIMATIONS UTILITIES (classes CSS)
   ======================================== */

.anim-fade,
.anim-zoom {
    opacity: 0;
    transition:
        opacity var(--anim-duration-base) var(--anim-ease-out),
        transform var(--anim-duration-base) var(--anim-ease-out);
}

.anim-fade {
    transform: translateY(24px);
}

.anim-zoom {
    transform: scale(0.94);
}

.anim-fade.is-visible,
.anim-zoom.is-visible {
    opacity: 1;
    transform: none;
}

/* Compteur animé */
.anim-counter {
    font-variant-numeric: tabular-nums;
    display: inline-block;
}

/* Reveal par ligne */
.reveal-line {
    overflow: hidden;
    display: block;
}

.reveal-line > span {
    display: block;
    transform: translateY(110%);
    transition: transform var(--anim-duration-base) var(--anim-ease-out);
}

.reveal-line.is-visible > span {
    transform: translateY(0);
}
/**
 * Filter CSS — De Anciola
 * Boîte de filtre boutique : catégories + attributs produits.
 *
 * @package deanciola
 * @version 1.0.0
 */

/* ========================================
   BOÎTE CONTENEUR
   ======================================== */

.de-filter {
    background: #F4F4F4;
    border-radius: 12px;
    padding: 8px 0;
    font-family: var(--font-primary);
    width: 100%;
    max-width: 280px;
    user-select: none;
}

/* ========================================
   HEADER : titre + bouton reset
   ======================================== */

.de-filter__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 4px;
}

.de-filter__title {
    font-size: 0.78em;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1A202C;
}

.de-filter__reset {
    font-family: var(--font-primary);
    font-size: 0.78em;
    font-weight: 400;
    color: var(--color-accent);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.de-filter__reset:hover {
    color: #1A202C;
}

/* ========================================
   FILTRE — WRAPPER STICKY DU BOUTON APPLIQUER
   Épinglé à 72px du haut (hauteur du header) pendant le scroll.
   S'arrête automatiquement quand #de-filter sort de l'écran par le bas
   → équivalent Elementor "Épinglé En haut" + "Rester en colonne".
   ======================================== */

.de-filter__apply-wrapper {
    position: sticky;
    top: 110px;           /* Hauteur exacte du header De Anciola */
    z-index: 10;
    background: #F4F4F4; /* Même fond que .de-filter */
    padding: 4px 0;
    /* Ombre discrète vers le bas pour séparer du contenu qui défile */
    box-shadow: 0 6px 10px -2px #F4F4F4;
}

/* Désactivé en mode popup mobile : le filtre est un drawer,
   sticky serait cassé par overflow-y: auto de #de-filter */
@media (max-width: 900px) {
    .de-filter__apply-wrapper {
        position: static;
        box-shadow: none;
    }
}

/* ========================================
   FILTRE — BOUTON APPLIQUER
   Placé entre le header et la liste des catégories.
   Variante dark du de-btn, pleine largeur.
   État .is-pending : bordure + texte dorés pour signaler des filtres non appliqués.
   ======================================== */

.de-filter__apply {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 12px;
    text-align: center;
    justify-content: center;
    transition: color 0.3s ease, border-color 0.3s ease;
}

/* En état normal (pas de changements en attente) : légèrement atténué */
.de-filter__apply:not(.is-pending) {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

/* État en attente : pleinement actif, bordure dorée pour attirer l'œil */
.de-filter__apply.is-pending {
    opacity: 1;
    pointer-events: auto;
    color: #00222E !important;
    border-color: #00222E !important;
}

.de-filter__apply.is-pending::before {
    background-color: #00222E;
}

.de-filter__apply.is-pending:hover {
    color: #ffffff !important;
}

/* ========================================
   LISTE DES CATÉGORIES
   ======================================== */

.de-filter__cats {
    list-style: none;
    margin: 0;
    padding: 0;
}

.de-filter__cat {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.de-filter__cat:last-child {
    border-bottom: none;
}

/* ========================================
   BOUTON CATÉGORIE
   ======================================== */

.de-filter__cat-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 0.92em;
    font-weight: 400;
    color: #718096;
    text-align: left;
    transition: color 0.2s ease;
    gap: 8px;
}

.de-filter__cat-btn:hover {
    color: #1A202C;
}

/* État actif */
.de-filter__cat.is-active > .de-filter__cat-btn {
    color: #1A202C;
    font-weight: 600;
}

/* Chevron */
.de-filter__chevron {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: #718096;
}

.de-filter__cat.is-active > .de-filter__cat-btn .de-filter__chevron {
    transform: rotate(180deg);
    color: #1A202C;
}

/* ========================================
   PANNEAU ATTRIBUTS (déroulant)
   ======================================== */

.de-filter__attrs {
    padding: 4px 20px 14px;
    animation: de-filter-slide-down 0.2s ease;
}

@keyframes de-filter-slide-down {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.de-filter__attr-group {
    margin-bottom: 12px;
}

.de-filter__attr-group:last-child {
    margin-bottom: 0;
}

.de-filter__attr-label {
    font-size: 0.72em !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    color: #718096 !important;
    margin-bottom: 6px !important;
}

/* ========================================
   CHECKBOXES
   ======================================== */

.de-filter__check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    cursor: pointer;
    font-size: 0.88em;
    color: #718096;
    transition: color 0.15s ease;
}

.de-filter__check:hover {
    color: #1A202C;
}

.de-filter__check input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1.5px solid #CBD5E0;
    border-radius: 3px;
    flex-shrink: 0;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
    position: relative;
    background: #fff;
}

.de-filter__check input[type="checkbox"]:checked {
    background: #1A202C;
    border-color: #1A202C;
}

.de-filter__check input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 7px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.de-filter__check input[type="checkbox"]:checked + span {
    color: #1A202C;
    font-weight: 500;
}

/* ========================================
   FILTRE — HEADER ACTIONS (reset + close)
   ======================================== */

.de-filter__header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ========================================
   FILTRE — BOUTON DÉCLENCHEUR MOBILE
   Masqué sur desktop, visible sous 900px
   ======================================== */

.de-filter__mobile-trigger {
    display: none;
}

/* Bouton × de fermeture dans le header du filtre */
.de-filter__mobile-close {
    display: none;
}

/* Overlay de fond — inactif sur desktop */
.de-filter__overlay {
    display: none;
}

/* Compteur de filtres actifs affiché sur le bouton déclencheur */
.de-filter__active-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    background: #FDBD74;
    color: #1A202C;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

/* ========================================
   FILTRE — MODE POPUP MOBILE (< 900px)
   ======================================== */

@media (max-width: 900px) {

    /* Bouton déclencheur : visible */
    .de-filter__mobile-trigger {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 18px;
        border: 1.5px solid #1A202C;
        border-radius: 4px;
        background: transparent;
        color: #1A202C;
        font-family: var(--font-primary);
        font-size: 0.85em;
        font-weight: 500;
        letter-spacing: 0.04em;
        cursor: pointer;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .de-filter__mobile-trigger svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .de-filter__mobile-trigger:hover,
    .de-filter__mobile-trigger[aria-expanded="true"] {
        background: #1A202C;
        color: #FFFAEC;
        border-color: #1A202C;
    }

    .de-filter__mobile-trigger[aria-expanded="true"] .de-filter__active-count {
        background: #FDBD74;
        color: #1A202C;
    }

    /* Overlay : fond semi-transparent */
    .de-filter__overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1199;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .de-filter__overlay.is-open {
        opacity: 1;
        pointer-events: all;
    }

    /* Panneau filtre : popup glissant depuis le bas */
    #de-filter {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        max-height: 85dvh;
        overflow-y: auto;
        background: #fff;
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.15);
        z-index: 1200;
        max-width: 100%;
        transform: translateY(100%);
        transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
        padding-bottom: env(safe-area-inset-bottom, 16px);
        /* Annuler les styles desktop */
        background: #F4F4F4;
        border-radius: 16px 16px 0 0;
    }

    #de-filter.is-open {
        transform: translateY(0);
    }

    /* Handle visuel (barre grise en haut du panneau) */
    #de-filter::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        border-radius: 2px;
        background: #CBD5E0;
        margin: 12px auto 6px;
    }

    /* Bouton × : visible */
    .de-filter__mobile-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border: none;
        border-radius: 50%;
        background: transparent;
        cursor: pointer;
        flex-shrink: 0;
        transition: background 0.2s ease;
    }

    .de-filter__mobile-close:hover {
        background: rgba(0, 0, 0, 0.06);
    }

    .de-filter__mobile-close svg {
        width: 16px;
        height: 16px;
        color: #1A202C;
    }
}


/* =========================================================
   WooCommerce — Reset méthodes de paiement
   Neutralise les styles injectés par Elementor (skin Checkout)
   → retour à l'affichage natif navigateur
   ========================================================= */

/* Reset label — retire tout style Elementor */
.woocommerce .wc_payment_method label,
.woocommerce-checkout .wc_payment_method label,
.elementor-widget-woocommerce-checkout-page .woocommerce .wc_payment_method label,
.elementor-widget-woocommerce-checkout-page .wc_payment_method label {
    display: inline !important;
    background-color: transparent !important;
    background: transparent !important;
    color: inherit !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
    text-transform: none !important;
    overflow: visible !important;
    cursor: pointer !important;
    transition: none !important;
    width: auto !important;
    box-sizing: content-box !important;
}

/* Reset pseudo-éléments */
.woocommerce .wc_payment_method label::before,
.woocommerce .wc_payment_method label::after,
.elementor-widget-woocommerce-checkout-page .woocommerce .wc_payment_method label::before,
.elementor-widget-woocommerce-checkout-page .woocommerce .wc_payment_method label::after {
    display: none !important;
    content: none !important;
}

/* Reset état sélectionné */
.woocommerce .wc_payment_method input[type="radio"]:checked + label,
.woocommerce .wc_payment_method input[type="radio"]:checked ~ label,
.elementor-widget-woocommerce-checkout-page .woocommerce .wc_payment_method input[type="radio"]:checked + label,
.elementor-widget-woocommerce-checkout-page .woocommerce .wc_payment_method input[type="radio"]:checked ~ label {
    background-color: transparent !important;
    background: transparent !important;
    color: inherit !important;
    border: none !important;
}

/* Radio natif — visible et cliquable */
.woocommerce .wc_payment_method input[type="radio"],
.elementor-widget-woocommerce-checkout-page .woocommerce .wc_payment_method input[type="radio"] {
    position: static !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: auto !important;
    height: auto !important;
    appearance: auto !important;
    -webkit-appearance: auto !important;
    display: inline-block !important;
    margin-right: 6px !important;
}

/* Chaque item en bloc propre */
.woocommerce ul.payment_methods li.wc_payment_method,
.elementor-widget-woocommerce-checkout-page .woocommerce ul.payment_methods li.wc_payment_method {
    padding: 6px 0 !important;
    margin: 0 !important;
    display: block !important;
}

/* ========================================
   WOOCOMMERCE — BANDEAU "AJOUTÉ AU PANIER"
   Masqué car le retour visuel est géré
   par le popup panier custom du thème.
   ======================================== */
.woocommerce-notices-wrapper,
.woocommerce-notices-wrapper .woocommerce-message {
    display: none !important;
}
