/* ============ 基础与变量 ============ */
    :root {
      --bg: #FAF6F3;
      /* 暖瓷白 */
      --card: #FFFFFF;
      --ink: #2C2521;
      --ink-2: #6E625B;
      /* 次级文字 */
      --ink-3: #A2938B;
      /* 弱文字 */
      --accent: #C89A92;
      /* 裸粉 */
      --deep: #8E5F56;
      /* 玫瑰褐 */
      --line: #E8DED8;
      /* 雾灰线 */
      --sans: -apple-system, "PingFang SC", "MiSans", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif;
      --r-lg: 24px;
    }

    * {
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent
    }

    html,
    body {
      margin: 0;
      padding: 0
    }

    html.lock,
    html.lock body {
      overflow: hidden
    }

    body {
      background: #F1EAE4;
      font-family: var(--sans);
      color: var(--ink);
      font-size: 15px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    button {
      font: inherit;
      color: inherit;
      background: none;
      border: 0;
      padding: 0;
      cursor: pointer
    }

    a {
      color: inherit;
      text-decoration: none
    }

    img,
    svg {
      display: block
    }

    :focus-visible {
      outline: 2px solid var(--deep);
      outline-offset: 2px
    }

    /* 主列：390 设计，480 封顶居中 */
    .page {
      max-width: 480px;
      margin: 0 auto;
      min-height: 100dvh;
      background: var(--bg);
      box-shadow: 0 0 0 1px var(--line);
      padding-bottom: 96px;
    }

    /* ============ 首屏：釉面弧形色带（签名元素） ============ */
    .hero {
      position: relative;
      background: linear-gradient(168deg, #F8EBE5 0%, #F0DBD2 52%, #E9CFC3 100%);
      border-radius: 0 0 52% 52% / 0 0 48px 48px;
      padding: 26px 20px 64px;
      box-shadow: inset 0 -22px 34px -24px rgba(255, 255, 255, .95);
    }

    .hero::after {
      /* 釉口高光弧线 */
      content: "";
      position: absolute;
      left: 10px;
      right: 10px;
      bottom: 6px;
      height: 26px;
      border-radius: 0 0 52% 52% / 0 0 24px 24px;
      border-bottom: 1px solid rgba(255, 255, 255, .75);
      pointer-events: none;
    }

    .wordmark {
      margin: 0;
      text-align: center;
      font-size: 23px;
      font-weight: 300;
      letter-spacing: .3em;
      text-indent: .3em;
      color: var(--ink);
    }

    .wordmark-en {
      margin: 6px 0 0;
      text-align: center;
      font-size: 9px;
      font-weight: 400;
      letter-spacing: .46em;
      text-indent: .46em;
      color: var(--deep);
      opacity: .72;
    }

    .search {
      margin: 20px auto 0;
      display: flex;
      align-items: center;
      gap: 10px;
      height: 46px;
      padding: 0 18px;
      background: rgba(255, 255, 255, .86);
      border: 1px solid rgba(255, 255, 255, .9);
      border-radius: 23px;
      box-shadow: 0 6px 18px -10px rgba(142, 95, 86, .28);
    }

    .search svg {
      flex: 0 0 auto
    }

    .search input {
      flex: 1;
      min-width: 0;
      border: 0;
      background: transparent;
      font: inherit;
      font-size: 13px;
      color: var(--ink);
      letter-spacing: .04em;
    }

    .search input::placeholder {
      color: var(--ink-3)
    }

    .search input:focus {
      outline: none
    }

    .search:focus-within {
      border-color: var(--accent)
    }

    .hero-copy {
      margin-top: 26px;
      text-align: center
    }

    .hero-line {
      margin: 0;
      font-size: 19px;
      font-weight: 300;
      letter-spacing: .22em;
      text-indent: .22em;
      color: #5C4A43;
    }

    .hero-sub {
      margin: 8px 0 0;
      font-size: 11px;
      letter-spacing: .18em;
      text-indent: .18em;
      color: var(--deep);
      opacity: .8;
    }

    /* ============ 子品牌筛选 ============ */
    .brands {
      position: relative;
      z-index: 2;
      margin: -24px 16px 0;
      display: flex;
      gap: 7px;
      padding: 8px;
      overflow-x: auto;
      scrollbar-width: none;
      background: rgba(255, 255, 255, .9);
      border: 1px solid rgba(232, 222, 216, .9);
      border-radius: 22px;
      box-shadow: 0 12px 26px -18px rgba(142, 95, 86, .35);
    }

    .brands::-webkit-scrollbar {
      display: none
    }

    .brand {
      flex: 0 0 auto;
      min-height: 36px;
      padding: 0 14px;
      border: 1px solid transparent;
      border-radius: 18px;
      color: var(--ink-2);
      font-size: 11px;
      letter-spacing: .06em;
      white-space: nowrap;
      transition: color .2s ease, background .2s ease, border-color .2s ease, transform .15s ease;
    }

    .brand.on {
      color: #fff;
      background: var(--deep);
      border-color: var(--deep);
    }

    .brand:active {
      transform: scale(.96)
    }

    /* ============ 分类标签条 ============ */
    .tabs {
      position: sticky;
      top: 0;
      z-index: 5;
      margin-top: 18px;
      background: rgba(250, 246, 243, .92);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
    }

    .tabs-track {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding: 10px 16px;
      scrollbar-width: none;
    }

    .tabs-track::-webkit-scrollbar {
      display: none
    }

    .tab {
      flex: 0 0 auto;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 22px;
      border: 1px solid var(--line);
      background: var(--card);
      font-size: 13px;
      letter-spacing: .06em;
      color: var(--ink-2);
      transition: background .2s, color .2s, border-color .2s;
    }

    .tab.on {
      background: var(--deep);
      border-color: var(--deep);
      color: #FDF9F7;
    }

    /* 二级分类行：比一级更轻的视觉层级 */
    .tabs-track.sub {
      padding-top: 0;
      padding-bottom: 12px
    }

    .tabs-track.sub[hidden] {
      display: none
    }

    .stab {
      flex: 0 0 auto;
      min-height: 38px;
      padding: 0 13px;
      border-radius: 19px;
      background: transparent;
      border: 1px solid transparent;
      font-size: 12.5px;
      letter-spacing: .05em;
      color: var(--ink-2);
      transition: background .2s, color .2s;
    }

    .stab.on {
      background: #F1E2DC;
      color: var(--deep);
      font-weight: 500;
    }

    /* ============ 产品卡片流 ============ */
    .products {
      padding-top: 8px
    }

    .sec-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      padding: 10px 20px 12px;
    }

    .sec-head h2 {
      margin: 0;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: .24em;
    }

    .sec-note {
      font-size: 10px;
      letter-spacing: .12em;
      color: var(--ink-3)
    }

    .grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      padding: 0 16px;
    }

    .card {
      display: block;
      width: 100%;
      text-align: left;
      background: var(--card);
      border: 1px solid rgba(232, 222, 216, .7);
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: 0 12px 26px -18px rgba(142, 95, 86, .24);
    }

    .card:active {
      transform: scale(.975)
    }

    .thumb {
      display: block;
      aspect-ratio: 1/1;
      background: linear-gradient(180deg, #FCF7F3 0%, #F7EDE6 100%);
      padding: 10px;
    }

    .thumb svg,
    .thumb img {
      width: 100%;
      height: 100%;
      object-fit: contain
    }
    .card-info {
      display: block;
      padding: 12px 14px 14px
    }

    .btag {
      display: inline-block;
      font-size: 9.5px;
      letter-spacing: .16em;
      color: var(--accent);
      border: 1px solid #EEDFDA;
      border-radius: 8px;
      padding: 2px 7px;
    }

    .card-name {
      margin: 8px 0 0;
      font-size: 13px;
      font-weight: 500;
      line-height: 1.55;
      letter-spacing: .02em;
      min-height: 40px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .card-row {
      margin-top: 8px;
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 6px;
    }

    /* 价格排版层级 */
    .price {
      color: var(--deep);
      white-space: nowrap
    }

    .price .cur {
      font-size: 11px;
      font-weight: 500;
      margin-right: 1px
    }

    .price .num {
      font-size: 20px;
      font-weight: 600;
      letter-spacing: -.01em;
      font-variant-numeric: tabular-nums;
    }

    .card-spec {
      font-size: 10px;
      color: var(--ink-3);
      letter-spacing: .04em
    }

    .empty {
      grid-column: 1/-1;
      text-align: center;
      padding: 56px 0 64px;
      font-size: 12px;
      letter-spacing: .14em;
      color: var(--ink-3);
    }

    /* ============ 页脚 ============ */
    .foot {
      margin-top: 36px;
      text-align: center;
      font-size: 10px;
      letter-spacing: .22em;
      text-indent: .22em;
      color: var(--ink-3);
    }

    /* ============ 全屏 Overlay（详情 / 备案） ============ */
    .overlay {
      position: fixed;
      inset: 0;
      z-index: 40;
      display: flex;
      justify-content: center;
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
    }

    .overlay.open {
      visibility: visible;
      opacity: 1;
      pointer-events: auto
    }

    .o-col {
      position: relative;
      width: 100%;
      max-width: 480px;
      height: 100dvh;
      background: var(--bg);
      box-shadow: 0 0 48px rgba(44, 37, 33, .16);
      display: flex;
      flex-direction: column;
    }

    .o-close {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 3;
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, .92);
      border: 1px solid var(--line);
      box-shadow: 0 8px 20px -12px rgba(44, 37, 33, .3);
      color: var(--ink);
    }

    .sheet {
      flex: 1;
      overflow-y: auto;
      overscroll-behavior: contain;
      padding-bottom: 112px
    }

    /* 轮播 */
    .carousel {
      position: relative
    }

    .track {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }

    .track::-webkit-scrollbar {
      display: none
    }

    .slide {
      flex: 0 0 100%;
      scroll-snap-align: center;
      aspect-ratio: 1/1;
      background: linear-gradient(180deg, #FCF7F3 0%, #F5EAE2 100%);
      padding: 34px;
    }

    .slide svg,
    .slide img {
      width: 100%;
      height: 100%;
      object-fit: contain
    }
    .d-thumbs {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding: 10px 14px 12px;
      scrollbar-width: none;
      background: var(--card);
      border-bottom: 1px solid var(--line);
    }

    .d-thumbs::-webkit-scrollbar {
      display: none
    }

    .d-thumb {
      flex: 0 0 58px;
      width: 58px;
      height: 58px;
      padding: 3px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #FAF6F3;
      transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
    }

    .d-thumb img,
    .d-thumb svg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
    }

    .d-thumb.on {
      border-color: var(--deep);
      box-shadow: 0 0 0 1px var(--deep);
    }

    .d-thumb:active {
      transform: scale(.95)
    }
    /* 详情信息区 */
    .d-body {
      padding: 22px 22px 8px
    }

    .d-name {
      margin: 10px 0 0;
      font-size: 19px;
      font-weight: 500;
      line-height: 1.5;
      letter-spacing: .03em;
    }

    .d-price {
      margin-top: 12px;
      display: flex;
      align-items: baseline;
      gap: 10px
    }

    .d-price .cur {
      font-size: 14px;
      font-weight: 500;
      color: var(--deep)
    }

    .d-price .num {
      font-size: 32px;
      font-weight: 600;
      color: var(--deep);
      letter-spacing: -.02em;
      font-variant-numeric: tabular-nums;
    }

    .d-unit {
      font-size: 11px;
      color: var(--ink-3);
      letter-spacing: .08em
    }

    .d-meta {
      margin: 20px 0 0;
      border-top: 1px solid var(--line);
    }

    .d-meta>div {
      display: flex;
      gap: 18px;
      padding: 11px 2px;
      border-bottom: 1px solid var(--line);
      font-size: 12.5px;
    }

    .d-meta dt {
      flex: 0 0 3em;
      margin: 0;
      color: var(--ink-3);
      letter-spacing: .14em
    }

    .d-meta dd {
      margin: 0;
      color: var(--ink-2)
    }

    .d-sub {
      margin: 22px 0 0;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .26em;
      color: var(--ink-3);
    }

    .d-desc {
      margin: 8px 0 0;
      font-size: 13.5px;
      line-height: 1.9;
      color: var(--ink-2);
      letter-spacing: .02em;
    }

    /* 底部操作栏 */
    .d-bar {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      display: flex;
      gap: 10px;
      padding: 12px 16px calc(14px + env(safe-area-inset-bottom));
      background: rgba(255, 255, 255, .94);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      border-top: 1px solid var(--line);
    }

    .btn {
      flex: 1;
      min-height: 48px;
      border-radius: 24px;
      font-size: 14px;
      letter-spacing: .1em;
      text-indent: .1em;
      display: grid;
      place-items: center;
      transition: transform .15s ease, opacity .2s;
    }

    .btn:active {
      transform: scale(.97)
    }

    .btn.primary {
      background: var(--deep);
      color: #FDF9F7;
      flex: 1.35
    }

    .btn.ghost {
      background: var(--card);
      color: var(--deep);
      border: 1px solid #E3CFC8
    }

    .btn[hidden] {
      display: none
    }

    /* 备案层 */
    .overlay.reg {
      z-index: 50
    }

    .reg-body {
      flex: 1;
      overflow-y: auto;
      padding: 76px 26px calc(24px + env(safe-area-inset-bottom));
      display: flex;
      flex-direction: column;
    }

    .reg-title {
      margin: 0;
      text-align: center;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: .3em;
      text-indent: .3em;
    }

    .reg-name {
      margin: 8px 0 20px;
      text-align: center;
      font-size: 11.5px;
      letter-spacing: .1em;
      color: var(--ink-3);
    }

    .reg-ph {
      flex: 1;
      min-height: 0;
      background: var(--card);
      border-radius: var(--r-lg);
      border: 1px solid var(--line);
      padding: 14px;
      display: grid;
      place-items: center;
    }

    .reg-ph svg {
      width: 100%;
      height: 100%;
      max-height: 56vh
    }

    .reg-note {
      margin: 14px 0 16px;
      text-align: center;
      font-size: 10.5px;
      letter-spacing: .16em;
      color: var(--ink-3);
    }

    .reg-body .btn {
      flex: 0 0 auto
    }

    /* ============ 分享海报层 ============ */
    .overlay.poster {
      z-index: 55;
      align-items: center
    }

    .poster-scrim {
      position: absolute;
      inset: 0;
      background: rgba(44, 37, 33, .52)
    }

    .poster-wrap {
      position: relative;
      width: min(316px, 82vw);
      display: flex;
      flex-direction: column;
      gap: 14px;
      max-height: 92dvh;
    }

    .poster-card {
      background: var(--card);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .5);
    }

    .poster-img {
      background: linear-gradient(180deg, #FCF7F3 0%, #F3E4DB 100%);
      padding: 20px;
    }

    .poster-img svg {
      width: 100%;
      height: auto
    }

    .poster-info {
      padding: 16px 18px 14px
    }

    .poster-name {
      margin: 8px 0 0;
      font-size: 15px;
      font-weight: 500;
      line-height: 1.5;
      letter-spacing: .02em;
    }

    .poster-row {
      margin-top: 10px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 12px;
    }

    .poster-price {
      color: var(--deep)
    }

    .poster-price .cur {
      font-size: 12px;
      font-weight: 500
    }

    .poster-price .num {
      font-size: 26px;
      font-weight: 600;
      letter-spacing: -.01em;
      font-variant-numeric: tabular-nums
    }

    .poster-spec {
      display: block;
      margin-top: 2px;
      font-size: 10px;
      color: var(--ink-3);
      letter-spacing: .06em
    }

    .qr {
      flex: 0 0 auto;
      width: 64px;
      height: 64px;
      padding: 5px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 10px;
    }

    .qr svg {
      width: 100%;
      height: 100%
    }

    .poster-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 18px 14px;
      border-top: 1px dashed var(--line);
    }

    .poster-mark {
      font-size: 10px;
      letter-spacing: .3em;
      text-indent: .3em;
      color: var(--ink-2)
    }

    .poster-scan {
      font-size: 9px;
      letter-spacing: .12em;
      color: var(--ink-3)
    }

    .poster-hint {
      text-align: center;
      font-size: 11px;
      letter-spacing: .18em;
      text-indent: .18em;
      color: rgba(255, 255, 255, .92);
    }

    .poster-actions {
      display: flex;
      gap: 10px
    }

    .poster-actions .btn {
      background: rgba(255, 255, 255, .94)
    }

    .poster-actions .btn.primary {
      background: var(--deep)
    }

    .poster-x {
      position: absolute;
      top: -52px;
      right: 0;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, .16);
      color: #fff;
    }

    /* ============ Toast ============ */
    .toast {
      position: fixed;
      z-index: 60;
      left: 50%;
      bottom: 104px;
      transform: translate(-50%, 8px);
      background: rgba(44, 37, 33, .92);
      color: #FBF6F2;
      font-size: 12.5px;
      letter-spacing: .12em;
      text-indent: .12em;
      padding: 10px 22px;
      border-radius: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s ease, transform .25s ease;
    }

    .toast.show {
      opacity: 1;
      transform: translate(-50%, 0)
    }

    /* ============ 风格切换悬浮按钮 ============ */
    .fab {
      position: fixed;
      z-index: 30;
      bottom: calc(20px + env(safe-area-inset-bottom));
      right: max(16px, calc(50vw - 224px));
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }

    .fab-menu {
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 8px;
      background: rgba(255, 255, 255, .96);
      border: 1px solid var(--line);
      border-radius: 18px;
      box-shadow: 0 16px 34px -16px rgba(44, 37, 33, .3);
      visibility: hidden;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
    }

    .fab.open .fab-menu {
      visibility: visible;
      opacity: 1;
      transform: none;
      transition: opacity .2s ease, transform .2s ease;
    }

    .fab-menu a {
      min-height: 44px;
      min-width: 132px;
      display: flex;
      align-items: center;
      padding: 0 16px;
      border-radius: 12px;
      font-size: 12px;
      letter-spacing: .1em;
      color: var(--ink-2);
    }

    .fab-menu a:active {
      background: #F5ECE7
    }

    .fab-menu a.cur {
      background: var(--deep);
      color: #FDF9F7;
      pointer-events: none;
    }

    .fab-btn {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--card);
      border: 1px solid var(--line);
      box-shadow: 0 14px 28px -14px rgba(142, 95, 86, .5);
      display: grid;
      place-items: center;
      transition: transform .15s ease;
    }

    .fab-btn:active {
      transform: scale(.92)
    }

    /* ============ 动效（仅在允许动画时） ============ */
    @media (prefers-reduced-motion: no-preference) {
      .rise {
        opacity: 0;
        animation: rise .7s cubic-bezier(.22, .61, .36, 1) both;
        animation-delay: var(--d, 0s);
      }

      @keyframes rise {
        from {
          opacity: 0;
          transform: translateY(16px)
        }

        to {
          opacity: 1;
          transform: none
        }
      }

      .card {
        opacity: 0
      }

      .card.in {
        opacity: 1;
        animation: cardin .6s cubic-bezier(.22, .61, .36, 1) backwards;
        animation-delay: var(--cd, 0s);
      }

      @keyframes cardin {
        from {
          opacity: 0;
          transform: translateY(18px)
        }

        to {
          opacity: 1;
          transform: none
        }
      }

      .card {
        transition: transform .16s ease
      }

      .overlay {
        transition: opacity .26s ease, visibility 0s linear .26s
      }

      .overlay.open {
        transition: opacity .26s ease
      }

      .o-col {
        transform: translateY(3%);
        transition: transform .32s cubic-bezier(.22, .61, .36, 1)
      }

      .overlay.open .o-col {
        transform: none
      }
    }

    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
      }
    }

.card[hidden] { display: none !important; }
.card { cursor: pointer; }
.card-image { width: 100%; height: 100%; object-fit: contain; border-radius: 16px; }
.catalog-empty { grid-column: 1 / -1; }

.detail-page { padding-bottom: 52px; }
.detail-back { position: fixed; top: calc(14px + env(safe-area-inset-top)); left: max(14px, calc((100vw - 480px) / 2 + 14px)); }
.detail-page .registration-open { width: 100%; margin-top: 18px; border: 1px solid var(--deep); color: var(--deep); }
.product-description { white-space: pre-wrap; }
.product-long-images { background: #fff; }
.product-long-images img { width: 100%; height: auto; display: block; }
.registration-panel { background: var(--bg); overflow-y: auto; }
.registration-images { display: grid; gap: 12px; padding: 0 16px 28px; }
.registration-images img { width: 100%; height: auto; border-radius: 16px; background: #fff; }
.unavailable-page { display: grid; place-items: center; padding: 24px; }
.unavailable-card { width: 100%; padding: 34px 24px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); }
.unavailable-card h1 { margin: 12px 0 8px; font-size: 24px; }
.unavailable-card p { color: var(--ink-2); }
.unavailable-mark { color: var(--deep); font-size: 12px; letter-spacing: .15em; }
.unavailable-card .btn { margin-top: 22px; text-decoration: none; }

/* Action buttons */
.d-actions { display: flex; gap: 10px; margin-top: 18px; }
.d-actions .btn { flex: 1; min-height: 44px; font-size: 14px; font-weight: 600; border-radius: 22px; cursor: pointer; transition: all .2s; }
.d-actions .btn.ghost { background: transparent; border: 1.5px solid var(--deep); color: var(--deep); }
.d-actions .btn.ghost:active { background: rgba(142,95,86,.08); }
.d-actions .btn.primary { background: var(--deep); border: 1.5px solid var(--deep); color: #fff; }
.d-actions .btn.primary:active { opacity: .85; }

/* Poster overlay */
.poster-panel { background: var(--bg); padding: 20px; overflow-y: auto; max-height: 90dvh; }
.poster-title { font-size: 17px; font-weight: 700; text-align: center; margin: 0 0 16px; color: var(--ink); }
.poster-container { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.poster-container canvas { width: 100%; height: auto; display: block; }
.poster-tip { text-align: center; font-size: 12px; color: var(--muted); margin: 12px 0; }
.poster-actions { display: flex; gap: 10px; }
.poster-actions .btn { flex: 1; min-height: 44px; font-size: 14px; font-weight: 600; border-radius: 22px; cursor: pointer; }
.poster-actions .btn.ghost { background: transparent; border: 1.5px solid var(--line); color: var(--ink2); }
.poster-actions .btn.primary { background: var(--deep); border: 1.5px solid var(--deep); color: #fff; }
