    /* 布局修饰类 - header/footer 布局变体 */

    /* 紧凑 header（首页、AI 生成页使用，高度比默认 64px 小） */
    .header.header--fixed {
      height: 60px;
    }

    /* 移动端适配 */
    @media (max-width: 768px) {
      .header.header--fixed {
        height: 52px;
        padding: 0 16px;
      }

      .header.header--fixed .logo-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
      }

      .header.header--fixed .logo-text {
        font-size: 16px;
      }

      .header.header--fixed .logo-subtitle {
        display: none;
      }

      .header.header--fixed .tool-btn {
        width: 32px;
        height: 32px;
      }

      .header.header--fixed .tool-btn svg {
        width: 16px;
        height: 16px;
      }
    }
