/* Topbar + barras do cabeçalho/rodapé — alinhado ao fundo da logo (#1e3370) */
:root {
    --site-header-bg: #1e3370;
    --site-footer-bg: #1e3370;
}

.site-header-shell {
    position: sticky;
    top: 0;
    z-index: 10000;
    background: var(--site-header-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
}

.site-contact-bar,
.site-announcement-bar {
    background: var(--site-header-bg);
    border: none;
    box-shadow: none;
}

/* Site-wide: ocultar barra de contato (telefone, endereço, redes, Reclame AQUI) */
body.has-site-header-shell .site-contact-bar {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
    pointer-events: none !important;
    border: none !important;
}

.site-topbar {
    background: #000;
    color: #fff;
    font-size: 12px;
    line-height: 1.3;
    border: none;
    box-shadow: none;
}

.site-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px clamp(12px, 2vw, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 5vw, 56px);
    flex-wrap: wrap;
}

.site-topbar-link {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.site-topbar-link:hover {
    opacity: 0.85;
    color: #fff;
}

.site-topbar-link i {
    font-size: 14px;
    flex-shrink: 0;
}

.site-topbar-link--whatsapp i {
    color: #25d366;
}

.site-topbar-link--service span {
    line-height: 1.25;
}

/* Carrossel da topbar — todas as larguras (4s via site-topbar-carousel.js) */
.site-topbar-inner {
    display: grid !important;
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    align-items: center;
    justify-content: stretch;
    gap: 0 !important;
    flex-wrap: nowrap !important;
}

.site-topbar-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    flex-shrink: 0;
}

.site-topbar-carousel-nav i {
    font-size: 11px;
    line-height: 1;
}

.site-topbar-carousel-nav:active {
    color: #fff;
}

.site-topbar-carousel-viewport {
    overflow: hidden;
    min-width: 0;
    width: 100%;
}

.site-topbar-carousel-track {
    display: flex;
    align-items: center;
    transition: transform 0.35s ease;
    will-change: transform;
}

.site-topbar-carousel-track > .site-topbar-slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 2px 6px;
}

.site-topbar-slide--promo {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.site-topbar-promo-text {
    margin: 0;
    text-align: center;
    max-width: 100%;
    line-height: 1.45;
    font-size: inherit;
    font-weight: 500;
}

.site-topbar-promo-line1::after {
    content: ' ';
}

.site-topbar-promo-line1,
.site-topbar-promo-line2 {
    display: inline;
}

.site-topbar-promo-text strong {
    font-weight: 700;
}

.site-topbar-promo-icon {
    width: 28px;
    height: 21px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.35em;
}

.site-topbar-slide--links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(12px, 3vw, 56px);
    text-align: center;
}

.site-topbar-slide--links .site-topbar-link {
    flex: 0 1 auto;
    width: auto;
    max-width: 100%;
    white-space: nowrap;
}

/* Slides individuais mobile — ocultos por padrão (exibidos via media query) */
.site-topbar-slide--mobile-only,
.site-topbar-mobile-only {
    display: none;
}

/* Barra de promoção duplicada (agora na topbar) */
.site-announcement-bar:not(.site-announcement-bar--categories) {
    display: none !important;
}

@media (min-width: 769px) {
    .site-topbar-carousel-nav {
        display: none !important;
    }

    .site-topbar-slide--mobile-only,
    .site-topbar-mobile-only {
        display: none !important;
    }

    .site-topbar-inner {
        grid-template-columns: minmax(0, 1fr);
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .site-topbar-promo-line1,
    .site-topbar-promo-line2 {
        display: inline;
    }
}

/* Barra de contato (mesma cor do cabeçalho) */
.site-contact-bar {
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    line-height: 1.35;
}

.site-contact-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px clamp(12px, 2vw, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 16px;
    flex-wrap: wrap;
    text-align: center;
}

.site-contact-bar-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    min-width: 0;
    flex: 0 1 auto;
}

.site-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-contact-item:hover {
    color: #fff;
}

.site-contact-item i {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    flex-shrink: 0;
}

.site-contact-sep {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
    user-select: none;
}

.site-contact-bar-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    flex: 0 0 auto;
}

.site-contact-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-contact-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    transition: opacity 0.2s ease;
}

.site-contact-social a:hover {
    opacity: 0.75;
}

.site-contact-ra-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
    line-height: 1;
}

.site-contact-ra-link:hover {
    opacity: 0.85;
}

.site-contact-ra-seal {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.site-contact-ra-logo {
    height: 18px;
    width: auto;
    max-width: 110px;
    display: block;
    flex-shrink: 0;
}

.site-contact-ra-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.site-announcement-bar {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px clamp(12px, 2vw, 24px);
    font-size: 13px;
    line-height: 1.45;
}

.site-announcement-text {
    margin: 0;
    text-align: center;
    max-width: 100%;
    line-height: 1.45;
}

.site-announcement-line1::after {
    content: ' ';
}

.site-announcement-line1,
.site-announcement-line2 {
    display: inline;
}

.site-announcement-icon {
    width: 28px;
    height: 21px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.35em;
}

.site-announcement-text strong {
    font-weight: 700;
}

body.has-site-header-shell .header {
    position: relative;
    top: auto;
    z-index: 1010;
    background: var(--site-header-bg) !important;
    border: none !important;
    border-top: none !important;
    box-shadow: none !important;
    animation: none !important;
}

/* Camadas do header: busca/usuário acima do mega-menu */
body.has-site-header-shell .mega-nav {
    z-index: 1005;
    background: var(--site-header-bg) !important;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

body.has-site-header-shell .mega-nav-inner,
body.has-site-header-shell .mega-nav-inner .header-categories-nav {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none !important;
}

body.has-site-header-shell .site-announcement-bar {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none !important;
}

body.has-site-header-shell .header-search-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

body.has-site-header-shell .header-cep-slot {
    display: flex;
    align-items: center;
}

body.has-site-header-shell .header-quick-icons {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

@media (min-width: 769px) {
    body.has-site-header-shell .header-content {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    body.has-site-header-shell .header-main-cluster {
        grid-column: 2;
        justify-self: center;
    }

    body.has-site-header-shell .header-nav {
        grid-column: 3;
        justify-self: end;
        align-self: center;
        margin-left: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

body.has-site-header-shell .header-brand {
    min-width: 0;
}

body.has-site-header-shell .header-cep-slot .header-cep-btn,
body.has-site-header-shell .header-cep-slot .header-location {
    margin: 0;
}

.header-location-pin,
body.has-site-header-shell .header-cep-slot .header-location-pin,
body.has-site-header-shell #headerCepBtnDesktop .header-location-pin,
body.has-site-header-shell .header-location .header-location-pin {
    font-size: 18px;
    color: #f0e000 !important;
    -webkit-text-fill-color: #f0e000 !important;
    flex-shrink: 0;
    margin-top: 1px;
    line-height: 1;
}

@media (min-width: 769px) {
    body.has-site-header-shell .header-cep-slot {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    body.has-site-header-shell .header-cep-slot {
        display: none !important;
    }
}

body.has-site-header-shell .search-bar,
body.has-site-header-shell .search-bar-desktop {
    position: relative;
    z-index: 10120;
    isolation: isolate;
    overflow: visible;
}

@media (min-width: 769px) {
    body.has-site-header-shell .search-bar,
    body.has-site-header-shell .search-bar-desktop {
        max-width: 630px;
        min-width: 300px;
    }
}

body.has-site-header-shell .search-bar-inner {
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

body.has-site-header-shell .search-dropdown.show,
body.has-site-header-shell .search-autocomplete.active {
    z-index: 10150;
    pointer-events: auto;
}

/* Com busca ou menu do usuário aberto, não ativar dropdowns do mega-menu por baixo */
body.search-dropdown-active .mega-nav,
body.search-autocomplete-active .mega-nav,
body.user-dropdown-active .mega-nav {
    pointer-events: none !important;
}

body.search-dropdown-active .mega-nav-dropdown,
body.search-dropdown-active .mega-nav-dropdown-wrap:hover .mega-nav-dropdown,
body.search-dropdown-active .mega-nav-dropdown-wrap:focus-within .mega-nav-dropdown,
body.search-autocomplete-active .mega-nav-dropdown,
body.search-autocomplete-active .mega-nav-dropdown-wrap:hover .mega-nav-dropdown,
body.search-autocomplete-active .mega-nav-dropdown-wrap:focus-within .mega-nav-dropdown,
body.user-dropdown-active .mega-nav-dropdown,
body.user-dropdown-active .mega-nav-dropdown-wrap:hover .mega-nav-dropdown,
body.user-dropdown-active .mega-nav-dropdown-wrap:focus-within .mega-nav-dropdown {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

body.search-dropdown-active .search-bar,
body.search-dropdown-active .search-bar *,
body.search-dropdown-active .header-search-group,
body.search-dropdown-active .header-search-group *,
body.search-dropdown-active .header-brand,
body.search-dropdown-active .header-brand *,
body.search-dropdown-active .mega-nav-inner .header-categories-nav,
body.search-dropdown-active .mega-nav-inner .header-categories-nav *,
body.search-dropdown-active .header-cep-slot,
body.search-dropdown-active .header-cep-slot *,
body.search-autocomplete-active .search-bar,
body.search-autocomplete-active .search-bar-desktop,
body.search-autocomplete-active .search-bar-desktop *,
body.search-autocomplete-active .search-bar-mobile,
body.search-autocomplete-active .search-bar-mobile *,
body.search-autocomplete-active .header-search-group,
body.search-autocomplete-active .header-search-group *,
body.search-autocomplete-active .header-brand,
body.search-autocomplete-active .header-brand *,
body.search-autocomplete-active .mega-nav-inner .header-categories-nav,
body.search-autocomplete-active .mega-nav-inner .header-categories-nav *,
body.search-autocomplete-active .header-cep-slot,
body.search-autocomplete-active .header-cep-slot *,
body.user-dropdown-active .user-area,
body.user-dropdown-active .user-dropdown-container,
body.user-dropdown-active .user-dropdown-container * {
    pointer-events: auto !important;
}


@media (max-width: 768px) {
    .site-topbar-inner {
        padding: 8px 4px !important;
        font-size: 11px;
    }

    body #siteTopbar.site-topbar {
        background: #103070;
    }

    .site-topbar-slide--links.site-topbar-desktop-only {
        display: none !important;
    }

    .site-topbar-slide--link.site-topbar-mobile-only {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 2px 6px;
    }

    .site-topbar-slide--link.site-topbar-mobile-only .site-topbar-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #fff;
        font-size: 11px;
        line-height: 1.35;
        text-align: center;
        white-space: nowrap;
        text-decoration: none;
        padding: 4px 8px;
    }

    .site-topbar-slide--link.site-topbar-mobile-only .site-topbar-link i {
        font-size: 13px;
        flex-shrink: 0;
    }

    .site-topbar-slide--link.site-topbar-mobile-only .site-topbar-link span {
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: none;
    }

    .site-topbar-promo-line1,
    .site-topbar-promo-line2 {
        display: block;
    }

    .site-topbar-promo-line2 {
        white-space: nowrap;
    }

    .site-topbar-link--email span,
    .site-topbar-link--whatsapp span,
    .site-topbar-link--service span {
        max-width: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
    }

    .site-announcement-bar {
        font-size: 11px;
        padding: 8px 12px;
    }

    .site-announcement-line1,
    .site-announcement-line2 {
        display: block;
    }

    .site-announcement-line2 {
        white-space: nowrap;
    }

    /* Contato no drawer mobile — barra oculta */
    .site-contact-bar,
    .site-contact-bar-inner {
        display: none !important;
    }

    /* Mobile: só carrinho nos ícones rápidos (Produtos/Início no drawer) */
    .header-quick-icons > a.header-icon-btn {
        display: none !important;
    }

    .header-quick-icons > a.header-icon-btn#cartLink,
    .header-quick-icons > a.header-icon-btn#cartBtn,
    .header-quick-icons > a.header-icon-btn[title="Carrinho"] {
        display: flex !important;
    }

    .header-nav > .user-guest-auth {
        flex: 1 1 auto;
        min-width: 0;
        max-width: none;
    }

    .header-nav > .user-guest-auth .user-guest-link {
        max-width: none;
        white-space: nowrap;
    }

    /* Header mobile: [☰] [logo] [login …] [carrinho] */
    .header-main-cluster,
    .header-search-group {
        display: contents;
    }

    .header-content {
        justify-content: flex-start !important;
        gap: 8px !important;
    }

    .mobile-menu-btn,
    .mobile-menu-container {
        order: 1 !important;
        flex: 0 0 auto;
        margin: 0;
    }

    .header-brand {
        order: 2 !important;
        flex: 0 0 auto;
    }

    .header-nav > .user-guest-auth,
    .header-quick-icons .user-dropdown-container--icons {
        order: 3 !important;
        flex: 1 1 auto;
        min-width: 0;
        justify-content: center;
    }

    .header-quick-icons {
        order: 4 !important;
        flex: 0 0 auto;
        margin-left: 0 !important;
    }

    .header-quick-icons .user-area--icons {
        display: none !important;
    }

    /* Dropdown de busca mobile — não cortar no shell sticky */
    body.search-dropdown-active .site-header-shell,
    body.search-autocomplete-active .site-header-shell {
        overflow: visible;
    }

    .search-bar-mobile {
        overflow: visible !important;
        position: relative;
        z-index: 10210;
        isolation: isolate;
    }

    .search-bar-mobile .search-input-wrapper {
        overflow: visible;
    }

    .search-bar-mobile .search-dropdown {
        z-index: 10250;
    }

    .search-bar-mobile .search-dropdown-scroll {
        max-height: none;
    }

    /* Topbar — grid collapse com transição (igual desktop) */
    body.home-page .site-topbar,
    body.catalog-page .site-topbar {
        display: grid;
        grid-template-rows: 1fr;
        transition:
            grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s ease;
    }

    body.home-page .site-topbar-inner,
    body.catalog-page .site-topbar-inner {
        overflow: hidden;
        min-height: 0;
    }

    body.home-page.home-mobile-header-compact .site-topbar,
    body.catalog-page.catalog-mobile-header-compact .site-topbar {
        grid-template-rows: 0fr;
        height: 0;
        min-height: 0;
        opacity: 0;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        pointer-events: none;
        visibility: hidden;
        border: none;
        overflow: hidden;
    }

    /* Body padding = altura do shell (topbar+header+busca). Transiciona com o colapso da topbar. */
    body.has-site-header-shell {
        transition: padding-top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: var(--header-shell-full-h, 152px) !important;
    }

    body.has-site-header-shell.home-mobile-header-compact,
    body.has-site-header-shell.catalog-mobile-header-compact {
        padding-top: var(--header-shell-compact-h, 95px) !important;
    }
}

/* Dropdowns do menu de categorias — cantos quadrados, hover azul claro */
.mega-nav-dropdown {
    border-radius: 0;
}

.mega-nav-dd-item:hover {
    background: #e8f4fc;
    color: #103070;
}

/* Dropdown da busca — cantos quadrados */
.search-dropdown,
.search-autocomplete {
    border-radius: 0;
}

/* Sentinel: marca o ponto em que o cabeçalho completo foi rolado (desktop) */
.site-header-scroll-sentinel {
    display: block;
    height: 1px;
    margin: 0;
    padding: 0;
    border: 0;
    pointer-events: none;
    visibility: hidden;
}

/* Desktop: slide (grid 0fr + opacity) — mesmo timing do mobile compact */
@media (min-width: 769px) {
    body.has-site-header-shell .site-topbar,
    body.has-site-header-shell .site-contact-bar,
    body.has-site-header-shell .site-announcement-bar {
        display: grid;
        grid-template-rows: 1fr;
        box-sizing: border-box;
        transition:
            grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s ease,
            padding-top 0.35s ease,
            padding-bottom 0.35s ease,
            margin-top 0.35s ease,
            margin-bottom 0.35s ease,
            visibility 0.3s ease;
    }

    body.has-site-header-shell .site-topbar-inner,
    body.has-site-header-shell .site-contact-bar-inner,
    body.has-site-header-shell .site-announcement-text {
        overflow: hidden;
        min-height: 0;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body.has-site-header-shell.site-header-scroll-compact .site-topbar,
    body.has-site-header-shell.site-header-scroll-compact .site-contact-bar,
    body.has-site-header-shell.site-header-scroll-compact .site-announcement-bar {
        grid-template-rows: 0fr;
        height: 0;
        min-height: 0;
        opacity: 0;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        pointer-events: none;
        visibility: hidden;
        border: none;
        overflow: hidden;
    }

    body.has-site-header-shell.site-header-scroll-compact .site-topbar-inner,
    body.has-site-header-shell.site-header-scroll-compact .site-contact-bar-inner,
    body.has-site-header-shell.site-header-scroll-compact .site-announcement-text {
        transform: translateY(-12px);
    }

    /* PC: sem contorno/sombra entre header, mega-nav e anúncio */
    body.has-site-header-shell .site-header-shell {
        box-shadow: none;
    }

    body.has-site-header-shell .mega-nav,
    body.has-site-header-shell .mega-nav-inner,
    body.has-site-header-shell .mega-nav-inner .header-categories-nav,
    body.has-site-header-shell .site-announcement-bar {
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        box-shadow: none !important;
        outline: none !important;
    }

    /* PC: header + barra de categorias permanecem visíveis ao rolar */
    body.has-site-header-shell.site-header-scroll-compact .header {
        position: sticky;
        top: 0;
        z-index: 10009;
        box-shadow: none !important;
        border: none !important;
    }

    body.has-site-header-shell.site-header-scroll-compact .mega-nav {
        position: sticky;
        top: var(--site-desktop-sticky-header-h, 72px);
        z-index: 10008;
        flex-shrink: 0;
        box-shadow: none !important;
        border: none !important;
        margin-top: 0;
    }

    /* Legado: .catalog-page--compact-top (não usar em páginas novas — cabeçalho completo = /inicio) */
    body.has-site-header-shell.catalog-page--compact-top .site-topbar,
    body.has-site-header-shell.catalog-page--compact-top .site-contact-bar {
        grid-template-rows: 0fr;
        height: 0;
        min-height: 0;
        opacity: 0;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        pointer-events: none;
        visibility: hidden;
        border: none;
        overflow: hidden;
    }

    body.has-site-header-shell.catalog-page--compact-top .site-topbar-inner,
    body.has-site-header-shell.catalog-page--compact-top .site-contact-bar-inner {
        transform: translateY(-12px);
    }

    body.has-site-header-shell.catalog-page--compact-top .header {
        position: sticky;
        top: 0;
        z-index: 10009;
        box-shadow: none !important;
        border: none !important;
    }

    body.has-site-header-shell.catalog-page--compact-top .mega-nav {
        position: sticky;
        top: var(--site-desktop-sticky-header-h, 72px);
        z-index: 10008;
        flex-shrink: 0;
        box-shadow: none !important;
        border: none !important;
        margin-top: 0;
    }

    /* /recuperarsenha (PC) — só header principal; sem mega-nav nem faixa de frete */
    body.has-site-header-shell.catalog-page--header-only .mega-nav,
    body.has-site-header-shell.catalog-page--header-only .site-announcement-bar {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        visibility: hidden !important;
        pointer-events: none !important;
        border: none !important;
    }

    body.has-site-header-shell.catalog-page--header-only .header {
        position: sticky;
        top: 0;
        z-index: 10009;
        box-shadow: none !important;
        border: none !important;
    }
}

/* Mobile: páginas com topo compacto (topbar + contato ocultos) */
@media (max-width: 768px) {
    body.catalog-page--compact-top .site-topbar,
    body.catalog-page--compact-top .site-contact-bar {
        display: none !important;
    }
}
