       /* 页面专属样式 — 无emoji，全中国传统色 */
        .instock-hero {
            background: var(--mi-huang);
            padding: 2.5rem 0 1.5rem;
            border-bottom: 1px solid var(--huang-ru);
        }
        .instock-hero h1 {
            color: var(--zhu-sha);
            font-size: 2rem;
            margin: 0 0 0.25rem;
            letter-spacing: 2px;
        }
        .instock-hero .subhead {
            color: var(--text-muted);
            font-size: 1rem;
            max-width: 700px;
            margin: 0.5rem auto 0;
        }
        .instock-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        .instock-card {
            background: var(--xiang-ya);
            border-radius: 28px;
            padding: 1.5rem 1.5rem 1.8rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }
        .instock-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .instock-card .card-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            color: var(--zhu-sha-dark);
            border-bottom: 1px solid var(--huang-ru);
            padding-bottom: 0.6rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        .instock-card .card-label .icon {
            width: 22px;
            height: 22px;
        }
        .instock-card ul, .instock-card p {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .instock-card li {
            padding: 0.4rem 0 0.4rem 1.8rem;
            position: relative;
            color: var(--text-main);
            font-size: 0.95rem;
            line-height: 1.5;
            border-bottom: 1px dashed var(--border-light);
        }
        .instock-card li:last-child {
            border-bottom: none;
        }
        .instock-card li::before {
            content: "◆";
            color: var(--zhu-sha);
            position: absolute;
            left: 0;
            font-size: 0.7rem;
            top: 0.6rem;
        }
        .instock-card .highlight {
            color: var(--zhu-sha);
            font-weight: 600;
        }

        .packing-show {
            background: var(--zhu-qing-soft);
            border-radius: 24px;
            padding: 1.5rem 1.8rem;
            margin: 2rem 0 1rem;
            border-left: 4px solid var(--zhu-qing);
        }
        .packing-show .pack-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
            justify-content: center;
        }
        .packing-show .pack-item {
            flex: 1 1 140px;
            max-width: 180px;
            background: white;
            border-radius: 20px;
            padding: 0.5rem;
            box-shadow: var(--shadow-sm);
            cursor: pointer;
            transition: 0.2s;
        }
        .packing-show .pack-item:hover {
            box-shadow: var(--shadow-md);
        }
        .packing-show .pack-item img {
            width: 100%;
            border-radius: 14px;
            background: #eae3d6;
            display: block;
        }
        .packing-show .pack-desc {
            flex: 2;
            min-width: 200px;
        }
        .packing-show .pack-desc h4 {
            margin-top: 0;
            color: var(--song-yan);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .cta-instock {
            background: var(--zhu-sha);
            color: white;
            border: none;
            padding: 0.8rem 2.2rem;
            border-radius: 48px;
            font-weight: 600;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            transition: var(--transition);
            cursor: pointer;
            margin: 0.5rem 0 1rem;
            text-decoration: none;
        }
        .cta-instock:hover {
            background: var(--zhu-sha-dark);
            transform: scale(1.02);
            box-shadow: var(--shadow-md);
            color: white;
            text-decoration: none;
        }
        .cta-instock .icon {
            filter: brightness(0) invert(1);
        }
        .footnote {
            color: var(--text-light);
            font-size: 0.85rem;
            border-top: 1px solid var(--border-light);
            padding-top: 1.2rem;
            margin-top: 1.8rem;
            text-align: center;
        }
        /* 全屏遮罩 */
        .lightbox-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(20, 18, 15, 0.92);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            cursor: pointer;
            padding: 2rem;
            box-sizing: border-box;
        }
        .lightbox-overlay.active {
            display: flex;
        }
        .lightbox-overlay img {
            max-width: 95%;
            max-height: 95%;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.6);
        }
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 2.2rem;
            color: #cfc6b5;
            cursor: pointer;
            background: none;
            border: none;
            font-weight: 300;
            transition: 0.2s;
        }
        .lightbox-close:hover {
            color: #fff;
            transform: rotate(90deg);
        }
        /* 故事与斫制历程 — 更细 */
        .story-section {
            background: var(--xiang-ya);
            border-radius: 28px;
            padding: 2rem 2rem 1.8rem;
            margin: 2rem 0;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }
        .story-section h2 {
            color: var(--song-yan);
            border-left: 4px solid var(--zhu-sha);
            padding-left: 0.8rem;
            font-size: 1.5rem;
            margin-top: 0;
        }
        .story-section p {
            color: var(--text-main);
            line-height: 1.8;
            margin: 0.8rem 0;
        }
        .story-section .timeline {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.2rem 0;
        }
        .story-section .timeline-item {
            flex: 1 1 200px;
            background: var(--yue-bai);
            padding: 0.8rem 1rem;
            border-radius: 20px;
            border-left: 3px solid var(--zhu-sha);
        }
        .story-section .timeline-item strong {
            color: var(--zhu-sha-dark);
            display: block;
            font-size: 0.9rem;
        }
        .story-section .timeline-item span {
            font-size: 0.85rem;
            color: var(--text-muted);
            display: block;
            margin-top: 0.2rem;
        }
        .media-box {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 1.5rem 0;
            background: var(--zhu-qing-soft);
            border-radius: 24px;
            padding: 1.2rem 1.8rem;
            align-items: center;
        }
        .media-box video, .media-box audio {
            border-radius: 16px;
            max-width: 100%;
            background: #1a1a1a;
        }
        .media-box .media-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
            color: var(--song-yan);
            min-width: 100px;
        }
        @media (max-width: 700px) {
            .instock-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }

            .packing-show .pack-grid {
                flex-direction: column;
                align-items: center;
            }
            .packing-show .pack-desc {
                text-align: center;
            }
            .story-section .timeline-item {
                flex: 1 1 100%;
            }
            .media-box {
                flex-direction: column;
                align-items: stretch;
            }
        }
        .weekly-release {
            background: var(--zhu-sha-light);
            border-radius: 48px;
            padding: 0.8rem 1.8rem;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            font-weight: 500;
            color: var(--zhu-sha-dark);
            border: 1px solid var(--huang-ru);
            margin-bottom: 0.5rem;
        }
        .weekly-release .icon {
            width: 20px;
            height: 20px;
        }
        .wood-detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
            margin: 1rem 0;
        }
        .wood-detail-grid .item {
            background: var(--yue-bai);
            padding: 0.6rem 1rem;
            border-radius: 16px;
            border: 1px solid var(--border-light);
        }
        .wood-detail-grid .item strong {
            color: var(--zhu-sha-dark);
        }
        @media (max-width: 500px) {
            .wood-detail-grid {
                grid-template-columns: 1fr;
            }
        }
        /* 更细的时间线 */
        .timeline-detailed {
            margin: 1rem 0;
        }
        .timeline-detailed .tl-block {
            display: flex;
            gap: 0.8rem;
            padding: 0.6rem 0;
            border-bottom: 1px dashed var(--border-light);
        }
        .timeline-detailed .tl-block:last-child {
            border-bottom: none;
        }
        .timeline-detailed .tl-month {
            font-weight: 600;
            color: var(--zhu-sha);
            min-width: 70px;
        }
        .timeline-detailed .tl-desc {
            color: var(--text-main);
            font-size: 0.92rem;
        }
        .timeline-detailed .tl-desc small {
            color: var(--text-muted);
            font-size: 0.8rem;
        }
		
		
		
		        .gallery-wrapper {
            max-width: 1400px;
            width: 100%;
        }

        /* 网格 — 完全自适应 */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        /* 每个图片卡片 */
        .gallery-grid figure {
            background: #fcfaf7;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            border: 1px solid #e8dfd7;
        }

        .gallery-grid figure:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
        }

        .gallery-grid figure img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
            background: #eae3db;
            transition: opacity 0.2s;
        }

        .gallery-grid figure figcaption {
            padding: 0.6rem 0.8rem 0.8rem;
            font-size: 0.85rem;
            color: #4d423b;
            letter-spacing: 0.02em;
            background: #fcfaf7;
            border-top: 1px solid #eee7e0;
            text-align: center;
            font-weight: 350;
        }

        /* 灯箱 — 轻量级 直接使用 openLightbox */
        .lightbox-overlay {
            position: fixed;
            inset: 0;
            background: rgba(20, 15, 12, 0.85);
            backdrop-filter: blur(4px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 999;
            padding: 1.5rem;
        }

        .lightbox-overlay.active {
            display: flex;
        }

        .lightbox-overlay img {
            max-width: 90vw;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 18px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
            background: #f0ebe5;
            padding: 0.2rem;
        }

        .lightbox-close {
            position: absolute;
            top: 1.8rem;
            right: 2.2rem;
            font-size: 2.6rem;
            color: #f0e8e0;
            cursor: pointer;
            background: rgba(40, 30, 25, 0.4);
            width: 3rem;
            height: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.2s;
            border: 1px solid rgba(255, 240, 230, 0.2);
            font-weight: 300;
            line-height: 1;
        }

        .lightbox-close:hover {
            background: rgba(60, 45, 35, 0.7);
        }

        /* 小屏优化 */
        @media (max-width: 600px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 1rem;
            }
            .gallery-grid figure figcaption {
                font-size: 0.75rem;
                padding: 0.4rem 0.5rem 0.6rem;
            }
        }