/* ===== 全域重置 & 變數（與站內頁面一致） ===== */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Noto Sans TC', 'Inter', sans-serif; color: #1a1a1a; background: #fcfcf9; font-size: 17px; line-height: 1.6; }
        .font-display { font-family: 'Noto Serif TC', serif; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { display: block; max-width: 100%; }
        button { font-family: inherit; }
        .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
        @media (max-width: 640px) { .wrap { padding: 0 20px; } }

        :root {
            --green-950: #022c22; --green-900: #064e3b; --green-800: #065f46; --green-700: #047857;
            --green-600: #059669; --green-500: #10b981; --green-400: #34d399; --green-300: #6ee7b7;
            --green-200: #a7f3d0; --green-100: #d1fae5; --green-50: #ecfdf5; --lime-300: #bef264;
            --neutral-900: #171717; --neutral-800: #262626; --neutral-700: #404040; --neutral-600: #525252;
            --neutral-500: #737373; --neutral-400: #a3a3a3; --neutral-300: #d4d4d4; --neutral-200: #e5e5e5;
            --neutral-100: #f5f5f5; --neutral-50: #fafafa; --cream: #f3ede6;
            --accent-green: #b6e7a8; --accent-green-dark: #93cf82; --ink: #3d4a35;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.04); --shadow-md: 0 8px 30px rgba(0,0,0,0.06); --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
            --radius: 24px; --radius-sm: 12px; --white: #ffffff;
            --line: rgba(6, 78, 59, 0.10);
        }

        .kicker {
            display: inline-flex; align-items: center; gap: 10px;
            font-family: 'Space Grotesk', 'Noto Sans TC', sans-serif;
            font-size: 18px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
            color: var(--green-700);
        }
        .kicker::before {
            content: ''; width: 30px; height: 3px; border-radius: 2px;
            background: linear-gradient(90deg, #ff6f59, #ffc248, #29b6a6, #35648f, #b85c9e, #2f6f4f);
            flex-shrink: 0;
        }

        .heading-lg { font-family: 'Noto Serif TC', serif; font-weight: 900; font-size: 32px; line-height: 1.28; letter-spacing: -0.01em; color: var(--green-900); margin-top: 18px; }
        @media (min-width: 768px) { .heading-lg { font-size: 42px; } }
        .text-body { color: var(--ink); line-height: 1.85; font-size: 17px; }
        .text-body + .text-body { margin-top: 16px; }

        .btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 30px;
            border-radius: 9999px; font-weight: 700; font-size: 16px; border: none; cursor: pointer;
            transition: all 0.2s ease; font-family: 'Noto Sans TC', sans-serif;
        }
        .btn-primary { background: var(--accent-green); color: var(--green-950); box-shadow: 0 4px 0 var(--accent-green-dark), 0 8px 20px rgba(6,95,70,0.18); }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--accent-green-dark), 0 14px 28px rgba(6,95,70,0.25); background: #c5f0b3; }
        .btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--accent-green-dark), 0 4px 12px rgba(6,95,70,0.2); }

        /* ===== HEADER ===== */
        .site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.88); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(229,229,229,0.6); }
        .site-header .wrap { min-height: 80px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px 24px; padding-top: 12px; padding-bottom: 12px; }
        .brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
        .brand-badge { width: 56px; height: 56px; border-radius: 9999px; background: var(--green-500); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .brand-badge .mark { display: flex; align-items: center; color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.04em; }
        .brand-badge .leaf-wrap { position: relative; }
        .brand-badge .leaf-wrap i { position: absolute; top: -10px; right: -8px; font-size: 13px; color: var(--lime-300); transform: rotate(12deg); }
        .brand-text { display: flex; flex-direction: column; line-height: 1.25; }
        .brand-text .title { font-size: 20px; font-weight: 700; letter-spacing: 0.01em; color: var(--green-900); }
        .brand-text .sub { font-size: 14px; color: var(--green-600); margin-top: 3px; font-weight: 500; }
        .nav-area { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-left: auto; }
        .site-nav { display: flex; align-items: center; gap: 8px 28px; font-size: 17px; font-weight: 400; color: #6b7280; }
        .site-nav a { padding: 6px 2px; border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s; }
        .site-nav a:hover { color: #065f46; border-bottom-color: var(--accent-green); }
        .site-nav a.active { color: #065f46; border-bottom: 2px solid var(--accent-green); }
        .lang-toggle { display: flex; align-items: center; gap: 2px; background: var(--neutral-100); border-radius: 9999px; padding: 4px; flex-shrink: 0; }
        .lang-btn { border: none; background: transparent; cursor: pointer; font-family: 'Noto Sans TC', sans-serif; font-size: 13px; font-weight: 700; padding: 5px 14px; border-radius: 9999px; color: var(--neutral-500); transition: 0.15s; }
        .lang-btn.active { background: var(--green-700); color: #fff; }
        .nav-burger { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 9999px; border: 1px solid var(--neutral-200); background: #fff; color: var(--green-700); font-size: 18px; cursor: pointer; flex-shrink: 0; }
        @media (max-width: 768px) {
            .brand { flex-shrink: 1; min-width: 0; }
            .brand-text { min-width: 0; }
            .nav-area { width: 100%; justify-content: flex-end; }
            .nav-burger { display: flex; }
            .lang-toggle { flex-shrink: 0; }
            .site-nav { display: none; width: 100%; order: 10; flex-direction: column; align-items: flex-start; gap: 2px; margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--neutral-200); }
            .site-nav.open { display: flex; }
            .site-nav a { display: inline-block; width: fit-content; padding: 10px 0; font-size: 18px; border-bottom: 2px solid transparent; }
            .site-nav a.active { border-bottom-color: var(--accent-green); }
        }

        /* ===== 內頁 HERO（僅標題，與生產製造頁一致） ===== */
        .page-hero { position: relative; width: 100%; min-height: 320px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
        .page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
        .page-hero-content { position: relative; z-index: 10; text-align: center; padding: 0 20px; }
        .page-hero-title {
            position: relative; display: inline-block; padding-bottom: 16px;
            font-family: 'Noto Serif TC', serif; font-weight: 900;
            font-size: 28px; line-height: 1.22; letter-spacing: -0.01em;
            color: #065f46;
            text-shadow: 0 1px 18px rgba(255,255,255,0.92), 0 1px 6px rgba(255,255,255,0.92);
        }
        @media (min-width: 768px) { .page-hero-title { font-size: 38px; } }
        .page-hero-title::after {
            content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
            width: 64px; height: 2px; border-radius: 4px; background: var(--accent-green);
        }
        @media (max-width: 640px) { .page-hero { min-height: 220px; } }

        /* ===== 區塊通用 ===== */
        .section-block { padding: 88px 0; background: #fcfcf9; }
        @media (max-width: 640px) { .section-block { padding: 56px 0; } }
        .text-center { text-align: center; }
        .mt-32 { margin-top: 32px; }

        /* ===== 產品欣賞：提示列（取代分類篩選） ===== */
        .gallery-hint {
            display: flex; align-items: center; justify-content: center; gap: 8px;
            font-size: 15px; color: var(--green-700); font-weight: 600;
            margin: 0 auto 36px; text-align: center;
        }
        .gallery-hint i { font-size: 14px; }

        /* ===== 產品欣賞：圖片網格 ===== */
        .gallery-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 32px;
        }
        .gallery-card { text-align: center; }
        .gallery-thumb {
            position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius-sm); overflow: hidden;
            background: #ffffff;
            border: 1.5px solid var(--green-200); cursor: zoom-in;
            transition: transform 0.25s ease, border-color 0.25s ease;
        }
        .gallery-thumb:hover, .gallery-thumb:focus-visible {
            transform: translateY(-6px);
            border-color: var(--green-400);
            outline: none;
        }
        .gallery-thumb img {
            width: 100%; height: 100%; object-fit: contain; object-position: center;
            transition: transform 0.4s ease;
        }
        .gallery-thumb:hover img { transform: scale(1.04); }
        .gallery-zoom-icon {
            position: absolute; right: 10px; bottom: 10px; width: 34px; height: 34px;
            border-radius: 9999px; background: rgba(255,255,255,0.92);
            display: flex; align-items: center; justify-content: center;
            color: var(--green-800); font-size: 14px; opacity: 0; transform: translateY(6px);
            transition: opacity 0.25s ease, transform 0.25s ease;
        }
        .gallery-thumb:hover .gallery-zoom-icon { opacity: 1; transform: translateY(0); }
        .gallery-caption {
            margin-top: 14px; font-size: 16px; font-weight: 700; color: var(--green-900);
            font-family: 'Noto Sans TC', sans-serif;
        }

        @media (max-width: 900px) {
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 560px) {
            .gallery-grid { grid-template-columns: 1fr; }
        }

        /* ===== CTA 橫幅 ===== */
        .banner-row { display: flex; align-items: center; justify-content: space-between; gap: 32px; text-align: left; }
        @media (max-width: 768px) { .banner-row { flex-direction: column; align-items: flex-start; } }
        .banner-text { max-width: 640px; }
        .banner-row .btn { flex-shrink: 0; }

        /* ===== 燈箱（點擊圖片放大檢視） ===== */
        .lightbox {
            position: fixed; inset: 0; z-index: 999; background: rgba(2, 20, 15, 0.86);
            display: flex; align-items: center; justify-content: center; padding: 24px;
            opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s ease;
        }
        .lightbox.open { opacity: 1; visibility: visible; }
        .lightbox-inner { position: relative; max-width: 900px; width: 100%; text-align: center; }
        .lightbox-inner img {
            width: 100%; max-height: 78vh; object-fit: contain; border-radius: var(--radius-sm);
            background: #fff; box-shadow: var(--shadow-lg);
        }
        .lightbox-caption { margin-top: 16px; color: #f5f5f5; font-size: 16px; font-weight: 600; }
        .lightbox-close {
            position: absolute; top: -46px; right: 0; width: 40px; height: 40px; border-radius: 9999px;
            background: rgba(255,255,255,0.14); border: none; color: #fff; font-size: 18px; cursor: pointer;
            display: flex; align-items: center; justify-content: center; transition: background 0.2s ease;
        }
        .lightbox-close:hover { background: rgba(255,255,255,0.28); }

        /* ===== FOOTER ===== */
        .site-footer { background: #efece7; position: relative; }
        .footer-grid { display: grid; gap: 40px; padding-top: 64px; padding-bottom: 64px; }
        @media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; } }
        .footer-desc { margin-top: 20px; font-size: 16px; color: #6b7280; line-height: 1.75; max-width: 480px; }
        .footer-heading { font-family: 'Space Grotesk', 'Noto Sans TC', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #111111; }
        .footer-list { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; font-size: 16px; color: #6b7280; }
        .footer-list li { display: flex; align-items: center; gap: 10px; }
        .footer-list a { display: flex; align-items: center; gap: 10px; border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s; width: fit-content; }
        .footer-list a:hover { color: var(--green-950); border-bottom-color: var(--accent-green); }
        .footer-list .icon { color: var(--green-600); width: 16px; text-align: center; flex-shrink: 0; }
        @media (max-width: 767px) {
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-columns { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 8px; padding-top: 32px; border-top: 1px solid var(--line); }
            .footer-desc { max-width: 100%; }
        }
        .footer-bottom { border-top: 1px solid rgba(167,243,208,0.5); padding: 20px 0; }
        .footer-bottom-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 6px; font-size: 13px; color: var(--green-700); max-width: 1200px; margin: 0 auto; padding: 0 32px; }
        @media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; } }