.mfo-offcanvas{position:fixed;inset:0;z-index:999999999999999999999;display:none;opacity:0;transition:opacity .36s ease;overflow:hidden}
.mfo-offcanvas .mfo-overlay{position:absolute;inset:0;background:rgba(15,23,42,0.52);opacity:0;backdrop-filter:blur(6px)}
.mfo-offcanvas .mfo-panel{position:fixed;left:0;top:0;bottom:0;width:min(380px,88vw);max-width:88vw;height:100vh;height:100dvh;background:linear-gradient(180deg,#fffdf8 0%,#ffffff 100%);box-shadow:18px 0 48px rgba(15,23,42,.18);transform:translateX(-110%);overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch;overscroll-behavior:contain;padding:4.5rem 1rem 1.5rem;z-index:999999999999999999999;border-right:1px solid rgba(148,163,184,.24);touch-action:pan-y}
.mfo-offcanvas .mfo-panel::before,
.mfo-offcanvas .mfo-panel::after{content:'';position:absolute;opacity:0;pointer-events:none;transition:opacity .18s ease;z-index:4}
.mfo-offcanvas .mfo-panel::before{inset:0;background:rgba(255,253,248,.78);backdrop-filter:blur(2px)}
.mfo-offcanvas .mfo-panel::after{top:26px;right:22px;width:22px;height:22px;border-radius:999px;border:2px solid rgba(16,34,79,.18);border-top-color:#10224f;animation:mfo-loader-spin .7s linear infinite}
.mfo-offcanvas.mfo-open{display:block;opacity:1}
.mfo-offcanvas.mfo-filter-loading .mfo-panel::before,
.mfo-offcanvas.mfo-filter-loading .mfo-panel::after{opacity:1;pointer-events:auto}
.mfo-offcanvas.mfo-open .mfo-overlay{opacity:1}

/* Keep panel translated to 0 while open (so it doesn't jump back after animationend).
  Only apply when NOT animating (so animations can run when mfo-opening/mfo-closing present). */
.mfo-offcanvas.mfo-open:not(.mfo-opening):not(.mfo-closing) .mfo-panel{transform:translateX(0) !important}

@keyframes mfo-slide-in {
  0% { transform: translateX(-110%); }
  60% { transform: translateX(8%); }
  100% { transform: translateX(0); }
}
@keyframes mfo-slide-out {
  0% { transform: translateX(0); }
  100% { transform: translateX(-110%); }
}
@keyframes mfo-fade-in { 0% { opacity: 0 } 100% { opacity: 1 } }
@keyframes mfo-fade-out { 0% { opacity: 1 } 100% { opacity: 0 } }
@keyframes mfo-loader-spin { 0% { transform: rotate(0deg) } 100% { transform: rotate(360deg) } }

.mfo-offcanvas.mfo-open.mfo-opening .mfo-panel{animation: mfo-slide-in .44s cubic-bezier(.2,.8,.2,1) both}
.mfo-offcanvas.mfo-closing .mfo-panel{animation: mfo-slide-out .28s cubic-bezier(.4,0,.2,1) both}
.mfo-offcanvas.mfo-open.mfo-opening .mfo-overlay{animation: mfo-fade-in .36s ease both}
.mfo-offcanvas.mfo-closing .mfo-overlay{animation: mfo-fade-out .28s ease both}
.mfo-close{position:absolute;right:14px;top:14px;width:42px;height:42px;display:inline-flex;align-items:center;justify-content:center;background:rgba(255,255,255,.9);border:1px solid rgba(148,163,184,.28);border-radius:999px;font-size:24px;line-height:1;color:#0f172a;box-shadow:0 10px 24px rgba(15,23,42,.1);backdrop-filter:blur(8px)}
.mfo-open-btn{display:inline-block;margin-left:8px;padding:.38rem .6rem;background:#222;color:#fff;border:0;border-radius:4px;font-size:14px}
.mfo-no-scroll{overflow:hidden}

#wpfOverlay{
  z-index: 999999999999999999999 !important;
}

/* Desktop fixed open button shown when sidebar collapsed */
.mfo-desktop-open-btn{
  display:none;
  position:fixed;
  left:18px;
  top:110px; /* lowered for better ergonomics */
  padding:10px 14px;
  border-radius:999px;
  background:linear-gradient(135deg,#ff7a18,#ff4e50);
  color:#fff;
  border:0;
  z-index:130000;
  box-shadow:0 6px 20px rgba(0,0,0,.20);
  opacity:0;
  transform:translateY(6px);
  transition:opacity .18s ease,transform .18s cubic-bezier(.2,.8,.2,1),box-shadow .12s ease;
  font-weight:600;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:8px;
}
.mfo-desktop-open-btn::before{
  content:'';
  display:inline-block;
  width:16px;
  height:16px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23fff' d='M3 5h18l-7 8v6l-4-2v-4L3 5z'/></svg>");
  background-size:contain;
  background-repeat:no-repeat;
  transform:translateY(1px);
}
.mfo-desktop-open-btn.mfo-desktop-visible{opacity:1;transform:translateY(0);box-shadow:0 10px 26px rgba(0,0,0,.28)}
.mfo-desktop-open-btn:hover{transform:translateY(-2px) scale(1.02);box-shadow:0 12px 30px rgba(0,0,0,.32)}
.mfo-desktop-open-btn:focus{outline:none;box-shadow:0 0 0 6px rgba(255,122,24,0.12)}

@media (max-width:1200px){
  body{padding-bottom:0}

  #nav-tabContent,
  #nav-tabContent > .tab-pane,
  #tab-grid,
  #tab-list{
    overflow:visible !important;
  }

  .mfo-mobile-toolbar{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:8px;
    margin:0 0 12px;
    pointer-events:auto;
  }

  .mfo-open-btn{
    position:relative;
    top:auto;
    right:auto;
    left:auto;
    bottom:auto;
    margin:0;
    width:auto;
    max-width:100%;
    min-height:42px;
    padding:10px 14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border-radius:999px;
    border:1px solid rgba(29,63,143,.18);
    background:
      radial-gradient(circle at top left, rgba(255,255,255,.16), transparent 38%),
      linear-gradient(135deg,#17326c 0%,#10224f 54%,#1d3f8f 100%);
    color:#fff;
    box-shadow:0 16px 28px rgba(16,34,79,.24), inset 0 1px 0 rgba(255,255,255,.16);
    font-size:12px;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
    white-space:nowrap;
    flex:0 0 auto;
    align-self:flex-end;
    z-index:auto;
    pointer-events:auto;
    backdrop-filter:blur(10px) saturate(1.06);
    -webkit-backdrop-filter:blur(10px) saturate(1.06);
  }

  .mfo-open-btn::before{
    content:'';
    width:13px;
    height:13px;
    display:block;
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23ffffff' d='M3 5h18l-7 8v6l-4-2v-4L3 5z'/></svg>");
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
  }

  .mfo-open-btn:hover,
  .mfo-open-btn:focus{
    transform:translateY(-1px);
    box-shadow:0 18px 32px rgba(16,34,79,.28), inset 0 1px 0 rgba(255,255,255,.18);
  }

  .mfo-mobile-float-btn{
    position:fixed;
    left:14px;
    bottom:100px;
    display:none;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:42px;
    padding:10px 14px;
    border:1px solid rgba(29,63,143,.18);
    border-radius:999px;
    background:
      radial-gradient(circle at top left, rgba(255,255,255,.16), transparent 38%),
      linear-gradient(135deg,#17326c 0%,#10224f 54%,#1d3f8f 100%);
    color:#fff;
    box-shadow:0 18px 34px rgba(16,34,79,.28), inset 0 1px 0 rgba(255,255,255,.16);
    font-size:12px;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
    z-index:130005;
    opacity:0;
    transform:translateY(10px);
    transition:opacity .18s ease, transform .18s ease, box-shadow .18s ease;
  }

  .mfo-mobile-float-btn::before{
    content:'';
    width:13px;
    height:13px;
    display:block;
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23ffffff' d='M3 5h18l-7 8v6l-4-2v-4L3 5z'/></svg>");
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
  }

  .mfo-mobile-float-btn--visible{
    opacity:1;
    transform:translateY(0);
  }

  .mfo-mobile-float-btn__count{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:20px;
    height:20px;
    padding:0 6px;
    border-radius:999px;
    background:rgba(255,255,255,.14);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.16);
    font-size:11px;
    line-height:1;
  }

  .mfo-desktop-open-btn{display:none !important}

  .mfo-mobile-toolbar .mfo-badges{
    justify-content:flex-end;
    max-width:calc(100vw - 28px);
    margin-top:0;
    pointer-events:auto;
  }

  .mfo-panel .mfo-sidebar-heading,
  .mfo-panel .sidebar-area.shop-sidebar .mfo-sidebar-heading{
    margin:0 0 14px;
    border:1px solid rgba(255,255,255,.58);
    border-radius:20px;
    background:
      linear-gradient(180deg,rgba(255,255,255,.82) 0%,rgba(255,245,235,.88) 100%),
      radial-gradient(circle at top right,rgba(255,255,255,.72),transparent 34%),
      linear-gradient(120deg,rgba(245,130,32,.10) 0%,rgba(16,34,79,.04) 100%);
    box-shadow:0 14px 28px rgba(15,23,42,.08), inset 0 1px 0 rgba(255,255,255,.84);
    backdrop-filter:blur(14px) saturate(1.08);
    -webkit-backdrop-filter:blur(14px) saturate(1.08);
    overflow:hidden;
  }

  .mfo-panel .mfo-sidebar-heading__inner,
  .mfo-panel .sidebar-area.shop-sidebar .mfo-sidebar-heading__inner{
    display:flex;
    align-items:center;
    gap:12px;
    min-height:64px;
    padding:14px 16px;
  }

  .mfo-panel .mfo-sidebar-heading__accent,
  .mfo-panel .sidebar-area.shop-sidebar .mfo-sidebar-heading__accent{
    width:10px;
    height:10px;
    flex:0 0 10px;
    border-radius:999px;
    background:linear-gradient(135deg,#ffb36b 0%,#f58220 58%,#df6d12 100%);
    box-shadow:0 0 0 7px rgba(245,130,32,.10), 0 8px 18px rgba(245,130,32,.18);
  }

  .mfo-panel .mfo-sidebar-heading__title,
  .mfo-panel .sidebar-area.shop-sidebar .mfo-sidebar-heading__title{
    margin:0;
    color:#10224f;
    font-size:1rem;
    font-weight:800;
    line-height:1.15;
    letter-spacing:-.02em;
  }
}

/* Ensure desktop button is available on larger viewports by default (JS will still toggle visibility) */
@media (min-width:1201px){
  .mfo-desktop-open-btn{display:block !important}
}

/* hide original sidebar when cloned into offcanvas */
.mfo-hidden-original{display:none !important}

/* Ensure cloned sidebar inside panel is visible despite theme mobile rules */
.mfo-panel .sidebar-area,
.mfo-panel .shop-sidebar,
.mfo-panel .sidebar-area * {
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  backface-visibility: hidden !important;
  will-change: auto !important;
}



/* Slight padding to panel content to avoid layout issues */
.mfo-panel .sidebar-area {padding: 0 0 1rem 0; position:relative; z-index:1000000000}

/* Reset Itala custom container-scrollbar chrome inside the mobile offcanvas panel. */
.mfo-panel .sidebar-area.itsp-scrollable,
.mfo-panel .shop-sidebar.itsp-scrollable{
  padding-right:0 !important;
  padding-left:0 !important;
  padding-bottom:1rem !important;
  isolation:auto !important;
}

.mfo-panel .sidebar-area .itsp-container-progress,
.mfo-panel .shop-sidebar .itsp-container-progress{
  display:none !important;
}

/* Prevent horizontal bleed from breaking vertical scrolling on mobile browsers */
.mfo-panel > *{max-width:100%}

/* Defensive: override any theme rule that applies translate to typical sidebar selectors inside panel */
.mfo-panel .widget,
.mfo-panel .woocommerce-widget-price-filter,
.mfo-panel .widget_layered_nav,
.mfo-panel .woocommerce-widget-layered-nav {
  transform: none !important;
  -webkit-transform: none !important;
}

/* Badges under filter button */
.mfo-badges{display:flex;flex-wrap:wrap;gap:6px;margin-top:6px}
.mfo-badge{background:#f1f1f1;color:#333;padding:6px 8px;border-radius:14px;font-size:12px;display:inline-flex;align-items:center;gap:6px}
.mfo-badge .mfo-badge-remove{background:transparent;border:0;color:#666;cursor:pointer;font-weight:700}
.mfo-badge .mfo-badge-remove:focus{outline:2px solid #ddd}

/* Shop archive: let the product wrapper span the full viewport width */
.th-product-wrapper > .container{
  width:100%;
  max-width:none !important;
  padding-left:clamp(16px,2vw,32px);
  padding-right:clamp(16px,2vw,32px);
}

.th-sort-bar{
  margin:0 0 24px;
  padding:14px 16px;
  background:linear-gradient(180deg,rgba(255,255,255,.98) 0%,rgba(248,250,252,.96) 100%);
  border:1px solid rgba(148,163,184,.18);
  border-radius:24px;
  box-shadow:0 18px 38px rgba(15,23,42,.06);
}

.th-sort-bar .row{
  align-items:center;
  row-gap:12px;
}

.th-sort-bar .woocommerce-result-count{
  margin:0;
  color:#475569;
  font-weight:600;
}

.th-sort-bar select,
.th-sort-bar .orderby{
  min-height:50px;
  padding:0 46px 0 16px;
  border:1px solid rgba(203,213,225,.95);
  border-radius:16px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
  box-shadow:inset 0 1px 2px rgba(15,23,42,.03),0 8px 18px rgba(15,23,42,.04);
  color:#0f172a;
  font-weight:600;
}

.th-sort-bar .nav a{
  border-radius:14px;
  border:1px solid rgba(226,232,240,.95);
  background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
  box-shadow:0 8px 18px rgba(15,23,42,.04);
}

.th-sort-bar .nav a.active,
.th-sort-bar .nav a:hover{
  border-color:rgba(245,130,32,.28);
  box-shadow:0 12px 24px rgba(245,130,32,.12);
}

.col-xl-4{
  transition: all .36s;
}

.mfo-sidebar-hidden .col-xl-4{
  width: 25%!important;
}

/* Small responsive tweak so badges don't push layout too much */
@media (max-width:480px){
  .mfo-badges{gap:4px}
  .mfo-badge{padding:5px 7px;font-size:11px}
}

/* Force collapse/remove sidebar column for viewports up to 1200px
   This overrides theme grid widths (col-lg / col-xl) so the shop
   content takes full width and the sidebar is only available via offcanvas. */
@media (max-width:1200px){
  .th-product-wrapper > .container > .row > .col-xl-3,
  .th-product-wrapper > .container > .row > .col-lg-4 {
    width: 0 !important;
    max-width: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: hidden !important;
    display: none !important;
  }

  .th-product-wrapper > .container > .row > .col-xl-9,
  .th-product-wrapper > .container > .row > .col-lg-8,
  .th-product-wrapper > .container > .row > .col-lg-12,
  .th-product-wrapper > .container > .row > .col-lg-9 {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* also hide any direct sidebar wrapper selectors just in case */
}

@media(min-width:1201px){
  .mfo-offcanvas{display:none !important}
  .mfo-open-btn{display:none !important}
}

/* Desktop-only: width animation for sidebar + product column.
   IMPORTANT: keep this out of mobile/tablet stacking layouts (it breaks the shop grid/list). */
@media (min-width: 1201px) {
  /* When sidebar is out of view on desktop, expand products to full width.
     Use direct-child selectors to avoid matching product grid item columns. */
  /* Product column when sidebar is visible: allow width animation via CSS variable.
     Default fallback for the variable is 280px if not provided. */
  .th-product-wrapper > .container > .row > .col-xl-3,
  .th-product-wrapper > .container > .row > .col-lg-4 {
    width: var(--mfo-sidebar-width, 280px) !important;
    max-width: var(--mfo-sidebar-width, 280px) !important;
    transition: width .36s ease-in-out, max-width .36s ease-in-out, padding .36s ease-in-out, margin .36s ease-in-out, opacity .24s ease-in-out;
  }

  /* Product column (grid) should explicitly animate between full width and reduced width.
     Set explicit widths so toggling `.mfo-sidebar-hidden` animates the change both ways. */
  .th-product-wrapper > .container > .row > .col-xl-9,
  .th-product-wrapper > .container > .row > .col-lg-8,
  .th-product-wrapper > .container > .row > .col-lg-12,
  .th-product-wrapper > .container > .row > .col-lg-9 {
    width: calc(100% - var(--mfo-sidebar-width, 280px)) !important;
    max-width: calc(100% - var(--mfo-sidebar-width, 280px)) !important;
    transition: width .36s ease-in-out, max-width .36s ease-in-out;
  }

  .th-product-wrapper.mfo-sidebar-hidden > .container > .row > .col-xl-9,
  .th-product-wrapper.mfo-sidebar-hidden > .container > .row > .col-lg-8,
  .th-product-wrapper.mfo-sidebar-hidden > .container > .row > .col-lg-12,
  .th-product-wrapper.mfo-sidebar-hidden > .container > .row > .col-lg-9 {
    max-width: 100% !important;
    width: 100% !important;
    transition: width .36s ease-in-out, max-width .36s ease-in-out;
  }
  /* collapse the sidebar column smoothly to zero width (instead of display:none) */
  .th-product-wrapper.mfo-sidebar-hidden > .container > .row > .col-xl-3,
  .th-product-wrapper.mfo-sidebar-hidden > .container > .row > .col-lg-4 {
    width: 0 !important;
    max-width: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: hidden !important;
    transition: width .36s ease-in-out, max-width .36s ease-in-out, padding .36s ease-in-out, margin .36s ease-in-out, opacity .24s ease-in-out;
    opacity: 0;
  }
  /* also collapse the aside/sidebar contents defensively */
  .th-product-wrapper.mfo-sidebar-hidden .shop-sidebar,
  .th-product-wrapper.mfo-sidebar-hidden .sidebar-area {
    width: 0 !important;
    max-width: 0 !important;
    overflow: hidden !important;
    opacity: 0;
    transition: opacity .24s ease-in-out, width .36s ease-in-out;
  }
  /* Ensure the grid area expands to full width with a smooth transition */
  .th-product-wrapper.mfo-sidebar-hidden .shop-grid-area {
    width: 100% !important;
    transition: width .36s ease-in-out;
  }
}

/* Desktop: increase sidebar width for larger screens */
@media (min-width: 1101px) {
  .th-product-wrapper > .container > .row > .col-xl-3,
  .th-product-wrapper > .container > .row > .col-lg-4 {
    width: 350px !important;
    max-width: 350px !important;
  }
  .th-product-wrapper > .container > .row > .col-xl-9,
  .th-product-wrapper > .container > .row > .col-lg-8,
  .th-product-wrapper > .container > .row > .col-lg-12,
  .th-product-wrapper > .container > .row > .col-lg-9 {
    width: calc(100% - 350px) !important;
    max-width: calc(100% - 350px) !important;
  }
}

/* Desktop: increase sidebar width for larger screens */
@media (min-width: 1301px) {
  .th-product-wrapper > .container > .row > .col-xl-3,
  .th-product-wrapper > .container > .row > .col-lg-4 {
    width: 450px !important;
    max-width: 450px !important;
  }
  .th-product-wrapper > .container > .row > .col-xl-9,
  .th-product-wrapper > .container > .row > .col-lg-8,
  .th-product-wrapper > .container > .row > .col-lg-12,
  .th-product-wrapper > .container > .row > .col-lg-9 {
    width: calc(100% - 450px) !important;
    max-width: calc(100% - 450px) !important;
  }
}

@media (min-width:1201px){
  .th-product-wrapper > .container > .row{
    align-items:flex-start;
  }

  .th-product-wrapper > .container > .row > .col-xl-3,
  .th-product-wrapper > .container > .row > .col-lg-4{
    position:sticky;
    top:20px;
    align-self:flex-start;
    padding-right:28px;
  }

  .th-product-wrapper > .container > .row > .col-xl-3 .sidebar-area.shop-sidebar,
  .th-product-wrapper > .container > .row > .col-lg-4 .sidebar-area.shop-sidebar{
    position:sticky;
    top:20px;
    overflow-x:hidden;
    overflow-y:auto;
    max-height:calc(100vh - 40px);
  }

  body.itsp-enabled.itsp-side-left .th-product-wrapper > .container > .row > .col-xl-3 .sidebar-area.shop-sidebar.itsp-scrollable.itsp-scrollable--vertical,
  body.itsp-enabled.itsp-side-left .th-product-wrapper > .container > .row > .col-lg-4 .sidebar-area.shop-sidebar.itsp-scrollable.itsp-scrollable--vertical{
    padding-left:calc(14px + var(--itsp-container-reserve, 18px));
  }

  body.itsp-enabled.itsp-side-right .th-product-wrapper > .container > .row > .col-xl-3 .sidebar-area.shop-sidebar.itsp-scrollable.itsp-scrollable--vertical,
  body.itsp-enabled.itsp-side-right .th-product-wrapper > .container > .row > .col-lg-4 .sidebar-area.shop-sidebar.itsp-scrollable.itsp-scrollable--vertical{
    padding-right:calc(14px + var(--itsp-container-reserve, 18px));
  }
}

@media (max-width:767px){
  .th-sort-bar{
    padding:12px;
    border-radius:20px;
  }
}

/* Minimal, cleaner treatment for the WooBeWoo filters in the shop sidebar. */
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget,
.mfo-panel .widget.WpfWoofiltersWidget{
  margin:0;
  padding:20px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:24px;
  background:linear-gradient(180deg,#ffffff 0%,#fbfcfe 100%);
  box-shadow:0 18px 36px rgba(15,23,42,.05);
  font-family:var(--body-font);
  color:var(--body-color);
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterWrapper,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterWrapper{
  margin:0;
  padding:18px 0;
  border-top:1px solid rgba(15,23,42,.08);
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterWrapper:first-child,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterWrapper:first-child{
  padding-top:0;
  border-top:none;
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterTitle,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterTitle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:0;
  font-family:var(--title-font);
  font-size:12px;
  font-weight:700;
  line-height:1.2;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#0f172a;
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterTitle i,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterTitle svg,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterTitle i,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterTitle svg{
  flex:0 0 auto;
  color:#64748b;
  opacity:.9;
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent{
  margin-top:14px;
  font-family:var(--body-font);
  font-size:14px;
  line-height:1.55;
  color:var(--body-color);
  display:block !important;
  max-height:var(--mfo-filter-content-height,1200px);
  opacity:1;
  transform:translateY(0);
  transform-origin:top;
  transition:max-height .34s cubic-bezier(.2,.8,.2,1), opacity .24s ease, transform .24s ease, margin-top .24s ease;
  will-change:max-height, opacity, transform;
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterWrapper.mfo-filter-collapsed .wpfFilterContent,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterWrapper.mfo-filter-collapsed .wpfFilterContent{
  max-height:0;
  margin-top:0;
  opacity:0;
  transform:translateY(-8px);
  pointer-events:none;
  overflow:hidden;
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterWrapper.mfo-filter-expanded .wpfFilterContent,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterWrapper.mfo-filter-expanded .wpfFilterContent{
  opacity:1;
  transform:translateY(0);
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent ul,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent ul{
  margin:0;
  padding:0;
  list-style:none;
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li{
  margin:0;
  padding:0;
  list-style:none;
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li + li,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li + li{
  margin-top:8px;
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li > label,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li > a,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li > label,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li > a{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:46px;
  padding:10px 12px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  background:#ffffff;
  transition:border-color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li > label:hover,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li > a:hover,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li > label:hover,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li > a:hover{
  border-color:rgba(16,34,79,.16);
  background:#f8fafc;
  box-shadow:0 10px 20px rgba(15,23,42,.04);
  transform:translateY(-1px);
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent input[type="checkbox"],
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent input[type="radio"],
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent input[type="checkbox"],
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent input[type="radio"]{
  width:16px;
  height:16px;
  margin:0;
  flex:0 0 16px;
  accent-color:#10224f;
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent label,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfValue,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfCount,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li > a,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent label,
.mfo-panel .widget.WpfWoofiltersWidget .wpfValue,
.mfo-panel .widget.WpfWoofiltersWidget .wpfCount,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li > a{
  font-family:var(--body-font);
  font-size:14px;
  line-height:1.45;
  color:var(--body-color);
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfValue,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li > a,
.mfo-panel .widget.WpfWoofiltersWidget .wpfValue,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li > a{
  flex:1 1 auto;
  min-width:0;
  color:#1e293b;
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfCount,
.mfo-panel .widget.WpfWoofiltersWidget .wpfCount{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:28px;
  height:28px;
  padding:0 8px;
  border-radius:999px;
  background:#f8fafc;
  color:#64748b;
  font-size:12px;
  font-weight:600;
  line-height:1;
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel{
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfValue,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfDisplay,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfValue,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfDisplay{
  flex:1 1 auto;
  min-width:0;
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfCount,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfCount{
  order:2;
  margin-left:0;
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfCollapsible,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li > label .wpfCollapsible,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfCollapsible,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li > label .wpfCollapsible{
  order:3;
  margin-left:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  padding:0;
  border-radius:999px;
  background:#f8fafc;
  color:#475569;
  flex:0 0 28px;
  transition:transform .28s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfCollapsible:hover,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li > label .wpfCollapsible:hover,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfCollapsible:hover,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li > label .wpfCollapsible:hover{
  background:#eef3f8;
  color:#10224f;
  box-shadow:0 6px 16px rgba(15,23,42,.08);
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfCollapsible i,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfCollapsible svg,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li > label .wpfCollapsible i,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li > label .wpfCollapsible svg,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfCollapsible i,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfCollapsible svg,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li > label .wpfCollapsible i,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li > label .wpfCollapsible svg{
  transition:transform .32s cubic-bezier(.2,.8,.2,1), opacity .2s ease;
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfCollapsible .fa-minus,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfCollapsible .fa-angle-up,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfCollapsible .fa-chevron-up,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li > label .wpfCollapsible .fa-minus,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li > label .wpfCollapsible .fa-angle-up,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li > label .wpfCollapsible .fa-chevron-up,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfCollapsible .fa-minus,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfCollapsible .fa-angle-up,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent .wpfLiLabel .wpfCollapsible .fa-chevron-up,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li > label .wpfCollapsible .fa-minus,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li > label .wpfCollapsible .fa-angle-up,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li > label .wpfCollapsible .fa-chevron-up{
  transform:rotate(180deg);
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent ul ul,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent ul.children,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent ul ul,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent ul.children{
  display:block !important;
  margin-top:8px;
  margin-left:14px;
  padding-left:12px;
  border-left:1px solid rgba(148,163,184,.26);
  overflow:hidden;
  max-height:900px;
  opacity:1;
  transform:translateY(0);
  transform-origin:top;
  transition:max-height .3s cubic-bezier(.2,.8,.2,1), opacity .22s ease, transform .22s ease, margin-top .22s ease;
  will-change:max-height, opacity, transform;
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent ul ul.wpfHidden,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent ul.children.wpfHidden,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent ul ul.wpfHidden,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent ul.children.wpfHidden{
  max-height:0;
  margin-top:0;
  opacity:0;
  transform:translateY(-6px);
  pointer-events:none;
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li.wpfActive > label,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li.active > label,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li.chosen > label,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li.wpfActive > a,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li.active > a,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li.chosen > a,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li.wpfActive > label,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li.active > label,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li.chosen > label,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li.wpfActive > a,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li.active > a,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li.chosen > a{
  border-color:rgba(16,34,79,.18);
  background:linear-gradient(180deg,#f8fbff 0%,#f3f7fb 100%);
  box-shadow:0 12px 24px rgba(16,34,79,.06);
}

.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li.wpfActive .wpfCount,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li.active .wpfCount,
.sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li.chosen .wpfCount,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li.wpfActive .wpfCount,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li.active .wpfCount,
.mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li.chosen .wpfCount{
  background:#e8eef6;
  color:#10224f;
}

@media (max-width:767px){
  .sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget,
  .mfo-panel .widget.WpfWoofiltersWidget{
    padding:16px;
    border-radius:20px;
  }

  .sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li > label,
  .sidebar-area.shop-sidebar .widget.WpfWoofiltersWidget .wpfFilterContent li > a,
  .mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li > label,
  .mfo-panel .widget.WpfWoofiltersWidget .wpfFilterContent li > a{
    min-height:44px;
    padding:9px 11px;
    border-radius:14px;
  }
}

