 /* ========================================================
           🎨 整合的 CSS (請在本地分離到 style.css)
           ======================================================== */
        :root {
            --bg-grad-top: #fff0f5; 
            --bg-grad-bottom: #e0f7fa; 
            --glass-bg: rgba(255, 255, 255, 0.65);
            --glass-border: rgba(255, 255, 255, 0.8);
            --decoration-alpha: 0.5;
            --text-main: #6c7a89;
            --text-sub: #aab7c4;
            --accent-color: #ffb6c1; 
            --accent-blue: #bce2e8; 
            --font-family: 'M PLUS Rounded 1c', sans-serif;
            --obs-color: #ffb6c1; 
        }

        body {
            margin: 0; padding: 0; font-family: var(--font-family); color: var(--text-main);
            background: linear-gradient(135deg, var(--bg-grad-top) 0%, var(--bg-grad-bottom) 100%);
            background-attachment: fixed; min-height: 100vh; overflow-x: hidden; position: relative;
        }

        .lang-switcher { display: flex; justify-content: flex-end; margin-bottom: 1.5rem; background: var(--glass-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: 20px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); z-index: 100; width: fit-content; margin-left: auto; }
        .lang-btn { background: transparent; border: none; padding: 8px 15px; font-family: inherit; font-weight: bold; font-size: 0.85rem; color: var(--text-sub); cursor: pointer; transition: 0.3s; text-decoration: none; }
        .lang-btn:hover { background: rgba(255,255,255,0.8); }
        .lang-btn.active { background: var(--accent-color); color: #fff; }

        body.obs-mode { background: transparent !important; overflow: hidden; display: flex; align-items: center; justify-content: center; }
        body.obs-mode .bg-decoration, body.obs-mode .content-wrapper, body.obs-mode .lang-switcher { display: none !important; }
        #obs-widget-layer { display: none; width: 100vw; height: 100vh; align-items: center; justify-content: center; }
        body.obs-mode #obs-widget-layer { display: flex; }

        .obs-clock-ui { font-family: 'M PLUS Rounded 1c', sans-serif; background: #ffffff; border-radius: 45px; padding: 55px 75px; box-shadow: 0 15px 35px rgba(0,0,0,0.08); display: flex; flex-direction: column; align-items: center; gap: 20px; }
        .obs-time { font-size: 110px; font-weight: 900; color: #555555; letter-spacing: 4px; line-height: 1; display: flex; align-items: baseline; font-variant-numeric: tabular-nums; }
        .obs-time .blink { animation: smoothBlink 1s ease-in-out infinite; position: relative; top: -6px; }
        .obs-date { background: var(--obs-color); color: #ffffff; font-size: 28px; font-weight: 700; padding: 8px 35px; border-radius: 50px; letter-spacing: 2px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
        @keyframes smoothBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

        .bg-decoration { position: fixed; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,var(--decoration-alpha)) 0%, rgba(255,255,255,0) 70%); animation: floatBg 10s ease-in-out infinite alternate; z-index: -1; pointer-events: none; }
        .dec-1 { width: 50vw; height: 50vw; top: -10%; left: -10%; }
        .dec-2 { width: 60vw; height: 60vw; bottom: -20%; right: -15%; animation-delay: -5s; }
        @keyframes floatBg { 0% { transform: translateY(0) scale(1); } 100% { transform: translateY(30px) scale(1.05); } }

        .content-wrapper { max-width: 1100px; margin: 0 auto; padding: 2rem 1rem 5rem; position: relative; }
        .glass-panel { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 2.5rem; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); margin-bottom: 2rem; }
        header.glass-panel { text-align: center; padding: 3.5rem 1.5rem; position: relative; overflow: hidden; }
        .hero-brand, .section-kicker { margin: 0 0 0.65rem; color: var(--accent-color); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
        h1 { color: var(--text-main); font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.25; margin: 0 auto 1rem; letter-spacing: 0.03em; max-width: 900px; text-wrap: balance; }
        .subtitle { font-size: 0.95rem; color: #8292a1; letter-spacing: 0.08em; font-weight: 700; margin: 0 auto 2rem; display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap;}
        .subtitle i { color: var(--accent-color); }
        .hero-actions { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
        .hero-btn { min-height: 46px; border-radius: 999px; padding: 0.75rem 1.15rem; display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem; font: 700 0.9rem var(--font-family); text-decoration: none; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
        .hero-btn:hover { transform: translateY(-2px); }
        .hero-btn.primary { color: #fff; background: var(--accent-color); border: 1px solid var(--accent-color); box-shadow: 0 8px 18px rgba(255, 182, 193, 0.35); }
        .hero-btn.secondary { color: #63858b; background: #fff; border: 1px solid var(--accent-blue); }
        .hero-btn.tertiary { color: var(--text-main); background: rgba(255,255,255,0.35); border: 1px solid #dce4ec; }
        .hero-secondary-links { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 0.45rem 1rem; }
        .hero-secondary-links a, .hero-secondary-links button { min-width: 0; padding: 0.25rem; border: 0; background: transparent; box-shadow: none; color: var(--text-sub); font: 700 0.78rem var(--font-family); text-decoration: none; cursor: pointer; }
        .hero-secondary-links a:hover, .hero-secondary-links button:hover { color: var(--accent-color); transform: none; background: transparent; }
        nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
        nav button { background: transparent; border: 1px solid #dce4ec; color: var(--text-main); padding: 0.8rem 1.5rem; border-radius: 50px; font-family: inherit; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; gap: 8px; }
        nav button:hover { background: rgba(255,255,255,0.8); transform: translateY(-2px); }
        nav button.active { background: #fff7fa; border-color: var(--accent-color); color: var(--accent-color); box-shadow: 0 4px 15px rgba(255, 182, 193, 0.2); }
        .section { display: none; animation: fadeIn 0.4s ease; }
        .section.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        h2 { color: var(--accent-color); border-bottom: 2px dashed #f0f4f8; padding-bottom: 0.5rem; margin-top: 0; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 10px; font-size: 1.5rem; }
        .section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
        .section-heading-row h2 { margin-bottom: 0.8rem; }
        .quiet-booth-link { color: var(--text-main); text-decoration: none; font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem; }
        .quiet-booth-link:hover { color: var(--accent-color); }
        .catalog-tools { display: grid; grid-template-columns: minmax(220px, 1fr) minmax(190px, 0.45fr); gap: 0.8rem; margin: 0.5rem 0 1rem; }
        .search-field { position: relative; display: flex; align-items: center; }
        .search-field i { position: absolute; left: 14px; color: var(--text-sub); pointer-events: none; }
        .search-field input[type="search"] { width: 100%; min-height: 46px; padding: 10px 14px 10px 40px; border: 1px solid #dce4ec; border-radius: 14px; font: 700 0.9rem var(--font-family); color: var(--text-main); background: rgba(255,255,255,0.8); outline: none; }
        .search-field input[type="search"]:focus, .use-filter-wrap select:focus { border-color: var(--accent-color); box-shadow: 0 0 0 3px rgba(255,182,193,0.18); }
        .use-filter-wrap { display: flex; align-items: center; gap: 0.6rem; min-height: 46px; padding: 0 12px; border: 1px solid #dce4ec; border-radius: 14px; background: rgba(255,255,255,0.8); font-size: 0.8rem; font-weight: 700; }
        .use-filter-wrap select { flex: 1; border: 0; outline: 0; color: var(--text-main); background: transparent; font: 700 0.85rem var(--font-family); }
        .result-count { min-height: 1.4em; margin: -0.8rem 0 1rem; text-align: right; color: var(--text-sub); font-size: 0.78rem; font-weight: 700; }
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
        .filter-container { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2rem; justify-content: center; }
        .filter-btn { background: rgba(255,255,255,0.5); border: 1px solid var(--glass-border); color: var(--text-sub); padding: 8px 16px; border-radius: 20px; font-family: inherit; font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 5px; }
        .filter-btn:hover { background: #fff; color: var(--accent-blue); }
        .filter-btn.active { background: var(--accent-blue); color: #fff; border-color: var(--accent-blue); box-shadow: 0 4px 10px rgba(188, 226, 232, 0.5);}

        .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; width: 100%; box-sizing: border-box; }
        .product-card { background: var(--glass-bg); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: 16px; padding: 15px; display: flex; flex-direction: column; align-items: stretch; transition: all 0.3s ease; position: relative; }
        .product-card:hover { transform: translateY(-5px); border-color: var(--accent-color); box-shadow: 0 8px 20px rgba(255, 182, 193, 0.2); }
        .product-category { font-size: 0.75rem; color: var(--accent-blue); font-weight: bold; margin-bottom: 6px; text-transform: uppercase; width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 7px; min-height: 24px; }
        .category-label { display: inline-flex; align-items: center; gap: 4px; min-width: 0; }
        .product-image-container { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 12px; margin-bottom: 15px; border: 1px solid rgba(255,255,255,0.5); background: #fff; display: flex; align-items: center; justify-content: center; cursor: zoom-in; position: relative; }
        .product-image-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
        .product-card:hover .product-image-container img { transform: scale(1.08); }
        .product-image-container::after { content: '\f20a'; font-family: 'Phosphor'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(255,255,255,0.8); color: var(--accent-color); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; opacity: 0; transition: 0.3s; }
        .product-card:hover .product-image-container::after { opacity: 1; }
        .product-title { font-size: 0.88rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; line-height: 1.5; min-height: 4.1em; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-align: left; width: 100%; }
        .product-benefit { color: var(--text-sub); font-size: 0.77rem; line-height: 1.55; min-height: 2.4em; margin: 0 0 10px; }
        .product-badges, .product-tech-tags { display: flex; flex-wrap: wrap; gap: 5px; }
        .product-badges { position: static; min-height: 24px; margin-bottom: 7px; align-items: center; }
        .product-tech-tags { justify-content: flex-end; margin-left: auto; }
        .product-badge, .product-tag { border-radius: 999px; padding: 3px 8px; font-size: 0.66rem; line-height: 1.35; font-weight: 900; }
        .product-badge { background: #fff; color: var(--accent-color); box-shadow: 0 4px 12px rgba(108,122,137,0.12); }
        .product-badge.free { background: #eaf9f5; color: #4d9a84; }
        .product-badge.popular { background: #fff7df; color: #a8791c; }
        .product-tag { background: #f5f8fa; color: #7c8e9e; border: 1px solid #e7edf1; }
        .product-actions { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 7px; margin-top: auto; }
        .btn-details { display: flex; align-items: center; justify-content: center; border: 1px solid #dce4ec; color: var(--text-main); background: #fff; padding: 10px 8px; border-radius: 20px; font: 700 0.78rem var(--font-family); cursor: pointer; text-align: center; text-decoration: none; }
        .btn-details:hover { border-color: var(--accent-color); color: var(--accent-color); }
        a.btn-buy { margin-top: auto; display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; box-sizing: border-box; text-align: center; background: var(--accent-color); color: white; padding: 10px 8px; border-radius: 20px; text-decoration: none; font-weight: bold; font-size: 0.78rem; transition: all 0.3s ease; }
        a.btn-buy:hover { background: #ff9eb0; }
        .show-more-wrap { display: flex; justify-content: center; margin-top: 1.8rem; }
        .show-more-btn { border: 1px solid var(--accent-blue); background: rgba(255,255,255,0.75); color: #63858b; padding: 11px 24px; border-radius: 999px; font: 700 0.88rem var(--font-family); cursor: pointer; }
        .show-more-btn[hidden] { display: none; }

        .gentle-shop-panel { display: grid; grid-template-columns: 1fr 1.35fr; gap: 1.5rem; align-items: center; }
        .gentle-shop-panel h2 { margin-bottom: 0.8rem; }
        .gentle-shop-panel p:not(.section-kicker) { margin: 0; color: var(--text-sub); line-height: 1.7; font-size: 0.9rem; }
        .gentle-links { display: grid; gap: 0.65rem; }
        .gentle-link { display: flex; align-items: center; gap: 0.65rem; padding: 0.8rem 1rem; border-radius: 14px; background: rgba(255,255,255,0.65); border: 1px solid var(--glass-border); color: var(--text-main); text-decoration: none; font-size: 0.84rem; font-weight: 700; transition: 0.2s ease; }
        .gentle-link:hover { background: #fff; color: var(--accent-color); transform: translateX(3px); }

        .menu-item { background: rgba(255,255,255,0.5); border: 1px solid var(--glass-border); border-radius: 16px; padding: 1.5rem; margin-bottom: 1rem; transition: all 0.2s ease; }
        .menu-item:hover { border-color: var(--accent-color); background: rgba(255,255,255,0.8); }
        .menu-item.premium { background: linear-gradient(135deg, rgba(255,247,250,0.8) 0%, rgba(255,250,235,0.8) 100%); border-color: #ffe082; }
        .menu-price { color: var(--accent-color); font-weight: bold; font-size: 1.1rem; float: right; background: #fff; padding: 4px 12px; border-radius: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.03); }
        .menu-item strong { color: var(--text-main); font-size: 1.1rem; display: flex; align-items: center; gap: 8px;}
        .menu-item p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--text-sub); line-height: 1.6; }

        .tool-layout { display: flex; gap: 2rem; flex-wrap: wrap; align-items: flex-start; }
        .tool-controls { flex: 1; min-width: 320px; background: rgba(255,255,255,0.4); border-radius: 16px; padding: 1.5rem; border: 1px solid var(--glass-border); }
        .tool-preview { flex: 1.5; min-width: 320px; display: flex; flex-direction: column; gap: 15px; position: sticky; top: 20px; }
        .accordion { display: flex; flex-direction: column; gap: 10px; }
        .accordion-item { background: rgba(255,255,255,0.6); border: 1px solid #fff; border-radius: 12px; overflow: hidden; transition: all 0.3s ease; }
        .accordion-header { width: 100%; text-align: left; background: transparent; border: none; padding: 15px; font-size: 0.95rem; font-weight: 700; color: var(--text-main); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; }
        .accordion-header:hover { background: rgba(255,255,255,0.9); }
        .accordion-header .title-left { display: flex; align-items: center; gap: 8px; }
        .accordion-header i.caret { transition: transform 0.3s ease; color: var(--text-sub); }
        .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease; padding: 0 15px; box-sizing: border-box; }
        .accordion-item.active { box-shadow: 0 5px 15px rgba(255, 182, 193, 0.15); border-color: var(--accent-color); }
        .accordion-item.active .accordion-header { color: var(--accent-color); }
        .accordion-item.active .accordion-content { max-height: 600px; padding: 0 15px 15px 15px; }
        .accordion-item.active .accordion-header i.caret { transform: rotate(180deg); color: var(--accent-color); }

        .preset-buttons { display: flex; gap: 8px; margin-bottom: 15px; }
        .preset-btn { flex: 1; padding: 8px; border-radius: 8px; border: 1px solid #dce4ec; background: rgba(255,255,255,0.8); cursor: pointer; font-family: inherit; font-size: 0.85rem; font-weight: bold; color: var(--text-main); transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 4px; }
        .preset-btn:hover { background: #fff; }
        .preset-btn.active { background: var(--accent-color); color: #fff; border-color: var(--accent-color); }

        .input-group label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; display: flex; align-items: center; gap: 5px;}
        input[type="text"] { width: 100%; padding: 10px; border: 1px solid #dce4ec; border-radius: 8px; font-family: inherit; font-size: 0.9rem; color: var(--text-main); outline: none; box-sizing: border-box; background: rgba(255,255,255,0.8); margin-bottom: 10px;}
        input[type="text"]:focus { border-color: var(--accent-color); }
        
        .color-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; background: rgba(255,255,255,0.5); padding: 5px 10px; border-radius: 8px;}
        .color-row span { font-size: 0.8rem; font-weight: 700; color: var(--text-main);}
        .color-row input[type="color"] { width: 30px; height: 30px; padding: 0; border: none; border-radius: 6px; cursor: pointer; background: transparent;}
        .color-row input[type="color"]::-webkit-color-swatch-wrapper { padding: 0; }
        .color-row input[type="color"]::-webkit-color-swatch { border: 1px solid var(--glass-border); border-radius: 6px; }

        .slider-row { display: flex; align-items: center; gap: 8px; margin-top: 8px;}
        .slider-row span { font-size: 0.75rem; font-weight: bold; width: 40px; color: var(--text-sub);}
        .slider-row input[type="range"] { flex: 1; accent-color: var(--accent-color); }
        
        .file-upload-wrapper { position: relative; overflow: hidden; display: inline-block; width: 100%; margin-bottom: 10px; }
        .btn-upload { background: #fff; border: 1px dashed var(--accent-color); color: var(--accent-color); padding: 10px; border-radius: 8px; width: 100%; text-align: center; font-weight: bold; font-size: 0.85rem; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 8px; transition: all 0.2s; box-sizing: border-box; }
        .btn-upload:hover { background: #fff0f5; }
        .file-upload-wrapper input[type=file] { font-size: 100px; position: absolute; left: 0; top: 0; opacity: 0; cursor: pointer; height: 100%; }

        .schedule-scroll-area { max-height: 280px; overflow-y: auto; padding-right: 5px; }
        .schedule-scroll-area::-webkit-scrollbar { width: 6px; }
        .schedule-scroll-area::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.4); border-radius: 10px; }
        .schedule-scroll-area::-webkit-scrollbar-thumb { background: var(--accent-color); border-radius: 10px; }
        .day-row { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; background: rgba(255,255,255,0.7); padding: 8px; border-radius: 8px;}
        .day-label { font-weight: bold; color: var(--text-main); width: 25px; text-align: center; font-size: 0.9rem;}
        .day-time { width: 70px !important; font-size: 0.8rem !important; padding: 8px !important; margin-bottom: 0 !important;}
        .day-text { flex: 1; font-size: 0.85rem !important; padding: 8px !important; margin-bottom: 0 !important;}

        .custom-canvas { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); border: 1px solid var(--glass-border); background: #fff;}
        .btn-download { background: var(--accent-blue); color: #fff; border: none; padding: 15px; border-radius: 30px; font-weight: bold; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: inherit; width: 100%; box-sizing: border-box;}
        .btn-download:hover { background: #9fd4df; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(188, 226, 232, 0.4);}
        .btn-copy { background: #4caf50; color: #fff; border: none; padding: 12px; border-radius: 12px; font-weight: bold; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: 0.2s; width: 100%; margin-top: 10px; font-size: 0.9rem;}
        .btn-copy:hover { background: #45a049; }
        .social-link { display: inline-flex; align-items: center; justify-content: center; gap: 8px; margin-top: 1rem; background: var(--text-sub); color: #fff; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: bold; transition: all 0.3s ease; }
        .social-link:hover { background: var(--text-main); transform: scale(1.05); }
        footer { text-align: center; padding: 2rem; color: var(--text-sub); font-size: 0.85rem; }
        footer a { color: var(--accent-color); text-decoration: none; font-weight: bold; }
        .copy-url-box { background: rgba(0,0,0,0.05); padding: 10px; border-radius: 8px; font-family: monospace; font-size: 0.8rem; word-break: break-all; margin-top: 10px; color: var(--text-sub); border: 1px dashed #ccc;}

        .glass-panel, .tool-controls, .tool-preview, .accordion-content, .color-row, .input-group, input, .custom-canvas { box-sizing: border-box; }

        /* --- 新功能樣式 (Toast, 色碼, Lightbox, Back-to-Top) --- */
        .color-picker-wrap { display: flex; align-items: center; gap: 8px; background: #fff; padding: 3px 8px; border-radius: 8px; border: 1px solid var(--glass-border); }
        .hex-value { font-family: monospace; font-size: 0.85rem; color: var(--text-sub); cursor: pointer; transition: 0.2s; font-weight: bold; }
        .hex-value:hover { color: var(--accent-color); }
        
        #toast-container { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; gap: 10px; z-index: 9999; pointer-events: none; }
        .toast { background: var(--accent-color); color: #fff; padding: 12px 25px; border-radius: 50px; font-weight: bold; font-size: 0.9rem; box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4); display: flex; align-items: center; gap: 8px; opacity: 0; transform: translateY(20px); transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
        .toast.show { opacity: 1; transform: translateY(0); }

        .lightbox { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; z-index: 10000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
        .lightbox.show { opacity: 1; pointer-events: all; }
        .lightbox img { max-width: 90%; max-height: 90vh; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); transform: scale(0.9); transition: transform 0.3s ease; }
        .lightbox.show img { transform: scale(1); }
        .close-lightbox { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 2rem; cursor: pointer; transition: 0.2s; }
        .close-lightbox:hover { color: var(--accent-color); transform: scale(1.1); }

        .product-dialog { position: fixed; inset: 0; z-index: 10020; display: grid; place-items: center; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
        .product-dialog.show { opacity: 1; pointer-events: auto; }
        .product-dialog-backdrop { position: absolute; inset: 0; background: rgba(71,82,93,0.65); backdrop-filter: blur(7px); }
        .product-dialog-card { position: relative; z-index: 1; width: min(820px, calc(100vw - 2rem)); max-height: calc(100vh - 2rem); overflow: auto; display: grid; grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1.15fr); gap: 1.5rem; padding: 1.25rem; border-radius: 24px; background: #fff; box-shadow: 0 22px 70px rgba(56,68,79,0.3); box-sizing: border-box; }
        .product-dialog-card > img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 16px; }
        .product-dialog-copy { display: flex; flex-direction: column; justify-content: center; padding: 1rem 1rem 1rem 0; }
        .product-dialog-copy h2 { color: var(--text-main); border: 0; line-height: 1.5; font-size: 1.2rem; margin: 0 0 0.8rem; }
        .product-dialog-copy p { color: var(--text-sub); line-height: 1.7; margin: 0 0 1rem; }
        .product-dialog-description { font-size: 0.9rem; }
        .product-dialog-section { margin: 0.2rem 0 1rem; padding: 0.85rem 1rem; border-radius: 14px; background: #f8fafb; border: 1px solid #edf1f4; }
        .product-dialog-section h3 { margin: 0 0 0.55rem; color: var(--text-main); font-size: 0.82rem; }
        .product-dialog-features { list-style: none; display: grid; gap: 0.45rem; margin: 0; padding: 0; }
        .product-dialog-features li { display: flex; align-items: flex-start; gap: 0.45rem; color: #7c8e9e; font-size: 0.8rem; line-height: 1.5; }
        .product-dialog-features i { color: #77baa8; font-size: 1rem; margin-top: 0.08rem; }
        .product-dialog-fit { display: flex; gap: 0.65rem; align-items: flex-start; margin-bottom: 1rem; padding: 0.75rem 0.9rem; border-radius: 14px; background: #fff7fa; color: var(--accent-color); }
        .product-dialog-fit > i { margin-top: 0.1rem; }
        .product-dialog-fit div { display: grid; gap: 0.2rem; }
        .product-dialog-fit strong { color: var(--text-main); font-size: 0.75rem; }
        .product-dialog-fit span { color: #8a99a7; font-size: 0.8rem; line-height: 1.45; }
        .product-dialog-copy .product-badges { position: static; margin-bottom: 0.8rem; }
        .product-dialog-category-row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.65rem; }
        .product-dialog-category { margin: 0 !important; color: var(--accent-blue) !important; font-size: 0.74rem !important; font-weight: 900; text-transform: uppercase; }
        .product-dialog-category-row .product-tech-tags { margin-left: auto; }
        .product-dialog-close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 38px; height: 38px; border: 0; border-radius: 50%; background: rgba(255,255,255,0.92); color: var(--text-main); cursor: pointer; box-shadow: 0 4px 14px rgba(56,68,79,0.12); }

        #back-to-top { position: fixed; bottom: 30px; right: 30px; background: #fff; color: var(--accent-color); border: 1px solid var(--accent-color); width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 5px 15px rgba(255, 182, 193, 0.3); opacity: 0; pointer-events: none; transform: translateY(20px); transition: all 0.3s ease; z-index: 900; }
        #back-to-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
        #back-to-top:hover { background: var(--accent-color); color: #fff; transform: translateY(-5px); }

        @media (max-width: 768px) {
            .glass-panel { padding: 1.5rem 1rem !important; border-radius: 16px; }
            .content-wrapper { padding: 1rem 0.75rem 4rem; }
            .lang-switcher { margin-bottom: 1rem; }
            header.glass-panel { padding: 2.5rem 1rem !important; }
            h1 { font-size: clamp(1.75rem, 8.5vw, 2.4rem); }
            .subtitle { letter-spacing: 0.02em; line-height: 1.7; }
            .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
            .hero-secondary-links { margin-top: -0.75rem; }
            .catalog-tools { grid-template-columns: 1fr; }
            .filter-container { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x proximity; }
            .filter-btn { flex: 0 0 auto; scroll-snap-align: start; }
            .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; }
            .product-card { padding: 10px; }
            .product-title { font-size: 0.78rem; min-height: 4.5em; }
            .product-benefit { display: none; }
            .product-actions { grid-template-columns: 1fr; }
            .product-badges { min-height: 22px; margin-bottom: 6px; }
            .gentle-shop-panel { grid-template-columns: 1fr; }
            .product-dialog-card { grid-template-columns: 1fr; max-width: 520px; }
            .product-dialog-card > img { max-height: 40vh; }
            .product-dialog-copy { padding: 0.25rem; }
            .tool-controls, .tool-preview { min-width: 100% !important; padding: 1.2rem !important; }
            .preset-buttons { flex-wrap: wrap; }
            .tool-preview { overflow: hidden; }
            .accordion-header { font-size: 0.9rem; padding: 12px 10px; }
            .accordion-content { padding: 0 10px; }
            #back-to-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }
        }

        @media (max-width: 420px) {
            .products-grid { grid-template-columns: 1fr; }
            .hero-actions { grid-template-columns: 1fr; }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
        }
.seo-entry-section { display: block; }
.seo-entry-intro { margin: -.35rem 0 1.25rem; color: var(--text-sub); }
.seo-entry-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; }
.seo-entry-grid a {
    display: flex;
    align-items: center;
    gap: .65rem;
    min-height: 58px;
    padding: .8rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: var(--text-main);
    background: rgba(255,255,255,.68);
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.seo-entry-grid a:hover { transform: translateY(-2px); border-color: var(--accent-color); background: #fff; }
.seo-entry-grid a i { color: var(--accent-color); font-size: 1.2rem; }
.seo-entry-grid .guide-entry { grid-column: 1 / -1; justify-content: center; color: #fff; background: var(--accent-color); border-color: var(--accent-color); }
.seo-entry-grid .guide-entry i { color: #fff; }

@media (max-width: 720px) {
    .seo-entry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
    .seo-entry-grid { grid-template-columns: 1fr; }
}
