/** Shopify CDN: Minification failed

Line 16:8 Expected identifier but found whitespace
Line 16:10 Unexpected "{"
Line 16:19 Expected ":"
Line 16:59 Expected ":"
Line 34:10 Expected identifier but found whitespace
Line 34:12 Unexpected "{"
Line 34:21 Expected ":"
Line 34:62 Expected ":"

**/
.toc-sidebar {
    position: fixed;
    left: 0;
    top: {{ section.settings.top_offset | default: 160 }}px;
    z-index: 999;
    display: flex;
    align-items: flex-start;
    opacity: 1;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  }

  .toc-sidebar.is-initializing {
    opacity: 0.3;
    pointer-events: none;
  }

  .toc-sidebar.is-collapsed {
    transform: translateX(calc(-100%));
  }

  .toc-panel {
    width: {{ section.settings.panel_width | default: 280 }}px;
    max-height: 50vh;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-left: none;
    box-shadow: 4px 6px 20px rgba(0, 0, 0, 0.06);
    border-radius: 0 8px 8px 0;
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    box-sizing: border-box;
  }

  .toc-toggle-btn {
    position: absolute;
    right: -36px;
    top: 0;
    width: 36px;
    height: 72px;
    background: #3dbbb4;
    color: #ffffff;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
    box-shadow: 2px 3px 10px rgba(0,0,0,0.1);
  }
  .toc-toggle-icon {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
  }
  .toc-toggle-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    writing-mode: vertical-rl;
  }

  .toc-header {
    padding-bottom: 12px;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 12px;
  }
  .toc-h1-title {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .toc-scroll-body {
    overflow-y: auto;
    padding-right: 4px;
  }
  .toc-scroll-body::-webkit-scrollbar {
    width: 4px;
  }
  .toc-scroll-body::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 2px;
  }

  .toc-h2-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .toc-h2-item {
    margin-bottom: 14px;
  }
  .toc-h2-title-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  .toc-index {
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    min-width: 18px;
  }
  .toc-link {
    text-decoration: none;
    color: #222222;
    transition: color 0.2s ease;
    line-height: 1.4;
  }
  .toc-link:hover {
    color: #3dbbb4;
  }
  .toc-h2-link {
    font-size: 14px;
    font-weight: 600;
  }

  .toc-h3-list {
    list-style: disc;
    padding-left: 28px;
    margin: 8px 0 0 0;
  }
  .toc-h3-item {
    margin-bottom: 6px;
    color: #666666;
  }
  .toc-h3-link {
    font-size: 13px;
    font-weight: 400;
    color: #555555;
  }
  .toc-empty-notice {
    font-size: 13px;
    color: #999999;
    margin: 0;
  }

  @media (max-width: 768px) {
    .toc-panel {
      width: 250px;
    }
  }