/* Section 背景 */
.concept-top-section {
    background-color: #FFF9F8; /* 根據截圖調整的粉肉色背景 */
    padding: 60px 0;
    overflow: hidden;
}

/* 頂部小標誌與漸變線 */
.gradient-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #E80C7B, #B4E800);
    display: inline-block;
    margin-right: 15px;
}

.tag-text {
    color: #E80C7B;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 2px;
}

/* 主標題 */
.concept-main-title {
    font-size: 44px;
    color: #EB8A7D; /* 賦予妳... 這部分的顏色較淺 */
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 6px;
}

.text-pink {
    color: #EB8A7D; /* 棕紅色/深粉色 */
    font-weight: bold;
}

/* 描述方塊 (左邊框樣式) */
.concept-description-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px 30px;
    border-left: 5px solid #EB8A7D; /* 左側粉色粗邊框 */
    box-shadow: 0 4px 15px rgba(232, 12, 123, 0.05);
    max-width: 550px;
    margin-bottom:10px;
}

.concept-description-card p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    letter-spacing: 1px;
}

/* 綠色高亮底色 */
.highlight-box {
    background-color: #EB8A7D;
    color: #ffffff;
    padding: 2px 5px;
    font-weight: bold;
}

/* 右側圖片 */
.concept-hero-img {
    max-width: 100%;
    height: auto;
}

.concept-notes {
    font-size: 14px;
    line-height: 28px;
    color:#9A9A9A;
}

.btn-more {
    background-color: #E39483;
    color: #fff !important;
    padding: 12px 60px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    box-shadow: 0 4px 15px rgba(227, 148, 131, 0.3);
    transition: all 0.3s ease;
}

.btn-more:hover {
    background-color: ffffff;
    color: #E39483 !important;
}

/* --- 手機版適配 --- */
@media (max-width: 767.98px) {
    .concept-top-section {
        padding: 40px 0;
        text-align: left;
    }

    .concept-main-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .concept-description-card {
        padding: 20px;
    }

    .concept-image-wrapper {
        margin-top: 50px;
    }

    .concept-description-card p {
        font-size: 13px;
    }
}

.product-features-section {
    background-color: #fff;
    padding: 80px 0;
}

/* 卡片主體 */
.feature-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-top: 5px solid #EB8A7D; /* 頂部粉紅邊框 */
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* 柔和陰影 */
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* 懸停效果 */
.feature-card:hover {
    transform: translateY(-10px);
}

/* 頂部半圓標籤 */
.feature-tag {
    position: absolute;
    top: -22px; /* 向上偏移一半高度 */
    left: -10px;
    background-color: #EB8A7D; /* 粉紅色 */
    color: #fff;
    padding: 8px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(222, 93, 132, 0.3);
}

/* Icon 容器 */
.feature-icon {
    width: 90px;
    margin: 20px auto 20px;
}

.feature-icon img {
    max-width: 100%;
    height: auto;
}

/* 文字內容 */
.feature-text {
    font-size: 16px;
    color: #0E1618;
    line-height: 32px;
    margin-bottom: 0;
}

/* 手機版微調 */
@media (max-width: 767.98px) {
    .product-features-section {
        padding: 40px 15px;
    }

    .mob-mb-2 {
        margin-bottom: 20px;
    }
    
    .feature-card {
        margin-top: 20px; /* 給頂部標籤預留空間 */
        padding: 0;
    }
}


.feature-detail-section {
    background-color: #F8F9F9; /* 淺灰色背景 */
    padding: 80px 0;
}

/* 特點1 標籤 */
.feature-tag-main {
    color: #E08277;
    font-size: 32px;
    font-weight: bold;
    display: flex;
    align-items: center; /* 確保圖片同文字垂直居中 */
}

.tag-star-icon {
    width: 32px;        /* 根據你圖片嘅大細調整 */
    height: auto;
    margin-right: 12px; /* 圖片同文字之間嘅距離 */
}



.feature-tag-main i {
    margin-right: 10px;
    font-size: 28px;
}

/* 主標題 */
.feature-detail-title {
    font-size: 20px;
    color: #666666;
    line-height: 1.6;
    font-weight: 400;
}


/* 底部細字註解 */
.feature-detail-note {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
}

/* 右側流程圖樣式 */
.process-flow-wrapper {
    padding-left: 30px;
}

.process-img {
    max-width: 100%;
    height: auto;
}

.font-bold {
    font-weight: bold;
}

/* --- 手機版適配 (不影響桌面版) --- */
@media (max-width: 991px) {
    .feature-detail-section {
        padding: 40px 15px;
    }

    .feature-tag-main {
        font-size: 28px; /* 手機版標題稍微加大，參考圖中比例 */
        margin-bottom: 20px !important;
    }

    .tag-star-icon {
        width: 32px; /* 星星隨標題縮放 */
    }

    .feature-detail-title {
        font-size: 18px; /* 手機版主標題加大 */
        line-height: 36px;
        margin-bottom: 10px !important;
    }

    .feature-detail-note {
        font-size: 14px;
        margin-bottom: 0; /* 與下方圖片拉開距離 */
    }

    .process-flow-wrapper {
        padding-left: 0; /* 移除桌面版的左邊距 */
    }

    /* 針對手機版圖片的特別標註文字 (如果圖片中未包含) */
    .process-img {
        max-width: 100%;
        width: 100%; /* 讓圖片在手機屏上稍微縮小，留出兩邊呼吸位 */
    }
}

/* 特點2 專屬背景 (如果與特點1略有不同) */
.feature-2-bg {
    background-color: #ffffff; /* 或者根據設計稿調整背景色 */
    padding: 80px 0;
}

/* 標籤與星星樣式沿用特點1，確保一致性 */
.feature-tag-main {
    color: #E08277;
    font-size: 32px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.tag-star-icon {
    width: 32px;
    height: auto;
    margin-right: 12px;
}

/* 特點2 標題與內文 */
.feature-sub-title {
    font-size: 20px;
    color: #666666;
    font-weight: bold;
    line-height: 1.4;
}

.feature-description p {
    font-size: 16px;
    color: #666666;
    line-height: 32px;
    margin-bottom: 20px;
}

/* 底部腳註細字 */

.feature-detail-footnotes p {
    font-size: 12px;
    color: #999999;
    line-height: 1.6;
    margin-bottom: 5px;
}

.feature-detail-footnotes a {
    color: #007bff;
    text-decoration: underline;
}

/* 圖片容器微調 */
.nutrition-img {
    max-width: 100%;
    height: auto;
}

/* 桌面版大螢幕的文字間距 */
@media (min-width: 992px) {
    .ps-lg-5 {
        padding-left: 3rem !important;
    }
}

/* --- 特點 2 手機版適配 --- */
@media (max-width: 991px) {
    .feature-2-bg {
        padding: 40px 15px;
    
    }

    .feature-tag-main {
        font-size: 28px; /* 根據手機版 layout 增大標題 */
        margin-bottom: 25px !important;
    }

    .tag-star-icon {
        width: 32px;
    }

    .feature-sub-title {
        font-size: 18px; /* 加大特點標題 */
        line-height: 36px;
        color: #666666;
        margin-bottom: 20px !important;
    }

    .feature-description p {
        font-size: 16px;
        line-height: 32px;
        text-align: left; /* 內文段落維持左對齊或兩端對齊，方便手機閱讀 */
        margin-bottom: 20px;
    }

    .feature-detail-footnotes {
        text-align: left; /* 註解維持左對齊 */
        margin-bottom: 40px; /* 與下方圖片拉開距離 */
    }

    .feature-image-wrapper {
       
    }

    .nutrition-img {
        max-width: 95%; /* 讓圓餅圖在手機上佔據較大比例 */
        margin: 0 auto;
    }

    .nutrition-img.d-block {
        max-width: 100%; /* 垂直圖可以佔滿寬度 */
        height: auto;
    }
}


/* 特點 3 背景與間距 */
.feature-3-bg {
    background-color: #F8F9F9; /* 淺灰色背景，與特點 2 區隔 */
    padding: 80px 0;
}



.tag-star-icon {
    width: 32px;
    height: auto;
    margin-right: 12px;
}

/* 文字層次 */


.feature-mini-title {
    font-size: 18px;
    color: #666666;
    font-weight: bold;
    line-height: 1.6;
}

.feature-description p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.feature-main-image {
    padding:30px;
}


.food-img {
    max-width: 100%;
    height: auto;
}

/* --- 特點 3 手機版適配 --- */
@media (max-width: 991px) {
    .feature-3-bg {
        padding: 40px 15px;
    }

   

    .tag-star-icon {
        width: 38px;
    }

  

    /* 內文描述 */
    .feature-description p {
        font-size: 18px;
        line-height: 1.8;
        text-align: left; /* 段落維持左對齊方便閱讀 */
        margin-bottom: 20px;
    }

    /* 手機版手持圖間距 */
    .feature-main-image {
        padding: 0 !important;
        margin: 30px 0;
    }

    /* 小標題 */
    .feature-mini-title {
        font-size: 18px;
        line-height: 36px;
        color: #666666;
        margin-bottom: 20px !important;
    }

    /* 食物圖片 */
    .food-comparison-wrapper {
        margin-top: 30px;
    }

    .food-img {
        max-width: 100%;
        width: 100%; /* 手機垂直圖佔滿 */
    }

    /* 移除桌面版縮進 */
    .pe-lg-5 {
        padding-right: 0 !important;
    }
}