/* Custom CSS — loaded after styles.css on every page. Edit freely. */

/* Mobile navigation toggle (button injected by custom.js as .wb-nav-toggle) */
.wb-nav-toggle { display: none; }

@media (max-width: 1024px) {
  .wb-mobile-menu{display: none;}
  .wb-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    margin-left: auto;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 8px;
    cursor: pointer;
    box-sizing: border-box;
  }
  .wb-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
  }
  .wb-nav-toggle.wb-nav-toggle-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .wb-nav-toggle.wb-nav-toggle-open span:nth-child(2) { opacity: 0; }
  .wb-nav-toggle.wb-nav-toggle-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  header { position: relative; }
  header nav.wb-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 2px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    padding: 8px 16px 12px;
    z-index: 1000;
  }
  header nav.wb-nav.wb-nav-open { display: flex; }
  header nav.wb-nav a {
    display: block;
    width: 100%;
    padding: 12px 4px;
    color: #1a1a1a;
  }
}

.page .page-body {display: block;}
.stack-heading{font-size: 22px!important;}
.category-breadcrumb .current{font-size: 14px!important;text-transform: uppercase;}