#ar-loader-wrapper {
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 200px;
  z-index: 160;
}


.products-loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite
}
.products-loader::before , .products-loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid var(--gray);
  animation: prixClipFix 2s linear infinite ;
}
.products-loader::after{
  inset: 8px;
  transform: rotate3d(90, 90, 0, 180deg );
  border-color: #FF3D00;
}

@keyframes rotate {
  0%   {transform: rotate(0deg)}
  100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    75%, 100%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
} 

/* 
.products-loader {
  display: block;
  font-size: 68px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: var(--black);
  position: absolute;
  z-index: 166;
}
.products-loader::before {
  content: '';  
  position: absolute;
  left: 40px;
  bottom: 8px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 5px solid #000;
  border-bottom-color: #FF3D00;
  box-sizing: border-box;
  animation: rotation 0.6s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}  */

.ul-products .woocommerce-info {
  width: 100% !important;
}


#page-title {
  z-index: 1;
  height: 260px;
  position: relative;
}
#page-title::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  position: absolute;
  top: 0;left: 0;
}
#page-title img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;left: 0;
  z-index: -1;
  object-fit: cover;
}

#page-title-content {
  width: 90%;
  height: auto;
  position: relative;
  z-index: 2;
}

#page-title h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
}

#shop-icon {
    border-top: .25px solid var(--border-gray);
    border-bottom: .25px solid var(--border-gray);
}

.shop-top-item:nth-child(2) {
    border-left: .25px solid var(--border-gray);
    border-right: .25px solid var(--border-gray);
}

.shop-top-item {
    padding: 0 60px;
}
.shop-top-item img {
    width: 64px;
    height: 64px;
}

.shop-top-item strong {
    font-size: 19px;
    font-weight: 800;
    color: var(--black);
}

.shop-top-item small {
    font-size: 13px;
    font-weight: 600;
    color: var(--nblack);
}






/* shop content */
#shop-container {
    width: 90%;
    max-width: 1800px;
    height: auto;
    margin: 30px auto;
    position: relative;
}
#shop-content {
    width: 75%;
    height: fit-content;
    position: relative;
}
#shop-content.full {
  width: 100%;
}
#sidebar {
    width: 0;
    display: none;
}
#sidebar.show {
  width: 22%;
  display: block;
}



/* Sidebar - FULL SCREEN FIXED on mobile */
#sidebar-sm {
  position: fixed !important;
  inset: 0;                       /* top:0, right:0, bottom:0, left:0 = full screen */
  width: 50%;
  height: 100vh;                  /* always full viewport height */
  max-height: 100vh;
  background: #fff;
  z-index: 9999;
  overflow-y: auto;               /* only sidebar scrolls internally */
  transform: translateX(-100%);   /* hidden by default (better than left) */
  transition: transform 0.4s ease-in-out;
  /* visibility: hidden; */
}

/* Open state */
#sidebar-sm.show {
  transform: translateX(0);
  /* visibility: visible; */
}

/* Lock entire page scroll when sidebar is open */
body.sidebar-open {
  overflow: hidden !important;
  height: 100vh !important;
  position: fixed !important;     /* extra iOS fix */
  width: 100%;
}

/* Overlay for dimming & click-to-close */
#sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 9998;
}

#sidebar-sm.show + #sidebar-overlay,
#sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

#sidebar-sm header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--dark-blue);
  padding: 20px;
}

#sidebar-sm header b {
  color: var(--white);
  font-size: 28px;
}
#sidebar-sm header i {
  color: var(--red);
}
#sidebar-sm  .category-widget {
  padding: 0 20px;
}
/* close */
.circCont {
  display: inline-block;
}

.circle {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 4px solid #e92530;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  display: inline-block;
  margin: 10px 20px;
  
  /* ✅ ADD THESE MISSING TRANSITIONS */
  transition: all 0.3s ease-in-out;
}

.circle:after {
  width: 24px;
  height: 4px;
  background-color: #e92530;
  content: "";
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -2px;
  position: absolute;
  transform: rotate(-45deg);
  
  /* ✅ ADD THESE MISSING TRANSITIONS */
  transition: all 0.4s ease-in-out;
}

.circle:before {
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -2px;
  width: 24px;
  height: 4px;
  background-color: #e92530;
  content: "";
  position: absolute;
  transform: rotate(45deg);
  
  /* ✅ ADD THESE MISSING TRANSITIONS */
  transition: all 0.4s ease-in-out;
}

.circle + p {
  text-transform: lowercase;
  font-size: 14px;
  margin-bottom: 10px;
}

/* fromMiddle animation - FIXED */
.fromMiddle:before,
.fromMiddle:after {
  z-index: 9999;
  transition-delay: 150ms;
  transition: all 0.4s ease-in-out;
}

.fromMiddle span {
  width: 38px;
  height: 38px;
  background-color: var(--wc-red);
  display: inline-block;
  position: absolute;
  border-radius: 100%;
  left: -2px;
  top: -2px;
  z-index: -9999;
  transform: scale(0.3);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.fromMiddle:hover:before,
.fromMiddle:hover:after {
  background-color: #fff !important; /* !important to override */
}

.fromMiddle:hover span {
  transform: scale(1);
  opacity: 1;
}

/* magnify animation */
.circle[data-animation="magnify"]:not(.magnify) {
  transition: all 0.1s ease-in-out;
}

.circle[data-animation="magnify"]:not(.magnify):hover {
  transform: scale(0.9);
}

.circle.magnify {
  transition: all 0.2s ease-in-out;
  transform: scale(1.6);
  opacity: 0;
}


/*  */
#shop-order {
    padding: 0 12px;
    margin-bottom: 10px;
}

.show-result-shop , .woocommerce-ordering {
  width: 50%;
}

.woocommerce-result-count {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2%;
    color: var(--black);
}

.clear-filter {
  padding: 6px 8px;
  border: var(--border-theme);
  border-radius: 4px;
  cursor: pointer;
}
.clear-filter:last-child {
  margin-left: 10px;
}
.clear-filter i {
    margin-right: 6px;
    cursor: pointer;
    font-size: 10px !important;
    color: var(--red) !important;
}
.clear-filter i , .clear-filter p {
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
}
.woocommerce-result-count {
    margin-right: 40px;
}
.orderby {
  background: unset !important;
} 
#sort-icon {
  width: 29px;
  height: 20px;
  background-position: center center;
  background-size: 100% 100%;
  background-image: url(../images/sort-icon.png);
  margin-right: 10px;
}









/* side bar */
/** shop-sidebar **/

.currentCat {
	color: var(--secondary-color) !important;
}

.current_cat {
  color: var(--light-blue);
}


.sidebar-widget{
  position: relative;
}
.widget-wrapper {
  border-bottom: 1px solid var(--border-gray);
}

.widget-title-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 16px;
}

.widget-title , .widget-title-icon {
    font-size: 27px !important;
    font-weight: 800 !important;
}

.widget-title-icon {
  transition: all .4s ease-in-out;
}
.widget-title-icon.open {
  transform: rotate(180deg);
}
.widget-title-icon.close {
  transform: rotate(-180deg);
}


.widget-content {
  border-bottom: .5px solid var(--border-gray);
  padding: 0 16px;
}

.noUi-target {
  border: unset !important;
}

ul.accordion-box {
  padding-left: 0 !important;
}

.search-widget .search-inner{
  position: relative;
  display: block;
}

.search-widget .search-inner .form-group{
  position: relative;
  margin-bottom: 20px;
}

.search-widget .search-inner .form-group .select-box{
  min-height: 50px;
}
.lns-checkbox span {
    font-size: 16px;
    font-weight: 400;
}

.search-widget .search-inner .form-group .select-box .nice-select{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  background: #F3F3F3;
  line-height: 54px;
  padding: 0px 20px;
  font-size: 16px;
  color: var(--title-color);
  border-radius: 5px;
  text-transform: capitalize;
}

.search-widget .search-inner .form-group .select-box .nice-select:before{
  color: var(--title-color);
  right: 20px;
}

.category-widget .accordion{
  position: relative;
}
.category-widget .accordion:last-child {
  margin-bottom: 1rem;
}

.category-widget .accordion a.cat-item-filter:hover {
  color: var(--light-blue);
}
.category-widget .accordion .acc-btn{
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: var(--title-color);
  padding-left: 10px;
  padding-right: 30px;
  cursor: pointer;
}

.category-widget .accordion .acc-btn:before{
/*   position: absolute; */
/*   content: ''; */
  left: 0px;
  top: 7px;
/*   width: 15px; */
/*   height: 15px; */
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
/*   border-color: #DDDDDD; */
  background: transparent;
}

.category-widget .accordion .acc-btn:after {
/*   position: absolute; */
/*   content: ''; */
  left: 2px;
  top: 10px;
/*   width: 11px; */
/*   height: 9px; */
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../images/icons/icon-2.png);
  opacity: 0;
}

.category-widget .accordion .acc-btn.active:after {
  opacity: 1;
}

.category-widget .accordion .acc-btn.active:before{

}

.category-widget .accordion .acc-btn .icon-box{
  position: absolute;
  content: '';
  right: 0px;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
  border-color: #DDDDDD;
  font-size: 14px;
  color: #DDDDDD;
  text-align: center;
  background: transparent;
  font-weight: 600;
}

.category-widget .accordion .acc-btn.active .icon-box{

}

.category-widget .accordion .acc-btn .icon-box:before{
/*   position: absolute; */
/*   content: '+'; */
  text-align: center;
/*   width: 16px; */
  height: 16px;
  line-height: 10px;
  left: 0px;
  top: 0px;
  right: 0px;
}

.category-widget .accordion .acc-btn.active .icon-box:before{
/*   content: '-'; */
  font-size: 30px;
  font-weight: 400;
  line-height: 4px;
}

.category-widget .acc-content{
  /* padding-left: 20px;
  margin-bottom: 10px; */
  display: none;
  overflow: hidden;
  will-change: height, opacity;
}

.acc-content.custom-br-checkbox-filter {
  padding-bottom: 10px;
}


.acc-content.show {
  display: block;
}

.price-range-slider{
  position: relative;
  width:100%;
}

.price-range-slider .range-value{
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 15px;
}

.price-range-slider .range-value span{
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: var(--title-color);
  margin-right: 5px;
}

.price-range-slider .range-value input{
  width: 100%;
  background: none;
  font-size: 14px;
  line-height: 24px;
  font-family: var(--text-font);
  font-weight: 500;
  color: var(--title-color);
  box-shadow: none;
  border: none;
}

.price-range-slider .range-bar{
  border: none;
  height: 4px;  
  width: 100%;
  background: rgba(255, 107, 0, 0.20);
  border-radius: 30px;
}

.price-range-slider .ui-slider-range{
  
}

.price-range-slider .ui-slider-handle{
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 4px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.10);
  top: -8px;
  background-color: var(--theme-color);
}

.price-range-slider .btn-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-range-slider .btn-box .clear-btn{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: var(--title-color);
  text-decoration: underline;
  transition: all 500ms ease;
}

.price-range-slider .btn-box .clear-btn:hover{

}

.price-range-slider .btn-box .theme-btn{
  padding: 8px 20px;
  color: #fff;
}

.price-range-slider .btn-box .theme-btn span{
  background: var(--title-color);
}

.price-slider-desktop {
  overflow: visible !important;   /* make sure nothing clips */
  padding-right: 20px !important;                /* tune this value */
  padding-left: 6px !important;
}

.category-list li{
  position: relative;
  display: block;
  padding: 3px;
}
.category-list li a {

}
.review-widget .category-list li label i{
  font-size: 16px;
  margin-right: 7px;
  color: #FFC844;
}

.review-widget .category-list li label i.light{
  color: #D3D3D3;
}











/* slider  */
/* Base widget styling */
.noUi-connect {
    background-color: var(--blue);
}
.noUi-horizontal {
    height: 8px !important;
}
.noUi-horizontal .noUi-handle {
    width: 21px !important;
    height: 21px !important;
    border-radius: 50%;
}
.noUi-horizontal .noUi-handle {
    top: -8px !important;
    border: 8px solid var(--blue) !important;
    box-shadow: unset !important;

}

.noUi-handle::after, .noUi-handle::before {
    display: none !important;
}

.clear-btn {
    width: 120px;
    height: 40px;
    background: var(--white) !important;
    text-decoration: none !important;
    border: 2px solid var(--blue) !important;
    border-radius: 9px;
    padding: 8px 20px;
    color: var(--blue) !important;
    font-weight: 400;
}
.price-filter-widget .acc-content {
    padding-bottom: 20px;
} 

/* On small screens, show mobile slider, hide desktop */
@media (max-width: 767px) {
    .price-slider-desktop {
        display: none;
    }

    #smSlider {
        display: block;
    }

    #smSlider .range-value input[type="text"] {
        width: 140px;
    }
}
   

/* woocommerce-pagination */
.woocommerce-pagination {
  width: 100%;
  margin-top: 1.5rem;
}

ul.page-numbers {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.page-numbers li {
  padding: 3px 12px;
}
ul.page-numbers li span,
ul.page-numbers li a i ,
ul.page-numbers li a {
  font-size: 20px;
  font-weight: 400;
}
ul.page-numbers li span {
  color: var(--gray);
}
ul.page-numbers li a {
  color: var(--black);
}
.page-numbers.current {
  color: var(--red) !important;
}


.qty-selector {
  display: none;
}





/* before footer */
#before-footer {
  width: 100%;
}
.footer-promo {
  width: 30%;
  height: 260px;
}
#before-footer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

#before-footer-content * {
  color: #000;
}
#before-footer-content h2 {
  font-weight: 600;
}
#before-footer-content h2,
#before-footer-content h3,
#before-footer-content h4 {
  text-align: left;
  width: 100%;
  margin: 0 auto;
}
#before-footer-content p {
    font-size: 16px;
    font-weight: 600;
}
.footer-content-block {
  padding: 30px;
}
#footer-block-2 {
  background-color: var(--sky-blue);
  border-radius: 23px;
}
#footer-block-2 * {
  text-align: left;
}
#footer-block-2 ul {
  list-style: disc;
  margin: 1.5rem 0;
  padding-left: 30px;
  margin-bottom: 20px;
}
#footer-block-2 ul li,
#footer-block-2 ul li p {
  width: 100% !important;
  margin: auto;
  font-size: 16px;
  font-weight: normal;
  white-space: normal !important;
  list-style: circle !important;
}

#footer-block-3 p {
  font-size: 16px;
  font-weight: 600;
}







#action-order {
  width: 75%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  
}



#filterToggle-sm {
  display: none
}
.filter-toggle {
  --bg: var(--white);
  --text: var(--nblack);
  --accent: var(--light-blue);
  --active: var(--red);
  --shadow: rgba(28, 28, 28, 0.1);
  
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--bg);
  color: var(--text);
  border: 2px solid transparent;
  border-radius: 50px;
  font-family: -apple-system, sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  position: relative;
  overflow: hidden;
}

.filter-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--shadow);
  border-color: var(--accent); /* #1977BB */
}

.filter-toggle.active {
  background: var(--active); /* rgba(233, 37, 48, 1) */
  color: var(--white);
  border-color: var(--active);
  box-shadow: 0 8px 32px rgba(233, 37, 48, 0.3);
  padding: 14px 14px !important;
}

/* Arrow Animation */
.arrow {
  font-size: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--accent); /* #1977BB */
}

.filter-toggle.active .arrow {
  color: var(--white);
  transform: rotate(180deg); /* Right → Left arrow */
}

/* Text Slide Right */
.text {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-left: 9px !important;
}

.filter-toggle.active .text {
  transform: translateX(4px);
}

.filter-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(100, 100, 100, 0.12);   /* soft gray – or use var(--accent) with alpha */
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: 
    transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 0.4s ease;
  pointer-events: none;
}

.filter-toggle:active::after {
  transform: translate(-50%, -50%) scale(4);   /* grows from center */
  opacity: 1;
}

/* Optional: fade out faster after release */
.filter-toggle:not(:active)::after {
  opacity: 0;
  transition: opacity 0.5s ease 0.1s;
}
.filter-toggle:active {
  transform: scale(0.96);          /* tiny press down feel */
  transition: transform 0.08s ease;
}

.sort-widget, #filter-mode, #sort-mode {
  display: none;
}

/* Header layout */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background: #f8f8f8;
}

/* Your switch styling (Nib/Stylus converted to CSS) */
.switch-form {
    position: relative;
    width: 180px; /* adjust as needed */
}

.switch {
    position: relative;
    width: 180px;
    height: 50px;
    background: #4cd964; /* green = filter */
    border-radius: 25px;
    overflow: hidden;
    transition: background 0.3s ease;
}

.switch label {
    position: absolute;
    top: 0;
    width: 90px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: rgba(0,0,0,0.4);
    font-weight: bold;
    transition: color 0.3s ease;
    cursor: pointer;
    z-index: 2;
}

label[for="filter-mode"] { left: 0; }
label[for="sort-mode"]   { right: 0; }

.switch span {
    position: absolute;
    width: 20px;
    height: 4px;
    top: 40%;
    left: 50%;
    margin: -2px 0 0 -4px;
    border-radius: 2px;
    transition: all 0.3s ease;
    z-index: 1;
}
.switch span i {
  color: #fff !important;
}
/* .switch span:after {
    content: "";
    position: absolute;
    width: 4px;
    height: 12px;
    margin-top: -8px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
} */

/* Sort mode (red) */
#sort-mode:checked ~ .switch {
    background: #ff3b30; /* red */
}
#sort-i, #filter-i {
  display: none;
}
#sort-mode:checked ~ .switch span #sort-i {
  display: block;
}
#filter-mode:checked ~ .switch span #filter-i {
  display: block;
}

/* #sort-mode:checked ~ .switch span:after {
    height: 20px;
    margin-top: -8px;
    margin-left: 8px;
} */

/* Active label color */
#filter-mode:checked ~ .switch label[for="filter-mode"],
#sort-mode:checked ~ .switch label[for="sort-mode"] {
    color: white;
    font-weight: bold;
}


#mb-sort .widget-title-wrapper {
  flex-direction: column !important;
  align-items: start !important;
}
#mb-sort .widget-title {
  display: none;
}


.dropdown-option  {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  text-align: left;
}
.footer-question {
  background: unset;
  font-weight: 600;
  font-size: 20px;
}
.footer-answer {
  margin-top: 10px;
  padding-left: 20px;
  display: none;
}
.footer-answer.open {
  display: flex;
}
.dropdown-option:nth-child(1) .footer-answer {
  display: flex ;
}
.dropdown-option  .faq-icon {
	margin-left: 30px;
}
/** responsive-css **/

/* accrdion */

.accordion-collapse {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}
.footer-dropdown-block .accordion {
    width: 100%;
}

.footer-dropdown-block .accordion-item {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0 !important;
    overflow: hidden;
}

.footer-dropdown-block .accordion-item:last-child {
    border-bottom: none;
}

.footer-dropdown-block .accordion-button {
    background-color: #ffffff;
    color: #333333;
    font-weight: 500;
    padding: 20px 25px;
    font-size: 24px !important;
    font-weight: 500;
    box-shadow: none !important;
    border: none;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.footer-dropdown-block .accordion-button {
    background-color: #f8f9fa;
}

.footer-dropdown-block .accordion-button:not(.collapsed) {
    background-color: #026193;
    color: #fff !important;
    font-weight: 600;
}

.footer-dropdown-block .accordion-button.collapsed {
  color: var(--blue) !important;
}


.footer-dropdown-block .accordion-button:not(.collapsed)::after {
	filter: brightness(0) invert(1) !important;
  -webkit-filter: brightness(0) invert(1) !important; /* Safari */
}

.footer-dropdown-block .accordion-button::after {
    transition: transform 0.3s ease;
}

.footer-dropdown-block .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.footer-dropdown-block .accordion-body {
    padding: 0 25px 0 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
    background-color: #ffffff;
}

.footer-dropdown-block .accordion-body > * {
  text-align: left;
  font-family: inherit;
}

.footer-dropdown-block .accordion-body li {
  list-style: none !important;
  text-align: left !important;
}

.footer-dropdown-block .accordion-body ul {
	padding-left: 20px;
}
.footer-dropdown-block .accordion-body li::before {
  content: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z' fill='hsl(202, 74%, 45%)'/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
  position: absolute;
  left: 20px;
	color: var(--blue);
	align-content
}
.footer-dropdown-block .accordion-body h2 {
  font-size: 26px;
  color: var(--blue) !important;
  line-height: 100%;
  padding-top: 18px;
}

.footer-dropdown-block .accordion-body h3 {
  font-size: 20px !important;
  padding-top: 16px;
  line-height: 30px;
}


@media only screen and (max-width: 1800px){
  .shop-top-item {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 1600px){
  .shop-top-item {
    padding: 0 10px;
  }
}

@media only screen and (max-width: 1400px){
  #shop-content {
    width: 100% !important;
  }
  #sidebar {
    display: none !important;
  }
  #filterToggle-sm {
    display: block !important;
  }
  #filterToggle {
    display: none !important;
  }
  #wpadminbar {
    display: none !important;
  }
  .woocommerce-ordering {
    display: none !important;
  }
  .show-result-shop {
    width: 100% !important;
    justify-content: end !important;
  }
}

@media only screen and (max-width: 1080px){
  #page-title h1 {
    font-size: 37px !important;
  }
}

@media only screen and (max-width: 991px){
  #sidebar-sm {
    width: 60% !important;
  }
}

@media only screen and (max-width: 767px){
    #sidebar-sm {
    width: 70% !important;
  }
  #shop-container {
    margin-bottom: 0 !important;
  }
  #before-footer-content {
    margin-top: 0 !important;
  }
  .shop-top-item  {
    padding: 0 60px;
    justify-content: center !important;
    margin-bottom: 10px !important;
  }
  .shop-top-item:last-child {
    margin-bottom: 0 !important;
  }
  .shop-top-item img {
    margin-right: 20px;
  }

  .footer-promo {
    width: 100% !important;
    margin-bottom: 1.5rem;
  }
  .footer-promo:last-child {
    margin-bottom: 0 !important;
  }
  #before-footer-content h2, #before-footer-content h3, #before-footer-content h4 {
    width: 100% !important;
  }
  #footer-block-2 ul {
    list-style-position: inside !important;
  }
  #footer-block-2 * {
    text-align: left;
    margin: 0 !important;
  }
  .show-result-shop {
    justify-content: start !important;
    margin-top: 1rem !important;
  }
  .footer-dropdown-block .accordion-button {
    font-size: 20px;
  }
  
}


@media only screen and (max-width: 599px){
  #page-title h1 {
    font-size: 30px !important;
  }
  .shop-top-item img {
    width: 45px;
    height: 45px;
  }
  .product-title {
    min-height: 95px !important;
  }
  .footer-dropdown-block .accordion-button {
    font-size: 17px !important;
  }
  .footer-dropdown-block .accordion-body h2 {
    font-size: 16px !important;
    line-height: 30px !important;
  }
  #before-footer-content p {
    font-size: 14px;
    font-weight: 400;
  }
}


@media only screen and (max-width: 499px){
  #sidebar-sm {
    width: 100% !important;
  }
  .footer-dropdown-block .accordion-button {
    font-size: 16px !important;
  }
  .footer-dropdown-block .accordion-body h2 {
    font-size: 15px !important;
  }
  #before-footer-content p {
    font-size: 13px !important;
  }
  .accordion-button {
    padding-right: 30px !important;
  }
  .accordion-button::after {
    background-size: 1rem !important;
  }
}





