/* EasySell Explorer — couche UI marketplace mobile-first.
   Cette feuille surcharge l'interface sans modifier la logique SEO/API existante. */

:root {
    --es-ink: #17120f;
    --es-ink-soft: #423a35;
    --es-muted: #746963;
    --es-canvas: #fffaf6;
    --es-surface: #ffffff;
    --es-surface-warm: #fff3e9;
    --es-orange: #f4511e;
    --es-orange-deep: #d94316;
    --es-gold: #ffc857;
    --es-ring: rgba(244, 81, 30, 0.22);
    --es-shadow-card:
        0 0 0 1px rgba(0, 0, 0, 0.055),
        0 2px 4px rgba(38, 25, 18, 0.035),
        0 14px 34px rgba(77, 38, 18, 0.075);
    --es-shadow-card-hover:
        0 0 0 1px rgba(0, 0, 0, 0.075),
        0 4px 8px rgba(38, 25, 18, 0.05),
        0 20px 44px rgba(77, 38, 18, 0.12);
    --es-bottom-nav-height: 70px;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body.explorer-page,
body.search-page {
    background:
        radial-gradient(circle at 8% 4%, rgba(255, 200, 87, 0.12), transparent 26rem),
        linear-gradient(180deg, #fffdfb 0%, var(--es-canvas) 42rem, #fff 100%);
    color: var(--es-ink);
}

body.explorer-page h1,
body.explorer-page h2,
body.explorer-page h3,
body.search-page h1,
body.search-page h2,
body.search-page h3 {
    text-wrap: balance;
}

body.explorer-page p,
body.search-page p,
.card-desc,
.product-desc {
    text-wrap: pretty;
}

.es-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.stat-item-val,
.count-badge,
.product-price,
.results-count,
.results-count-title,
#resultsCountLabel,
.load-more-counter {
    font-variant-numeric: tabular-nums;
}

/* Focus cohérent et visible */
body.explorer-page :where(a, button, input, select):focus-visible,
body.search-page :where(a, button, input, select):focus-visible {
    outline: 3px solid var(--es-ring);
    outline-offset: 3px;
}

/* Header : surface chaude, plus nette et plus légère à calculer. */
.explorer-page .site-header,
.search-page .search-header {
    background: rgba(255, 253, 251, 0.97);
    border-bottom-color: rgba(64, 42, 30, 0.08);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 22px rgba(73, 39, 21, 0.04);
}

.explorer-page .brand-badge-icon {
    background: linear-gradient(145deg, #ff6a36 0%, var(--es-orange-deep) 100%);
    box-shadow: 0 6px 16px rgba(244, 81, 30, 0.26);
}

.explorer-page .brand-title,
.search-page .results-count-title {
    color: var(--es-ink);
}

.explorer-page .btn-header-cta {
    background: var(--es-ink);
    box-shadow: 0 6px 16px rgba(23, 18, 15, 0.16);
    transition-property: transform, background-color, box-shadow;
    transition-duration: 160ms;
    transition-timing-function: ease-out;
}

.explorer-page .btn-header-cta:active,
.explorer-page button:active,
.search-page button:active,
.search-page .pill-btn:active,
.es-bottom-nav__item:active {
    transform: scale(0.96);
}

/* Hero éditorial : photo locale et contraste premium. */
.explorer-page .hero-section {
    position: relative;
}

.explorer-page .hero-title {
    max-width: 720px;
    color: var(--es-ink);
}

.explorer-page .hero-title em {
    color: var(--es-orange);
}

.explorer-page .hero-subtitle {
    color: var(--es-ink-soft);
}

.explorer-page .hero-tag {
    color: #7d3b12;
    background: #fff0bc;
    box-shadow: inset 0 0 0 1px rgba(125, 59, 18, 0.08);
}

.explorer-page .hero-card-preview {
    box-shadow: var(--es-shadow-card-hover) !important;
    outline: 1px solid rgba(0, 0, 0, 0.1);
    outline-offset: -1px;
}

.explorer-page .preview-img,
.explorer-page .card-img,
.explorer-page .seller-logo,
.search-page .card-img,
.search-page .seller-logo,
.visual-thumb {
    outline: 1px solid rgba(0, 0, 0, 0.1);
    outline-offset: -1px;
}

/* Contrôles */
.explorer-page .search-filters-bar {
    background: rgba(255, 255, 255, 0.96);
    border: 0;
    box-shadow: var(--es-shadow-card);
}

.explorer-page .search-input,
.search-page .main-search-input {
    border-color: rgba(67, 45, 33, 0.14);
    background: #fffdfb;
    color: var(--es-ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition-property: border-color, box-shadow, background-color;
    transition-duration: 170ms;
    transition-timing-function: ease-out;
}

.explorer-page .search-input:focus,
.search-page .main-search-input:focus {
    border-color: var(--es-orange);
    box-shadow: 0 0 0 4px var(--es-ring), 0 8px 22px rgba(58, 31, 17, 0.06);
}

.explorer-page .btn-explore-photo,
.search-page .btn-photo-search {
    min-width: 40px;
    min-height: 40px;
    border-color: rgba(244, 81, 30, 0.16);
    background: var(--es-surface-warm);
    transition-property: transform, background-color, border-color;
    transition-duration: 160ms;
    transition-timing-function: ease-out;
}

.explorer-page .btn-explore-clear,
.search-page .btn-clear-search,
.btn-cancel-visual {
    min-width: 40px;
    min-height: 40px;
    transition-property: transform, color, background-color;
    transition-duration: 150ms;
    transition-timing-function: ease-out;
}

.explorer-page .tab-btn,
.explorer-page .product-category-chip,
.explorer-page .view-pill-btn,
.search-page .pill-btn,
.search-page .select-filter {
    min-height: 42px;
    transition-property: transform, color, background-color, border-color, box-shadow;
    transition-duration: 160ms;
    transition-timing-function: ease-out;
}

.explorer-page .tab-btn.active,
.explorer-page .view-pill-btn.active,
.search-page .pill-btn.active {
    background: var(--es-ink);
    border-color: var(--es-ink);
}

.explorer-page .product-category-chip.active {
    background: var(--es-orange);
    border-color: var(--es-orange);
}

/* Cartes : profondeur par ombres, image dominante, actions tactiles. */
.explorer-page .product-card,
.explorer-page .pro-card,
.search-page .product-card {
    border: 0;
    box-shadow: var(--es-shadow-card);
    background: var(--es-surface);
    transition-property: transform, box-shadow;
    transition-duration: 190ms;
    transition-timing-function: ease-out;
}

@media (hover: hover) and (pointer: fine) {
    .explorer-page .product-card:hover,
    .explorer-page .pro-card:hover,
    .search-page .product-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--es-shadow-card-hover);
    }
}

.explorer-page .card-img,
.search-page .card-img {
    transition-property: transform;
    transition-duration: 360ms;
    transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.explorer-page .product-price,
.search-page .product-price {
    color: var(--es-orange-deep);
}

.explorer-page .btn-view-sheet,
.explorer-page .btn-visit-catalog,
.explorer-page .btn-order-wa,
.search-page .btn-view-sheet,
.search-page .btn-order-wa,
.search-page .btn-load-more {
    min-height: 42px;
    transition-property: transform, color, background-color, box-shadow;
    transition-duration: 160ms;
    transition-timing-function: ease-out;
}

/* Skeletons stables, sans saut de mise en page. */
.es-skeleton-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    width: 100%;
}

.es-skeleton-card {
    min-height: 340px;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--es-shadow-card);
}

.es-skeleton-card::before {
    content: "";
    display: block;
    height: 210px;
    background: linear-gradient(100deg, #f4eee9 25%, #fffaf6 42%, #f4eee9 58%);
    background-size: 220% 100%;
    animation: es-shimmer 1.2s linear infinite;
}

.es-skeleton-card::after {
    content: "";
    display: block;
    height: 82px;
    margin: 18px 16px;
    border-radius: 10px;
    background:
        linear-gradient(#eee6e0 0 0) 0 0 / 74% 13px no-repeat,
        linear-gradient(#f5efeb 0 0) 0 26px / 94% 10px no-repeat,
        linear-gradient(#ffe1d5 0 0) 0 53px / 42% 16px no-repeat;
}

@keyframes es-shimmer {
    to { background-position-x: -220%; }
}

/* Panneau mobile de filtres */
.es-mobile-filter-trigger {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: var(--es-ink);
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(23, 18, 15, 0.16);
    cursor: pointer;
    transition-property: transform, background-color;
    transition-duration: 150ms;
    transition-timing-function: ease-out;
}

.es-filter-count {
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--es-ink);
    background: var(--es-gold);
    font-size: 11px;
    font-variant-numeric: tabular-nums;
}

.es-filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(23, 18, 15, 0.46);
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: 190ms;
    transition-timing-function: ease-out;
}

.es-filter-sheet {
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: min(78svh, 680px);
    padding: 10px 18px calc(22px + env(safe-area-inset-bottom));
    overflow: auto;
    border-radius: 28px 28px 0 0;
    background: #fffdfb;
    box-shadow: 0 -22px 60px rgba(23, 18, 15, 0.2);
    transform: translateY(calc(100% + 24px));
    visibility: hidden;
    transition-property: transform, visibility;
    transition-duration: 220ms;
    transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.es-filter-sheet__handle {
    width: 38px;
    height: 4px;
    margin: 0 auto 14px;
    border-radius: 99px;
    background: #d8cec7;
}

.es-filter-sheet__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.es-filter-sheet__title {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 850;
    color: var(--es-ink);
}

.es-filter-sheet__close {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: #f3ece7;
    color: var(--es-ink);
    cursor: pointer;
    transition-property: transform, background-color;
    transition-duration: 150ms;
}

.es-filter-sheet__content {
    display: grid;
    gap: 14px;
}

.es-filter-sheet__content select {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid rgba(67, 45, 33, 0.14);
    border-radius: 14px;
    background: #fff;
    color: var(--es-ink);
    font: inherit;
}

.es-filter-sheet__apply {
    width: 100%;
    min-height: 50px;
    margin-top: 18px;
    border: 0;
    border-radius: 15px;
    background: var(--es-orange);
    color: #fff;
    font: inherit;
    font-weight: 850;
    box-shadow: 0 10px 24px rgba(244, 81, 30, 0.24);
    cursor: pointer;
    transition-property: transform, background-color, box-shadow;
    transition-duration: 150ms;
    transition-timing-function: ease-out;
}

.es-filter-sheet__apply:hover {
    background: var(--es-orange-deep);
}

.es-filter-sheet__apply {
    width: 100%;
    min-height: 50px;
    margin-top: 18px;
    border: 0;
    border-radius: 15px;
    background: var(--es-orange);
    color: #fff;
    font: inherit;
    font-weight: 850;
    box-shadow: 0 10px 24px rgba(244, 81, 30, 0.24);
    cursor: pointer;
    transition-property: transform, background-color, box-shadow;
    transition-duration: 150ms;
    transition-timing-function: ease-out;
}

.es-filter-sheet__apply:hover {
    background: var(--es-orange-deep);
}

body.es-filter-open {
    overflow: hidden;
}

body.es-filter-open .es-filter-backdrop {
    opacity: 1;
    visibility: visible;
}

body.es-filter-open .es-filter-sheet {
    transform: translateY(0);
    visibility: visible;
}

/* Navigation au pouce */
.es-bottom-nav {
    display: none;
}

@media (max-width: 860px) {
    body.explorer-page,
    body.search-page {
        padding-bottom: calc(var(--es-bottom-nav-height) + env(safe-area-inset-bottom));
    }

    .explorer-page .site-header,
    .search-page .search-header {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .explorer-page .header-container {
        min-height: 58px;
        padding: 9px 14px;
    }

    .explorer-page .brand-logo-wrap {
        gap: 9px;
        min-width: 0;
    }

    .explorer-page .brand-title span.explorer {
        font-size: 14px;
    }

    .explorer-page .btn-header-cta {
        min-height: 40px;
        padding: 0 13px;
    }

    /* Hero compact en carte photographique. */
    .explorer-page .hero-section {
        display: grid;
        grid-template-columns: 1fr;
        min-height: 242px;
        margin: 12px 12px 14px;
        padding: 24px 20px 22px;
        overflow: hidden;
        border-radius: 26px;
        background: #211713;
        box-shadow: 0 16px 36px rgba(62, 31, 16, 0.15);
        isolation: isolate;
    }

    .explorer-page .hero-section::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background:
            linear-gradient(90deg, rgba(20, 13, 10, 0.93) 0%, rgba(20, 13, 10, 0.68) 58%, rgba(20, 13, 10, 0.26) 100%),
            linear-gradient(0deg, rgba(20, 13, 10, 0.54), transparent 55%);
    }

    .explorer-page .hero-content {
        z-index: 2;
        align-self: end;
        max-width: 92%;
    }

    .explorer-page .hero-visual,
    .explorer-page .hero-card-preview {
        position: absolute;
        inset: 0;
        z-index: -2;
        width: 100%;
        height: 100%;
        max-width: none;
        margin: 0;
        border-radius: inherit;
        transform: none;
        box-shadow: none !important;
        outline: none;
    }

    .explorer-page .hero-card-preview > div {
        display: none !important;
    }

    .explorer-page .hero-card-preview .preview-img {
        width: 100%;
        height: 100% !important;
        margin: 0;
        border-radius: inherit !important;
        filter: saturate(0.9) contrast(1.03) brightness(0.92) !important;
    }

    .explorer-page .hero-tag {
        margin-bottom: 12px;
        background: rgba(255, 239, 186, 0.94);
    }

    .explorer-page .hero-title,
    .explorer-page .hero-title em {
        color: #fff;
    }

    .explorer-page .hero-title {
        max-width: 330px;
        margin-bottom: 9px;
        font-size: clamp(27px, 8.2vw, 36px);
        line-height: 1.02;
        letter-spacing: -0.035em;
        text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
    }

    .explorer-page .hero-title em {
        font-family: inherit;
        font-style: normal;
        font-weight: inherit;
    }

    .explorer-page .hero-subtitle {
        display: -webkit-box;
        max-width: 310px;
        margin: 0;
        overflow: hidden;
        color: rgba(255, 255, 255, 0.86);
        font-size: 13px;
        line-height: 1.45;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .explorer-page .hero-stats-row {
        display: none;
    }

    /* Recherche collante sous le header. */
    .explorer-page .controls-section {
        position: sticky;
        top: 58px;
        z-index: 80;
        margin: 0 auto 16px;
        padding: 0 12px 8px;
        background: linear-gradient(180deg, rgba(255, 250, 246, 0.98) 70%, rgba(255, 250, 246, 0));
    }

    .explorer-page .search-filters-bar {
        padding: 8px;
        border-radius: 20px;
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 10px 26px rgba(69, 36, 18, 0.1);
    }

    .explorer-page .search-input {
        min-height: 50px;
        border-radius: 14px;
        background: #fff;
    }

    .explorer-page .country-select-wrap,
    .explorer-page .city-select-wrap,
    .explorer-page .category-tabs,
    .explorer-page .product-category-panel {
        margin: 0;
    }

    .explorer-page .category-tabs,
    .explorer-page .product-category-rail {
        margin-inline: -2px;
        padding: 2px 2px 8px;
    }

    .explorer-page .pros-grid-section {
        padding-inline: 12px;
        padding-bottom: 34px;
    }

    .explorer-page .results-header-info {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        margin-bottom: 14px;
        width: 100%;
    }

    .explorer-page .results-count {
        min-width: 0;
        color: var(--es-muted);
    }

    .explorer-page .view-mode-tabs {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding: 4px;
        border: 0;
        border-radius: 16px;
        background: #eee7e2;
    }

    .explorer-page .view-pill-btn {
        min-width: 0;
        min-height: 42px;
        border-radius: 12px;
    }

    .explorer-page .view-pill-btn.active {
        color: #fff;
    }

    .explorer-page .results-header-info > .es-mobile-filter-trigger {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    .explorer-page .view-pill-label {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .explorer-page .products-grid,
    .search-page .products-grid,
    .es-skeleton-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .explorer-page .product-card,
    .search-page .product-card {
        border-radius: 17px;
    }

    .explorer-page .card-img-box,
    .search-page .card-img-box {
        padding-top: 104%;
    }

    .explorer-page .card-content,
    .search-page .card-content {
        padding: 11px;
    }

    .explorer-page .product-title,
    .search-page .product-title {
        min-height: 36px;
        font-size: 13.5px;
        line-height: 1.3;
    }

    .explorer-page .product-desc,
    .search-page .product-desc {
        display: none;
    }

    .explorer-page .product-price,
    .search-page .product-price {
        margin: 6px 0 8px;
        font-size: 15px;
    }

    .explorer-page .seller-info-row,
    .search-page .seller-info-row {
        margin-bottom: 9px;
        padding-top: 8px;
    }

    .explorer-page .seller-city,
    .search-page .seller-city {
        display: none;
    }

    .explorer-page .card-actions,
    .search-page .card-actions {
        grid-template-columns: 1fr 42px;
    }

    .explorer-page .btn-view-sheet,
    .search-page .btn-view-sheet {
        padding: 8px 6px;
        font-size: 11px;
    }

    .explorer-page .pros-grid {
        gap: 14px;
    }

    .explorer-page .pro-card {
        border-radius: 22px;
    }

    .explorer-page .card-img-wrap {
        height: 190px;
    }

    .explorer-page .card-body {
        padding: 17px;
    }

    .explorer-page .storytelling-section {
        margin: 0 12px 18px;
        padding: 34px 18px;
        border-radius: 24px;
    }

    .explorer-page .site-footer,
    .search-page .site-footer {
        padding-bottom: calc(30px + var(--es-bottom-nav-height));
    }

    .es-mobile-filter-trigger {
        display: inline-flex;
    }

    /* Search : les résultats deviennent le centre de l'écran. */
    .search-page .search-header {
        padding: 8px 10px;
    }

    .search-page .header-inner {
        gap: 8px;
    }

    .search-page .btn-back-explorer {
        width: 42px;
        height: 42px;
        min-width: 42px;
        padding: 0;
        justify-content: center;
        border: 0;
        border-radius: 13px;
        background: #f5eee9;
    }

    .search-page .btn-back-explorer span {
        display: none;
    }

    .search-page .main-search-input {
        height: 50px;
        border-radius: 15px;
    }

    .search-page .filters-subbar {
        position: sticky;
        top: 66px;
        z-index: 70;
        padding: 8px 10px;
        border: 0;
        background: rgba(255, 250, 246, 0.96);
    }

    .search-page .filters-inner {
        overflow: visible;
    }

    .search-page .type-pills {
        max-width: calc(100vw - 82px);
        overflow-x: auto;
        padding: 2px;
        scrollbar-width: none;
    }

    .search-page .geo-selects {
        display: grid;
        gap: 12px;
    }

    .search-page .search-main {
        padding: 18px 12px 42px;
    }

    .search-page .results-summary-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        margin-bottom: 15px;
    }

    .search-page .results-count-title {
        min-width: 0;
        font-size: 18px;
        line-height: 1.2;
    }

    .search-page .results-summary-row > #resultsCountLabel {
        grid-column: 1;
    }

    .search-page .results-summary-row > .es-mobile-filter-trigger {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .es-bottom-nav {
        position: fixed;
        z-index: 900;
        left: 10px;
        right: 10px;
        bottom: calc(8px + env(safe-area-inset-bottom));
        height: var(--es-bottom-nav-height);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        padding: 7px 8px;
        border-radius: 22px;
        background: rgba(27, 21, 18, 0.96);
        box-shadow: 0 18px 45px rgba(27, 21, 18, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    .es-bottom-nav__item {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        min-width: 0;
        border-radius: 15px;
        color: rgba(255, 255, 255, 0.64);
        text-decoration: none;
        font-size: 10px;
        font-weight: 700;
        transition-property: transform, color, background-color;
        transition-duration: 150ms;
        transition-timing-function: ease-out;
    }

    .es-bottom-nav__item svg {
        width: 21px;
        height: 21px;
    }

    .es-bottom-nav__item[aria-current="page"] {
        color: #fff;
        background: rgba(255, 255, 255, 0.11);
    }

    .es-bottom-nav__item--sell {
        color: #26150e;
        background: var(--es-gold);
    }
}

@media (max-width: 600px) {
    .explorer-page .btn-header-cta {
        width: 42px;
        min-width: 42px;
        padding: 0;
        justify-content: center;
    }

    .explorer-page .btn-header-cta span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }
}

@media (max-width: 350px) {
    .explorer-page .products-grid,
    .search-page .products-grid,
    .es-skeleton-grid {
        grid-template-columns: 1fr;
    }

    .explorer-page .brand-title span.explorer,
    .explorer-page .btn-header-cta svg {
        display: none;
    }

    .explorer-page .hero-section {
        min-height: 224px;
    }
}

@media (min-width: 861px) {
    .explorer-page .product-card,
    .explorer-page .pro-card,
    .search-page .product-card {
        content-visibility: auto;
        contain-intrinsic-size: 360px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
