* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: "PingFang TC", "Microsoft JhengHei", sans-serif; 
}

body {
    background-color: #FFFFFF;
    color: #333333;
    overflow-x: hidden;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px;
    width: 100%;
}







/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 【Home】hero ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 【Home】hero ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 【Home】hero ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/



.hero-slider {
    width: 100%;
    height: 650px;            /* 固定高度值 */
    position: relative;
    overflow: hidden;
    background-color: #000000; /* 預設底色 */
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 漸層遮罩層 */
.slide-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

/* 文字內容排版區 */
.slide-content {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    color: #FFFFFF; /* 固定白色 */
}

.slide-content h1 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content .title {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}




.slide-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* 廣告按鈕樣式 */
.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #df7135; /* 固定橘色碼 */
    color: #FFFFFF;           /* 固定白色碼 */
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    width: fit-content;
    /* 轉場動畫使用固定數值與時間 */
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

.hero-btn:hover {
    background-color: #6B4226; /* 固定 Logo 棕色碼 */
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Swiper 分頁與左右控制鈕樣式（不使用全域變數覆蓋） */
.hero-slider .swiper-button-next, 
.hero-slider .swiper-button-prev { 
    color: #FFFFFF; 
}

.hero-slider .swiper-pagination-bullet-active { 
    background: #df7135; 
    opacity: 1;
}

/* 文字淡入進場動畫 */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-content h1, 
.slide-content .title,
.slide-content p, 
.slide-content .hero-btn {
    opacity: 0;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}

.swiper-slide-active .slide-content h1,
.swiper-slide-active .slide-content .title,
.swiper-slide-active .slide-content p,
.swiper-slide-active .slide-content .hero-btn {
    animation-name: slideInLeft;
}

.swiper-slide-active .slide-content h1 { animation-duration: 0.8s; animation-delay: 0.3s; }
.swiper-slide-active .slide-content .title { animation-duration: 0.8s; animation-delay: 0.3s; }
.swiper-slide-active .slide-content p { animation-duration: 0.8s; animation-delay: 0.6s; }
.swiper-slide-active .slide-content .hero-btn { animation-duration: 0.8s; animation-delay: 0.9s; }

/* Banner 手機版響應式數值修正 */
@media (max-width: 768px) {
    .hero-slider { height: 450px; }
    .slide-content h1 { font-size: 32px; }
    .slide-content .title { font-size: 32px; }
    .slide-content p { font-size: 16px; }
    .slide-overlay { background: rgba(0, 0, 0, 0.4); } 
}



/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 【Home】合作廠商 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 【Home】合作廠商 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 【Home】合作廠商 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/


/* 合作 */
.partners-text {
    padding: 15px;
    text-align: center;
    background: #fff;
    font-weight: bold;
    color: #555;
    border-bottom: 1px solid #eee;
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 【Home】products ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 【Home】products ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 【Home】products ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ==========================================================================
   第一層：最外層區塊
   ========================================================================== */
.i-products {
    padding: 60px 0;
    background: #f4f7f6;
}

/* 第二層：Container */
.i-products .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 第三層：頁首與網格 */
.i-products .header {
    padding: 20px 20px 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* 預設桌機大螢幕：一列四欄 */
.i-products .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* 第四層：頁首內元素 */
.i-products .header .title {
    color: #6B4226;
    font-size: 28px;
    font-weight: bold;
}

.i-products .header .subtitle {
    margin-top: 20px;
    line-height: 1.8;
    color: #666;
    font-size: 16px;
}

/* 第四層：網格內的產品卡片與各項元件 */
.i-products .grid .card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.i-products .grid .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* 視覺展示區域 */
.i-products .grid .card-display .img-container {
    position: relative;
    aspect-ratio: 1 / 1;
    background-color: #fafafa;
    overflow: hidden;
}

.i-products .grid .card-display .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 狀態標籤基礎樣式 */
.i-products .grid .card-display .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 2;
    color: #fff;
}

/* 圖片左上角動態行銷標籤：改為寬度自適應防止中文字數拉長破版 */
.i-products .grid .card-display .badge-promo { 
    background-color: #e74c3c; 
    width: auto;
    min-width: 60px;
    white-space: nowrap;
}

/* 已售完標籤樣式 */
.i-products .grid .card-display .badge-soldout {
    background-color: #555555;
    z-index: 4;
}

/* 🌟 新增：圖片中央缺貨中顯眼大遮罩 */
.i-products .grid .card-display .stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.i-products .grid .card-display .stock-overlay .overlay-text {
    background: rgba(230, 57, 70, 0.9); 
    color: #ffffff;
    font-weight: bold;
    font-size: 1.25rem;
    padding: 12px 24px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    letter-spacing: 1px;
    line-height: 1.2;
}

.i-products .grid .card-display .stock-overlay .overlay-text .en-text {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: 2px;
    opacity: 0.9;
}

/* 資訊內文區塊 */
.i-products .grid .card-display .content-box {
    padding: 20px;
    flex-grow: 1;
}

/* 🌟 產品標題優化：改為高質感深炭黑，並嚴格限制最多顯示兩行 */
.i-products .grid .card-display .product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2.8em;
    line-height: 1.4em;
    margin-bottom: 6px;
    font-size: 16px;
    color: #2b2b2b; /* 改為不要太黑的優雅深炭黑 */
    font-weight: 800;
}

/* 🌟 屬性標籤容器優化：移到下方，且強制固定高度，即便沒有資料也能完美對齊 */
.i-products .grid .card-display .category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    height: 22px; 
    margin-bottom: 12px;
    overflow: hidden;
}

.i-products .grid .card-display .tag {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    line-height: 1.4;
    background: #e8f5e9; 
    color: #2e7d32;
}

/* 價格行佈局 */
.i-products .grid .card-display .price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.i-products .grid .card-display .price-main {
    font-size: 24px;
    font-weight: 900;
    color: #df7135;
}

.i-products .grid .card-display .price-main small {
    font-size: 14px;
    margin-right: 2px;
}

.i-products .grid .card-display .price-old {
    font-size: 13px;
    color: #bbb;
    text-decoration: line-through;
}

/* 底部按鈕操作區 */
.i-products .grid .card-action {
    padding: 0 20px 20px;
}

/* 🌟 方案 B 優化：點擊跳轉詳細頁的質感暖淺色底按鈕，移除 important 同時強化 CSS 權重路徑 */
.i-products .grid .btn-add-cart {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s ease, color 0.25s ease;
    
    background: #f4eee1; /* 質感暖淺米色底 */
    color: #5d4037;      /* 深褐色文字 */
}

/* 滑鼠移入：優雅轉為品牌深褐底白字 */
.i-products .grid .btn-add-cart:hover {
    background: #6B4226;
    color: #fff;
}

/* 🌟 缺貨時按鈕的淺灰色特別樣式 */
.i-products .grid .btn-soldout,
.i-products .grid .btn-soldout:hover {
    background-color: #e0e0e0;
    color: #777777;
    border: 1px solid #d0d0d0;
    cursor: default;
}

/* ==========================================================================
   RWD 響應式斷點設定 (權重路徑優化)
   ========================================================================== */

/* 平板縮小寬度（1024px 以下） */
@media (max-width: 1024px) {
    .i-products .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* 手機裝置（600px 以下）強制一列二欄 */
@media (max-width: 600px) {
    .i-products {
        padding: 40px 0;
    }
    .i-products .header {
        padding: 10px 15px 40px;
    }
    .i-products .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px; 
        padding: 0 10px;
    }
    
    .i-products .grid .card-display .content-box {
        padding: 12px;
    }
    .i-products .grid .card-display .product-title {
        font-size: 15px; 
        margin-bottom: 4px;
    }
    
    .i-products .grid .card-display .price-main {
        font-size: 18px;
    }
    
    .i-products .grid .card-action {
        padding: 0 12px 12px;
    }
    .i-products .grid .btn-add-cart {
        padding: 8px;
        font-size: 13px;
        border-radius: 4px;
    }
}



/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 【Home】news ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 【Home】news ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 【Home】news ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/

    /* 第一層：最外層名稱 */
    .i-news {
        width: 100%;
        padding: 40px 0;
        background-color: #fcfbfa;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans TC", sans-serif;
    }

    /* 第二層：container 核心容器 */
    .i-news .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* 第三層：好康優惠主標題區塊 */
    .i-news .header {
        text-align: center;
        margin-bottom: 35px;
    }
    /* 第四層：大標題內元件遞降 */
    .i-news .header .title {
        font-size: 26px;
        color: #2c1a11;
        margin: 0 0 6px 0;
        font-weight: bold;
        letter-spacing: 1px;
    }
    .i-news .header .subtitle {
        font-size: 13px;
        color: #bd5b2d;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    /* 第三層：手機版專屬快選標籤列外殼 (桌機版預設隱藏) */
    .i-news .mobile-tabs-wrapper {
        display: none;
    }

    /* 第三層：桌機/手機共用主看板外殼 */
    .i-news .promo-board {
        width: 100%;
        background-color: #ffffff;
        border: 1px solid #e8e2da;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.02);
        overflow: hidden;
        margin-bottom: 30px; /* 預留與下方更多按鈕的乾淨間距 */
    }

    /* 第四層：主看板內部的左右雙欄格線布局 */
    .i-news .promo-board .grid {
        display: flex;
        width: 100%;
    }

    /* 第四層：左側側邊欄選單區塊 (桌機專屬選單) */
    .i-news .promo-board .sidebar {
        width: 30%;
        background-color: #fdfcfb;
        border-right: 1px solid #e8e2da;
        padding: 20px;
    }

    /* 第五層：側邊欄小標題 */
    .i-news .promo-board .sidebar .menu-title {
        font-size: 13px;
        color: #888888;
        font-weight: bold;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    /* 第五層：側邊欄分頁按鈕項目 */
    .i-news .promo-board .sidebar .tab-item {
        background-color: #ffffff;
        color: #4a2711;
        border: 1px solid #e8e2da;
        padding: 14px 18px;
        border-radius: 8px;
        margin-bottom: 10px;
        cursor: pointer;
        font-size: 15px;
        transition: all 0.25s ease;
        display: flex;
        align-items: center;
    }
    .i-news .promo-board .sidebar .tab-item:last-child {
        margin-bottom: 0;
    }
    /* 第六層：左側活動數字引導圖示 */
    .i-news .promo-board .sidebar .tab-item .num-prefix {
        font-size: 12px;
        font-weight: bold;
        color: #bd5b2d;
        margin-right: 8px;
        font-family: Arial, sans-serif;
    }
    .i-news .promo-board .sidebar .tab-item:hover {
        border-color: #bd5b2d;
        background-color: #fffcfb;
    }
    /* 第六層：被選取的活動 Tab 狀態 */
    .i-news .promo-board .sidebar .tab-item.active {
        background-color: #bd5b2d;
        color: #ffffff;
        border-color: #bd5b2d;
        font-weight: bold;
    }
    .i-news .promo-board .sidebar .tab-item.active .num-prefix {
        color: #ffffff;
    }

    /* 第四層：右側主要內容詳情展示區 */
    .i-news .promo-board .content-area {
        width: 70%;
        padding: 40px;
        background-color: #ffffff;
    }

    /* 第五層：詳情面板基礎隱藏設定 */
    .i-news .promo-board .content-area .panel {
        display: none;
    }
    /* 第六層：被點選面板顯示狀態 */
    .i-news .promo-board .content-area .panel.active {
        display: block;
    }

    /* 第六層：面板內部的橫向排列 (大圖 + 內文) */
    .i-news .promo-board .content-area .panel .panel-grid {
        display: flex;
        align-items: flex-start;
    }

    /* 第七層：面板內部大圖區塊 */
    .i-news .promo-board .content-area .panel .panel-grid .img-box {
        width: 40%;
        padding-right: 20px;
    }
    /* 第八層：等比 1:1 正方形防破版安全容器 */
    .i-news .promo-board .content-area .panel .panel-grid .img-box .ratio-square {
        width: 100%;
        padding-bottom: 100%;
        position: relative;
        background-color: #f5ded1;
        border-radius: 8px;
        overflow: hidden;
    }
    /* 第九層：大圖內部實體圖片 */
    .i-news .promo-board .content-area .panel .panel-grid .img-box .ratio-square img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    .i-news .promo-board .content-area .panel .panel-grid .img-box .ratio-square .img-placeholder {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #4a2711;
        font-weight: bold;
        font-size: 14px;
        padding: 15px;
    }

    /* 第七層：面板內部文字資訊區塊 */
    .i-news .promo-board .content-area .panel .panel-grid .info-box {
        width: 60%;
        padding-left: 10px;
    }
    /* 第八層：活動促銷狀態標籤 */
    .i-news .promo-board .content-area .panel .panel-grid .info-box .status-badge {
        display: inline-block;
        background-color: #fdf2ec;
        color: #bd5b2d;
        font-size: 11px;
        font-weight: bold;
        padding: 2px 10px;
        border-radius: 20px;
        border: 1px solid #f3dacb;
    }
    /* 第八層：活動主標題 */
    .i-news .promo-board .content-area .panel .panel-grid .info-box .main-title {
        font-size: 20px;
        color: #2c1a11;
        margin: 12px 0 5px 0;
        font-weight: bold;
        line-height: 1.4;
    }
    /* 第八層：活動截止日期 / 小標 */
    .i-news .promo-board .content-area .panel .panel-grid .info-box .date-text {
        font-size: 13px;
        color: #888888;
        margin: 0 0 15px 0;
    }
    /* 第八層：防溢出純文字簡介區塊 (高度控制與文字美觀) */
    .i-news .promo-board .content-area .panel .panel-grid .info-box .summary-text {
        font-size: 14.5px;
        color: #555555;
        line-height: 1.7;
        margin: 0 0 25px 0;
        height: 74px; /* 三行高度上限，完全對齊 */
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    /* 第八層：主要商城詳細頁導購與次要 LINE 客服按鈕 */
    .i-news .promo-board .content-area .panel .panel-grid .info-box .btn-primary {
        display: block;
        background-color: #bd5b2d;
        color: #ffffff;
        text-align: center;
        padding: 12px;
        font-size: 15px;
        font-weight: bold;
        border-radius: 6px;
        text-decoration: none;
        margin-bottom: 10px;
    }
    .i-news .promo-board .content-area .panel .panel-grid .info-box .btn-primary:hover {
        background-color: #9e4620;
    }
    .i-news .promo-board .content-area .panel .panel-grid .info-box .btn-secondary {
        display: block;
        text-align: center;
        font-size: 12px;
        color: #4a7c59;
        text-decoration: none;
        font-weight: bold;
    }

    /* 🌟【第三層升級】：主看板最下方「中央完美居中」查看更多列 */
    .i-news .more-news-bar {
        text-align: center;
        margin-top: 10px;
    }
    /* 第四層：精緻簡約的膠囊型連動按鈕 */
    .i-news .more-news-bar .more-news-link {
        display: inline-block;
        font-size: 14px;
        color: #bd5b2d;
        text-decoration: none;
        font-weight: bold;
        padding: 11px 28px;
        border: 1px solid #e8e2da;
        background-color: #ffffff;
        border-radius: 30px; /* 膠囊狀，視覺親和力更高 */
        box-shadow: 0 2px 6px rgba(0,0,0,0.02);
        transition: all 0.25s ease;
    }
    .i-news .more-news-bar .more-news-link:hover {
        background-color: #bd5b2d;
        color: #ffffff;
        border-color: #bd5b2d;
        box-shadow: 0 4px 12px rgba(189, 91, 45, 0.15);
    }

    /* ==========================================================================
       【i-news 區塊手機版 RWD】完全隱藏重複選單、加入露邊漸層
       ========================================================================== */
    @media screen and (max-width: 768px) {
        
        /* 強制將桌機版的選單區塊在手機版徹底隱藏 */
        .i-news .promo-board .sidebar {
            display: none !important;
        }

        /* 解除桌機版主板的 Flex 網格，改為直式上下堆疊結構 */
        .i-news .promo-board .grid {
            display: block;
        }
        .i-news .promo-board {
            background-color: transparent;
            box-shadow: none;
            border: none;
            border-radius: 0;
            margin-bottom: 15px;
        }

        /* 啟用手機版專屬橫滑分類條外殼 */
        .i-news .mobile-tabs-wrapper {
            display: block;
            position: relative;
            width: 100%;
            margin-bottom: 15px;
        }
        .i-news .mobile-tabs-wrapper::after {
            content: "";
            position: absolute;
            top: 5px; right: 0;
            width: 45px;
            height: calc(100% - 17px);
            background: linear-gradient(to right, rgba(252, 251, 250, 0) 0%, rgba(252, 251, 250, 1) 100%);
            pointer-events: none;
            z-index: 2;
        }

        .i-news .mobile-tabs-wrapper .scroll-box {
            width: 100%;
            overflow-x: auto;
            white-space: nowrap;
            padding: 5px 20px 12px 5px;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }
        .i-news .mobile-tabs-wrapper .scroll-box::-webkit-scrollbar {
            display: none;
        }

        .i-news .mobile-tabs-wrapper .scroll-box .tab-btn {
            display: inline-block;
            padding: 10px 20px;
            margin-right: 8px;
            font-size: 14px;
            color: #4a2711;
            background-color: #ffffff;
            border: 1px solid #e8e2da;
            border-radius: 30px;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
            transition: transform 0.15s ease;
        }
        .i-news .mobile-tabs-wrapper .scroll-box .tab-btn:last-child {
            margin-right: 40px;
        }
        .i-news .mobile-tabs-wrapper .scroll-box .tab-btn:active {
            transform: scale(0.95);
        }
        .i-news .mobile-tabs-wrapper .scroll-box .tab-btn.active {
            background-color: #bd5b2d !important;
            color: #ffffff !important;
            border-color: #bd5b2d !important;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(189, 91, 45, 0.15);
        }

        .i-news .promo-board .content-area {
            background-color: #ffffff;
            border: 1px solid #e8e2da;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(189,91,45,0.02);
            width: 100% !important;
        }

        .i-news .promo-board .content-area .panel .panel-grid {
            display: block;
        }
        .i-news .promo-board .content-area .panel .panel-grid .img-box,
        .i-news .promo-board .content-area .panel .panel-grid .info-box {
            width: 100% !important;
            padding: 0 !important;
        }

        .i-news .promo-board .content-area .panel .panel-grid .img-box {
            margin-bottom: 15px;
        }
        .i-news .promo-board .content-area .panel .panel-grid .img-box .ratio-square {
            padding-bottom: 52%; 
        }
        
        .i-news .promo-board .content-area .panel .panel-grid .info-box .summary-text {
            height: 68px;
            margin-bottom: 20px;
        }

        .i-news .promo-board .content-area .panel .panel-grid .info-box .btn-primary {
            padding: 14px 15px;
            font-size: 15px;
            margin-bottom: 12px;
        }
        .i-news .promo-board .content-area .panel .panel-grid .info-box .btn-secondary {
            padding: 6px 0;
            font-size: 13px;
        }

        /* 更多按鈕在手機版微調間距，維持視覺大器 */
        .i-news .more-news-bar {
            margin-top: 5px;
        }
        .i-news .more-news-bar .more-news-link {
            width: 100%; /* 手機版舒展為滿版大按鈕，極度好操作 */
            padding: 13px;
        }
    }


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 【Home】blog ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 【Home】blog ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 【Home】blog ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/


    /* ==========================================================================
       【第一層：最外層名稱】
       ========================================================================== */
    .i-blog {
        width: 100%;
        padding: 60px 0;
        background-color: #ffffff;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans TC", sans-serif;
    }

    /* ==========================================================================
       【第二層：container 核心容器】
       ========================================================================== */
    .i-blog .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* ==========================================================================
       【第三層：區塊大標頭 / 輪播、卡片本體 / 底部按鈕列】
       ========================================================================== */
    .i-blog .header {
        text-align: center;
        margin-bottom: 40px;
    }
    .i-blog .blog-carousel {
        margin-bottom: 30px;
    }
    .i-blog .more-btn-bar {
        text-align: center;
        margin-top: 20px;
    }

    /* ==========================================================================
       【第四層：各區塊內多元件遞降】
       ========================================================================== */
    .i-blog .header .title {
        font-size: 26px;
        color: #2c1a11;
        margin: 0 0 6px 0;
        font-weight: bold;
        letter-spacing: 1px;
    }
    .i-blog .header .subtitle {
        font-size: 13px;
        color: #bd5b2d;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: bold;
    }
    .i-blog .blog-carousel .card-item {
        display: flex;
        flex-direction: column;
        background-color: #ffffff;
        border: 1px solid #e8e2da;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(44, 26, 17, 0.02);
        text-decoration: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin: 10px 5px;
    }
    .i-blog .blog-carousel .card-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(189, 91, 45, 0.08);
    }
    .i-blog .more-btn-bar .more-link {
        display: inline-block;
        font-size: 14px;
        color: #4a2711;
        text-decoration: none;
        font-weight: bold;
        padding: 11px 28px;
        border: 1px solid #e8e2da;
        background-color: #ffffff;
        border-radius: 30px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.01);
        transition: all 0.25s ease;
    }
    .i-blog .more-btn-bar .more-link:hover {
        background-color: #4a2711;
        color: #ffffff;
        border-color: #4a2711;
        box-shadow: 0 4px 12px rgba(74, 39, 17, 0.15);
    }

    /* ==========================================================================
       【第五層：卡片內部核心區塊 (圖片外殼 / 文字外殼)】
       ========================================================================== */
    .i-blog .blog-carousel .card-item .img-box {
        width: 100%;
        padding-bottom: 68%;
        position: relative;
        background-color: #f5ded1;
        overflow: hidden;
    }
    .i-blog .blog-carousel .card-item .info-box {
        padding: 22px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    /* ==========================================================================
       【第六層：元件細部標籤、圖檔、文字細項】
       ========================================================================== */
    .i-blog .blog-carousel .card-item .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0; left: 0;
        transition: transform 0.5s ease;
    }
    .i-blog .blog-carousel .card-item:hover .img-box img {
        transform: scale(1.06);
    }
    .i-blog .blog-carousel .card-item .img-box .card-tag {
        position: absolute;
        bottom: 12px;
        left: 12px;
        background-color: rgba(44, 26, 17, 0.85);
        color: #ffffff;
        font-size: 11px;
        padding: 3px 10px;
        border-radius: 4px;
        font-weight: bold;
        letter-spacing: 0.5px;
        z-index: 2;
    }
    .i-blog .blog-carousel .card-item .info-box .category {
        font-size: 12px;
        color: #bd5b2d;
        font-weight: bold;
        margin-bottom: 8px;
    }
    .i-blog .blog-carousel .card-item .info-box .card-title {
        font-size: 17px;
        color: #2c1a11;
        font-weight: bold;
        margin: 0 0 10px 0;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .i-blog .blog-carousel .card-item .info-box .summary {
        font-size: 13.5px;
        color: #777777;
        line-height: 1.6;
        margin: 0 0 15px 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .i-blog .blog-carousel .card-item .info-box .read-more {
        margin-top: auto;
        font-size: 13px;
        color: #4a2711;
        font-weight: bold;
        display: flex;
        align-items: center;
        transition: color 0.2s;
    }
    .i-blog .blog-carousel .card-item:hover .info-box .read-more {
        color: #bd5b2d;
    }

    /* ==========================================================================
       【Owl Carousel 點點控制項覆寫】
       ========================================================================== */
    .i-blog .blog-carousel .owl-dots {
        text-align: center;
        margin-top: 15px;
    }
    .i-blog .blog-carousel .owl-dots .owl-dot span {
        width: 8px;
        height: 8px;
        margin: 0 5px;
        background: #e8e2da;
        display: inline-block;
        border-radius: 50%;
        transition: all 0.2s ease;
    }
    .i-blog .blog-carousel .owl-dots .owl-dot.active span {
        background: #bd5b2d;
        width: 20px;
        border-radius: 4px;
    }

    /* ==========================================================================
       【RWD 手機版微調】
       ========================================================================== */
    @media screen and (max-width: 768px) {
        .i-blog {
            padding: 50px 0;
        }
        .i-blog .header {
            margin-bottom: 25px;
        }
        .i-blog .header .title {
            font-size: 22px;
        }
        .i-blog .more-btn-bar .more-link {
            width: 100%;
            padding: 13px;
        }
    }


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 【Home】平台 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 【Home】平台 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 【Home】平台 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/


        /* 滿版容器 */
        .mobile-optimized-section {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", sans-serif;
            display: flex;
            flex-direction: column; /* 手機原生由上而下 */
            width: 100%;
            background-color: #333; /* 防漏白底色 */
            overflow: hidden;
        }

        /* 單一平台區塊 */
        .mobile-col {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 55px 25px 75px 25px; /* 特意留出底部空間給斜切線 */
            text-align: center;
            text-decoration: none;
            color: #ffffff;
            min-height: 260px; /* 控制單個區塊高度，讓兩個平台在同一個手機螢幕盡可能重疊可見 */
            transition: background-color 0.3s ease;
        }

        /* ------------------ 7-11 賣貨便 (上方) ------------------ */
        .col-seven {
            background-color: #f48120; /* 7-11 官方標準橘 */
            z-index: 2;
        }
        
        /* 核心密技：利用偽元素做出大氣的動態斜切感，打破死板的水平分割線 */
        .col-seven::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: 0;
            width: 100%;
            height: 60px;
            background-color: #f48120;
            transform: skewY(-4deg); /* 斜切角度 */
            z-index: 1;
        }

        /* ------------------ 全家 好賣＋ (下方) ------------------ */
        .col-fami {
            background-color: #0054a6; /* 全家 官方標準深藍 */
            padding: 75px 25px 55px 25px; /* 上方加寬配合斜切 */
            z-index: 0;
        }

        /* ------------------ 內容細節 (結構縮減，專為手機易讀設計) ------------------ */
        .mobile-optimized-section .content-box {
            position: relative;
            z-index: 3; /* 確保文字在斜切線上方 */
            display: flex;
            flex-direction: column;
   
            width: 100%;
            max-width: 400px;
                align-items: center;
            
        }

        /* 低調的安全感徽章 */
        .trust-badge {
            font-size: 11px;
            letter-spacing: 2px;
            font-weight: 700;
            background-color: rgba(255, 255, 255, 0.2);
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 12px;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .main-title {
            font-size: 34px; /* 手機黃金放大字體 */
            font-weight: 900;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
        }

        .sub-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: 1px;
            margin-bottom: 25px;
        }

        /* 行動裝置專用：長條型滿版點擊鈕 (符合大拇指按壓熱區) */
        .mobile-action-btn {
            width: 85%;
            max-width: 280px;
            background-color: #ffffff;
            padding: 12px 0;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 1px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        /* 按鈕文字顏色隨官方色變換 */
        .col-seven .mobile-action-btn { color: #f48120; }
        .col-fami .mobile-action-btn { color: #0054a6; }

        /* 電腦版 RWD (如果有人用電腦看，自動轉回大器的左右對開) */
        @media (min-width: 769px) {
            .mobile-optimized-section {
                flex-direction: row;
                min-height: 500px;
            }
            .mobile-col {
                flex: 1;
                padding: 80px 40px;
                min-height: auto;
            }
            .col-seven::after {
                display: none; /* 電腦版取消斜切 */
            }
            .main-title {
                font-size: 42px;
            }
            /* 電腦版滑過特效 */
            .col-seven:hover { background-color: #e07216; }
            .col-fami:hover { background-color: #00468c; }
        }

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ footer ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ footer ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ footer ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
footer {
    background-color: #ffffff;
    font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

/* --- 1. 頂部標章區 (白底) --- */
.spec-bar {
    background-color: #fcfcfc;
    border-bottom: 1px solid #f0f0f0;
    padding: 40px 0;
}
.spec-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
}
.spec-box { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}
.spec-box i { 
    font-size: 28px; 
    color: #df7135; /* 陽光橘 */
}

.spec-text .spec-title {
    font-size: 16px; /* 依原本 h5 尺寸微調 */
    font-weight: 800;
    color: #6B4226;
     margin-bottom: 4px; 
}
.spec-text p { 
    font-size: 13px; 
    color: #999999; 
    margin: 0; 
}

/* --- 2. 中間主資訊區 --- */
.main-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr; 
    gap: 40px;
    align-items: start;
}
.brand-story h3, 
.column h4 { 
    color: #6B4226; /* Logo 棕 */
    margin-bottom: 25px; 
    font-weight: 900; 
    font-size: 18px;
}
.brand-story p { 
    font-size: 15px; 
    color: #555555; 
    line-height: 1.8; 
    margin: 0 0 15px;
}
.footer-list { 
    list-style: none; 
    padding: 0; 
}
.footer-list li { 
    margin-bottom: 15px; 
}
.footer-list a { 
    color: #555555; 
    text-decoration: none; 
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}
.footer-list a:hover { 
    color: #df7135; /* 陽光橘 */
    padding-left: 8px; 
}

/* 聯絡方式超連結 */
.contact-info { 
    list-style: none; 
    padding: 0; 
}
.contact-info li { 
    margin-bottom: 15px; 
}
.contact-info a { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    color: #555555; 
    text-decoration: none; 
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}
.contact-info div { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    color: #555555; 
    text-decoration: none; 
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}



.contact-info a:hover { 
    color: #df7135; /* 陽光橘 */
}
.contact-info i { 
    color: #df7135; /* 陽光橘 */
    width: 20px; 
    text-align: center; 
}

/* 社群圖示 */
.sns { 
    display: flex; 
    gap: 20px; 
    margin-top: 20px;
}
.sns a { 
    color: #6B4226; /* Logo 棕 */
    font-size: 22px; 
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}
.sns a:hover {
    color: #df7135; /* 陽光橘 */
}

/* --- 3. 底部雞群滿版背景區塊 --- */
.chicken-wide-bg {
    width: 100%;
    height: 180px; 
    background-image: url('/images/icon/chicken.webp'); 
    background-repeat: repeat-x; 
    background-position: center bottom;
    background-size: contain; 
    background-color: #ffffff;
}




/* --- 4. 版權條 --- */
.bottom-bar {
    background-color: #6B4226; /* Logo 棕 */
    color: rgba(255, 255, 255, 0.8);
    padding: 25px 0;
}
.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    font-size: 14px;
    justify-content: center;
}
.bottom-icons {
    display: flex;
    gap: 15px;
    font-size: 18px;
}

/* --- RWD 手機版回應式設計 --- */
@media (max-width: 1024px) {
    .main-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
        padding: 50px 20px;
    }
    .spec-container { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 25px 20px;
    }
    .chicken-wide-bg { 
        height: 120px; 
    }
    .bottom-container {
        flex-direction: column;
        gap: 13px;
        text-align: center;
    }
}