.blog-sidebar-toggle-wrapper {
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  z-index: 9997;
}
#blog-sidebar-toggle {
  width: 50px !important;
  height: 50px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  background: #3849b7;
  border: none;
  transition: all 0.3s ease;
}
#blog-sidebar-toggle i {
  font-size: 18px;
  margin: 0 !important;
}
#blog-sidebar-toggle:hover {
  transform: translateY(-5px);
  background: #2a3891;
}
.blog-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.blog-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}
.blog-sidebar-close {
  padding-bottom: 20px;
  text-align: right;
}
@media (max-width: 991px) {
  .blog-sidebar,
  .shop-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    padding: 30px 20px;
    overflow-y: auto;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
  }
  .blog-sidebar.active,
  .shop-sidebar.active {
    left: 0;
  }
  body.blog-sidebar-open {
    overflow: hidden;
  }
  .gcf-shop-sidebar-column {
    display: block !important;
    height: 0;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible;
  }
}
