@media (min-width: 992px) {
  body.p-detail-page:not(.sidebar-visible) .sidebar { display: none !important; }
  body.p-detail-page.sidebar-visible .sidebar { display: block !important; }

  .sidebar-toggle-btn {
  margin-bottom:-20px;
  margin-top:20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #f3f5f7;
    color: #26313A;
    border: 1px solid #e2e6ea;
    font: 600 15px/1 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    cursor: pointer;
    transition: box-shadow .2s, transform .06s, background .2s, border-color .2s;
    text-decoration: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  .sidebar-toggle-btn:hover {
    background: #eef1f4;
    border-color: #cfd6dc;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
  }
  .sidebar-toggle-btn:active { transform: translateY(1px); }
  .sidebar-toggle-btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  body.p-detail-page.sidebar-visible .sidebar-toggle-btn {
    background: #eaf7f4;
    border-color: #bfe5da;
  }
}
