.elementor-6452 .elementor-element.elementor-element-7aaf5e9{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-8c509b5 *//* --- 客製化配色方案 --- */
        :root {
            --primary-color: #7f5539; /* 焦糖棕 */
            --secondary-color: #e0cdae; /* 米白 */
            --text-color: #4a4a4a; /* 深灰文字 */
            --heading-color: #333; /* 主要標題顏色 */
            --accent-color: #9c6e4a; /* 較深的棕色 */
            --footer-bg: #3b3b3b; /* 深色頁尾背景 */
            --footer-text-color: #ccc; /* 淺灰色頁尾文字 */
            --cta-bg: #f5f2e8; /* CTA 區塊淡米色背景 */
            --cta-border-color: #a9886b; /* CTA 區塊邊框顏色 */
            --link-color: #7f5539; /* 連結顏色 */
            --link-hover-color: #a9886b; /* 連結移入顏色 */
            --section-bg-light: #fdfcf8; /* 淺色區塊背景 */
            --section-border-light: #eaeaea; /* 淺色區塊邊框 */
            --keyword-highlight-bg: rgba(127, 85, 57, 0.1); /* 關鍵字強調背景色 */
        }

        /* --- 全局 & 重置樣式 --- */
        body {
            font-family: 'Noto Sans TC', 'PingFang TC', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            margin: 0;
            padding: 0;
            background-color: #f8f8f8;
            scroll-behavior: smooth;
            font-size: 1.1em;
        }

        /* --- 內容容器 --- */
        .container {
            max-width: 960px;
            margin: 0 auto;
            padding: 25px;
            background-color: #ffffff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            margin-top: 50px;
            margin-bottom: 50px;
            border-radius: 10px;
            border: 1px solid #e8e8e8;
        }

        /* --- 標題樣式 --- */
        h1 {
            color: var(--heading-color);
            font-size: 2.8em;
            margin-bottom: 0.5em;
            line-height: 1.3;
            text-align: center;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 18px;
            letter-spacing: -0.5px;
        }

        h2 {
            color: var(--heading-color);
            font-size: 1.9em;
            margin-top: 1.8em;
            margin-bottom: 0.9em;
            border-bottom: 1px solid #dcdcdc;
            padding-bottom: 8px;
            letter-spacing: -0.3px;
        }

        h3 {
            color: var(--primary-color);
            font-size: 1.5em;
            margin-top: 1.5em;
            margin-bottom: 0.7em;
        }

        /* --- 段落與文字樣式 --- */
        p {
            margin-bottom: 1.4em;
            font-size: 1.1em;
            text-align: justify;
            text-justify: inter-word;
        }

        strong {
            color: var(--primary-color);
            font-weight: 600;
        }

        /* --- 連結樣式 --- */
        a {
            color: var(--link-color);
            text-decoration: none;
            transition: color 0.3s ease, text-decoration 0.3s ease;
        }

        a:hover {
            color: var(--link-hover-color);
            text-decoration: underline;
        }

        /* --- 關鍵字高亮 --- */
        .keyword-highlight {
            font-weight: bold;
            color: var(--primary-color);
            background-color: var(--keyword-highlight-bg);
            padding: 2px 4px;
            border-radius: 4px;
        }

        /* --- 圖片樣式 --- */
        .article-image {
            display: block;
            width: 100%;
            height: auto;
            margin-bottom: 2em;
            border-radius: 8px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            border: 1px solid #e8e8e8;
        }

        /* --- 裝潢特色區塊 --- */
        .decor-feature {
            background-color: var(--section-bg-light);
            padding: 30px;
            border-radius: 10px;
            margin-top: 2em;
            margin-bottom: 2em;
            border: 1px solid var(--section-border-light);
            border-left: 6px solid var(--primary-color); /* 使用主要色調做左邊框 */
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .decor-feature h3 {
            margin-top: 0;
            font-size: 1.7em;
            margin-bottom: 0.5em;
            color: var(--heading-color);
        }

        .decor-feature ul {
            padding-left: 35px;
        }

        .decor-feature li {
            margin-bottom: 1em;
            font-size: 1.05em;
        }

        /* --- 咖啡與空間結合的描述區塊 --- */
        .cafe-ambiance-section {
            margin-top: 3em;
            margin-bottom: 3em;
            padding: 30px;
            background-color: var(--section-bg-light);
            border-radius: 10px;
            border: 1px solid var(--section-border-light);
            border-left: 8px solid var(--accent-color); /* 使用較深色調 */
            border-right: 8px solid var(--accent-color);
            text-align: center;
        }

        .cafe-ambiance-section h3 {
            margin-top: 0;
            font-size: 1.7em;
            margin-bottom: 0.5em;
            color: var(--heading-color);
        }

        /* --- 呼籲行動 (CTA) 區塊 --- */
        .cta-section {
            background-color: var(--cta-bg);
            padding: 30px;
            border-radius: 10px;
            margin-top: 3em;
            border-left: 8px solid var(--cta-border-color);
            border-right: 8px solid var(--cta-border-color);
            text-align: center;
        }

        .cta-section h3 {
            margin-top: 0;
            color: var(--heading-color);
            font-size: 1.7em;
            margin-bottom: 0.5em;
        }
        .cta-section p {
            margin-bottom: 1.5em;
            font-size: 1.05em;
            text-align: center;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: #ffffff !important;
            padding: 15px 30px;
            border-radius: 5px;
            font-size: 1.2em;
            font-weight: bold;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 3px 10px rgba(127, 85, 57, 0.3);
        }

        .cta-button:hover {
            background-color: var(--link-hover-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(169, 136, 106, 0.5);
        }

        /* --- 頁頭樣式 --- */
        header {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            padding: 30px 0;
            text-align: center;
            border-bottom: 5px solid var(--accent-color);
        }

        header h1 {
            color: var(--secondary-color);
            border-bottom: none;
            padding-bottom: 0;
            font-size: 3em;
        }

        header p {
            font-size: 1.3em;
            margin-top: -15px;
            color: var(--secondary-color);
            font-style: italic;
        }

        /* --- 頁尾樣式 --- */
        footer {
            text-align: center;
            margin-top: 60px;
            padding: 40px 0;
            border-top: 1px solid #555;
            background-color: var(--footer-bg);
            color: var(--footer-text-color);
        }
        footer p {
            margin-bottom: 0.8em;
            font-size: 0.95em;
            color: var(--footer-text-color);
            text-align: center;
        }
        footer a {
            color: #e0cdae;
            text-decoration: underline;
        }
        footer a:hover {
            color: #ffffff;
        }

        /* --- 響應式設計 --- */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2em;
            }
            h2 {
                font-size: 1.7em;
            }
            h3 {
                font-size: 1.4em;
            }
            .container {
                padding: 15px;
                margin-top: 30px;
                margin-bottom: 30px;
            }
            .decor-feature, .cafe-ambiance-section, .cta-section {
                padding: 20px;
                border-left-width: 4px; /* 縮小邊框寬度 */
            }
            .cta-section h3 {
                font-size: 1.5em;
            }
            .cta-section p {
                font-size: 1em;
            }
            .cta-button {
                font-size: 1.1em;
                padding: 12px 25px;
            }
            header h1 {
                font-size: 2.5em;
            }
            header p {
                font-size: 1.1em;
            }
            footer {
                padding: 30px 15px;
            }
        }/* End custom CSS */