/* =============================================================
   Molos 官方網站 核心樣式表
   版本：V3.0  整理優化版
   結構：
     00. CSS 變數（品牌色系）
     01. 全域基礎設定
     02. 導覽列
     03. 漢堡選單 & 遮罩層
     04. 按鈕
     05. Hero Banner 主視覺
     06. 產品區塊（首頁）
     07. 安心保證區塊
     08. 關於我們頁面
     09. 最新消息頁面
     10. 產品詳情頁面
     11. 頁籤（Tabs）
     12. 食用建議區塊
     13. 檢驗報告區塊
     14. 購物車側欄（預留）
     15. Modal / Lightbox
     16. 響應式（RWD）
   ============================================================= */

/* ============================================================
   00. CSS 變數 — 品牌色系與全域參數
   ============================================================ */
:root {
    --primary-orange:   #FF9D42;   /* 主色：溫暖橘，用於按鈕、標題、強調 */
    --secondary-yellow: #FFF9F2;   /* 輔色：淺米黃，用於區塊背景 */
    --accent-yellow:    #FFD28D;   /* 強調黃，用於特殊裝飾 */
    --text-color:       #5A4B40;   /* 主文字色：溫馨深咖啡 */
    --text-dark:        #5A4B40;   /* 同上，供部分元件獨立引用 */
    --white:            #FFFFFF;
    --transition:       all 0.3s ease;
}


/* ============================================================
   01. 全域基礎設定
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   02. 導覽列
   ============================================================ */
.navbar {
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100 !important;   /* !important 確保覆蓋各頁面殘留的 inline style */
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.brand-logo {
    height: 80px;
    width: auto;
    transition: height 0.3s ease;
    max-height: 100%;
}

/* Logo 縮小（捲動時由 JS 加上 .nav-scrolled） */
.nav-scrolled .brand-logo {
    height: 60px;
}

/* 導覽連結 */
.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu ul li a {
    text-decoration: none;
    padding: 10px 20px;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu ul li a:hover {
    color: var(--primary-orange);
}


/* ============================================================
   03. 漢堡選單 & 遮罩層
   z-index 層級規劃：
     頁面一般內容        z-index: 預設
     navbar（sticky）    z-index: 100  （!important 覆蓋 inline style）
     遮罩層              z-index: 500  ← 蓋住頁面內容與 navbar 背景
     側滑選單            z-index: 600  ← 在遮罩之上，內容可操作
     漢堡按鈕            z-index: 601  ← 永遠可點擊
   ============================================================ */

/* 漢堡按鈕（桌機隱藏，手機顯示） */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--primary-orange);
    cursor: pointer;
    position: relative;
    z-index: 601;
    padding: 10px;
}

/* 半透明遮罩 */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* 選單開啟時，遮罩縮短至不蓋住右側選單區域 */
body.menu-open .menu-overlay {
    width: calc(100% - 210px);  /* 100% 減去選單寬度 */
}

/* 側滑選單：z-index 定義在全域，確保永遠高於遮罩層 */
.nav-menu {
    z-index: 600;
}

/* 選單開啟時：鎖定 body 捲動 */
body.menu-open {
    overflow: hidden;
}


/* ============================================================
   04. 按鈕
   ============================================================ */
.btn-primary {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 157, 66, 0.3);
    transition: transform 0.2s, background 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: #e68a35;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: var(--white);
}

/* 分類過濾按鈕 */
.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-orange);
    background: transparent;
    color: var(--primary-orange);
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
}


/* ============================================================
   05. Hero Banner 主視覺
   ============================================================ */
.hero-banner {
    height: 500px;
    background: var(--secondary-yellow) url('../images/hero-bg.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}


/* ============================================================
   06. 產品區塊（首頁產品列表）
   ============================================================ */
.product-section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    color: var(--primary-orange);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

/* 分類按鈕群組 */
.filter-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

/* 產品網格 */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}

/* 產品卡片 */
.product-card {
    flex: 0 1 300px;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(255, 157, 66, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* 確保卡片內按鈕不被遮蓋 */
.product-card .btn-primary {
    position: relative;
    z-index: 10;
}

/* 產品圖片容器 */
.product-img {
    width: 100%;
    height: 250px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
}

/* 產品資訊 */
.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.2rem;
    margin: 0 0 10px 0;
}

.product-info p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

/* 價格 */
.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-orange);
    display: block;
    margin: 10px 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 標籤徽章 */
.badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.cat-badge {
    background: #FFB347;
    color: var(--white);
}

/* 加入購物車圓形按鈕 */
.add-cart-btn {
    background: var(--secondary-yellow);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.add-cart-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
}

/* 數量 + 購物車按鈕列 */
.quantity-cart-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-cart-row input[type="number"] {
    width: 70px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
    font-size: 1rem;
}


/* ============================================================
   07. 安心保證區塊（首頁 Trust Section）
   ============================================================ */
.trust-section {
    background-color: var(--white);
    padding: 60px 0;
    margin-top: 40px;
    border-top: 5px solid var(--secondary-yellow);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.trust-item i {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.trust-item h4 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.trust-item p {
    color: #777;
    font-size: 0.95rem;
}

/* 圖示圓形外框 */
.trust-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.trust-icon-wrapper img {
    width: 100%;
    height: auto;
}

.trust-item:hover .trust-icon-wrapper {
    transform: scale(1.1);
}


/* ============================================================
   08. 關於我們頁面
   ============================================================ */
.about-section {
    padding: 80px 20px;
}

.about-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.about-col {
    flex: 1;
    min-width: 300px;
}

/* 圖片側 */
.image-wrapper {
    position: relative;
    padding: 20px;
}

.image-wrapper img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
    position: relative;
    z-index: 2;
}

/* 裝飾色塊背景 */
.image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background: var(--secondary-yellow);
    border-radius: 40px;
    z-index: 1;
}

/* 文字側 */
.text-side .sub-title {
    color: var(--primary-orange);
    font-weight: bold;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.text-side h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.text-side .content-p p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
}


/* ============================================================
   09. 最新消息頁面
   ============================================================ */

/* 新聞卡片 */
.news-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 157, 66, 0.15);
}

/* 圖片區 */
.news-img-box {
    position: relative;
    height: 200px;
    background-color: #f5f5f5;
}

.news-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 分類標籤 */
.news-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* 內文 */
.news-content {
    padding: 20px;
}

.news-content time {
    font-size: 0.85rem;
    color: #999;
}

.news-content h3 {
    margin: 10px 0;
    font-size: 1.25rem;
    color: var(--text-color);
}

.news-content p {
    color: #666;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-orange);
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9rem;
}

/* 分頁 */
.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 50%;
    text-decoration: none;
    color: #666;
    transition: var(--transition);
}

.page-link.active {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}


/* ============================================================
   10. 產品詳情頁面
   ============================================================ */

/* 特色卡片 */
.feature-card {
    background: var(--white);
    border-radius: 25px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #fdf2e8;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 157, 66, 0.12);
    border-color: var(--primary-orange);
}

.feature-icon {
    flex: 0 0 70px;
}

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

.feature-info h4 {
    margin: 0 0 10px 0;
    color: var(--text-dark);
    font-size: 1.15rem;
}

.feature-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #6d5d52;
    line-height: 1.6;
}

/* 特色細節網格 */
.feature-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* 舊版 feature-item（保留相容） */
.feature-item {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.feature-item:hover {
    box-shadow: 0 10px 20px rgba(255, 157, 66, 0.1);
    border-color: var(--primary-orange);
}

.feature-icon-box {
    flex: 0 0 80px;
    height: 80px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.feature-text h4 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
    margin: 0;
}


/* ============================================================
   11. 頁籤（Tabs）
   ============================================================ */
.tab-header {
    display: flex;
    justify-content: flex-start;
    border-bottom: 2px solid #f5f5f5;
    margin-bottom: 30px;
    gap: 15px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 10px;
    font-size: 1.15rem;
    cursor: pointer;
    color: #a0a0a0;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    font-family: 'Noto Sans TC', sans-serif;
    margin-right: 20px;
}

.tab-btn:hover {
    color: var(--primary-orange);
}

.tab-btn.active {
    color: var(--primary-orange);
    font-weight: 700;
}

/* 頁籤底線動畫 */
.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.tab-btn.active::after {
    width: 150%;
}

/* 頁籤內容區 */
.tab-content {
    display: none;
    padding: 20px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   12. 食用建議區塊
   ============================================================ */
.feeding-guide-container {
    padding: 20px 0;
}

/* 步驟圖解 */
.method-steps {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 50px;
    text-align: center;
}

.step-item {
    flex: 1;
}

.step-icon-bg {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 157, 66, 0.1);
    border: 2px solid var(--secondary-yellow);
}

.step-icon-bg img {
    width: 60px;
    height: auto;
}

.step-arrow {
    color: var(--primary-orange);
    font-size: 1.2rem;
    opacity: 0.5;
}

/* 體重餵食表格 */
.table-wrapper {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.pawi-table {
    width: 100%;
    border-collapse: collapse;
}

.pawi-table th {
    background: var(--secondary-yellow);
    color: var(--text-color);
    padding: 20px;
    font-weight: 700;
}

.pawi-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #fdf2e8;
}

/* 劑量膠囊樣式 */
.qty-pill {
    display: inline-block;
    padding: 5px 15px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 0.95rem;
    color: #777;
}

.qty-pill.orange {
    background: var(--primary-orange);
    color: var(--white);
}

/* 提示框 */
.feeding-notice-box {
    background: var(--secondary-yellow);
    border-left: 5px solid var(--primary-orange);
    padding: 20px;
    border-radius: 0 15px 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-color);
}

.feeding-notice-box i {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

/* 舊版餵食方式卡片（保留相容） */
.feeding-methods-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.method-card {
    flex: 1;
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    border: 1px solid #fdf2e8;
    transition: var(--transition);
}

.method-card:hover {
    background: var(--secondary-yellow);
    transform: translateY(-3px);
}

.method-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}


/* ============================================================
   13. 檢驗報告區塊
   ============================================================ */
.report-summary-box {
    display: flex;
    align-items: center;
    background: #fcfcfc;
    border-radius: 30px;
    padding: 40px;
    gap: 40px;
    border: 1px dashed #ddd;
}

.report-visual {
    position: relative;
    font-size: 4rem;
    color: var(--primary-orange);
}

.check-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #4caf50;
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
}

/* 安全認證圖示 */
.safety-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.safety-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-orange);
}

/* 報告預覽圖牆 */
.report-gallery-wall {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.report-preview-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    flex: 0 0 200px;
}

.report-preview-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.report-preview-card:hover img {
    transform: scale(1.05);
}

.preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 157, 66, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.report-preview-card:hover .preview-overlay {
    opacity: 1;
}


/* ============================================================
   14. 購物車側欄
   ============================================================ */

/* 遮罩層 */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* 側欄主體 */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;              /* 預設隱藏在右側外 */
    width: 380px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.12);
    z-index: 800;               /* 高於遮罩(700) */
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-sidebar.active {
    right: 0;
}

/* 側欄頂部標題列 */
.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 2px solid var(--secondary-yellow);
}

.cart-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-color);
}

.cart-header h3 i {
    color: var(--primary-orange);
    margin-right: 10px;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #aaa;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
}

.cart-close:hover {
    color: var(--primary-orange);
}

/* 側欄內容區（可捲動） */
.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
}

/* 空購物車提示 */
.cart-empty {
    text-align: center;
    padding: 60px 0;
    color: #ccc;
}

.cart-empty i {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 15px;
    color: #ddd;
}

.cart-empty p {
    font-size: 0.95rem;
    margin: 0;
}

/* 商品列表 */
.cart-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
    animation: fadeIn 0.3s ease;
}

/* 商品縮圖 */
.cart-item-img {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    object-fit: contain;
    background: var(--secondary-yellow);
    padding: 5px;
    flex-shrink: 0;
}

/* 商品資訊 */
.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--primary-orange);
    font-weight: 700;
    margin: 0 0 8px 0;
}

/* 數量控制 */
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-qty-btn {
    width: 26px;
    height: 26px;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 6px;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-color);
}

.cart-qty-btn:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
}

.cart-qty-num {
    min-width: 24px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
}

/* 移除按鈕 */
.cart-item-remove {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    color: #e74c3c;
}

/* 側欄底部合計區 */
.cart-footer {
    padding: 20px 25px;
    border-top: 2px solid var(--secondary-yellow);
    background: var(--white);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-color);
}

.cart-total-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.cart-checkout-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    justify-content: center;
    display: flex;
    align-items: center;
}

/* 加入成功動畫：按鈕短暫變色 */
.btn-add-cart.added {
    background: #4caf50;
    transform: scale(1.03);
}

/* 手機版側欄全寬 */
@media (max-width: 480px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}


/* ============================================================
   15. Modal / Lightbox（檢驗報告放大）
   ============================================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 15px;
    display: block;
    margin: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    line-height: 1;
}

#modalCaption {
    text-align: center;
    color: #ccc;
    margin-top: 15px;
    font-size: 0.9rem;
}


/* ============================================================
   17. nav-right — 桌機版導覽列右側群組
   ============================================================ */

/* nav-right：包住 nav-menu + 登入/會員按鈕 + 購物車 */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;   /* 推到 logo 右側盡頭 */
}

/* 購物車按鈕（全站共用） */
.nav-cart-btn {
    position: relative;
    background: none;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-orange);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.2s;
}
.nav-cart-btn:hover {
    background: var(--primary-orange);
    color: #fff;
}

/* 角標 */
.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--primary-orange);
    color: #fff;
    font-size: 0.65rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    border: 2px solid #fff;
}
.nav-cart-btn:hover .cart-badge {
    background: #fff;
    color: var(--primary-orange);
}
/* 加入購物車時彈跳 */
.cart-badge.bump {
    animation: badgeBump 0.3s ease;
}
@keyframes badgeBump {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.5); }
    100% { transform: scale(1); }
}


/* ============================================================
   18. Navbar 會員入口
   ============================================================ */

/* ── 登入按鈕（未登入） ── */
.nav-login-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--primary-orange);
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-login-btn:hover { background: #e68a35; transform: scale(1.03); }
.nav-login-btn span  { display: inline; }

/* ── 已登入：頭像 + 下拉選單 ── */
.nav-member { position: relative; }

.nav-member-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 50px;
    transition: background 0.2s;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 0.9rem;
}
.nav-member-btn:hover { background: var(--secondary-yellow); }

.nav-avatar-initial {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: #fff;
    font-weight: bold;
    font-size: 0.95rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.nav-avatar-img {
    width: 34px; height: 34px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.nav-member-name { font-weight: bold; max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-member-caret { font-size: 0.7rem; color: #aaa; transition: transform 0.2s; }
.nav-member-btn[aria-expanded="true"] .nav-member-caret { transform: rotate(180deg); }

/* 下拉選單 */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    min-width: 160px;
    padding: 6px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s;
    z-index: 800;
}
.nav-dropdown.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.nav-dd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    font-size: 0.9rem;
    color: var(--text-dark);
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}
.nav-dd-item i { width: 16px; color: #bbb; font-size: 0.85rem; }
.nav-dd-item:hover { background: var(--secondary-yellow); color: var(--primary-orange); }
.nav-dd-item:hover i { color: var(--primary-orange); }
.nav-dd-divider { height: 1px; background: #f0f0f0; margin: 4px 0; }
.nav-dd-logout { color: #e74c3c; }
.nav-dd-logout i { color: #e74c3c; }
.nav-dd-logout:hover { background: #fff5f5; color: #c0392b; }

/* 手機版：收起文字，只顯示頭像 */
@media (max-width: 768px) {
    .nav-login-btn span { display: none; }
    .nav-login-btn { padding: 8px 12px; }
    .nav-member-name,
    .nav-member-caret { display: none; }
    .nav-member-btn { padding: 6px; }
    .nav-dropdown { right: -8px; }
    .hero-overlay h1 { font-size: 1.8rem; }
    .section-header h2 { font-size: 2.1rem; }
    .section-header p { font-size: 1.0rem; }
    .trust-item h4 { font-size: 1.3rem; }
    .trust-item p { font-size: 0.8rem;}
}


/* ============================================================
   16. 響應式（RWD）
   ============================================================ */

/* ── 平板（≤ 992px） ── */
@media (max-width: 992px) {
    .about-row {
        gap: 40px;
        text-align: center;
    }

    .image-wrapper::after {
        display: none; /* 平板以下簡化裝飾色塊 */
    }
}

/* ── 手機（≤ 768px） ── */
@media (max-width: 768px) {

    /* Navbar 手機版補強 */
    .navbar {
        padding: 8px 0;
    }

    .navbar .container {
        width: 100%;
        padding: 0 15px;
    }

    /* 手機版：漢堡靠右，緊貼購物車左側 */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 10px;
        min-width: 44px;
        min-height: 44px;
        margin-left: auto;   /* 推漢堡到右側 */
    }

    /* 手機版：nav-right 緊貼右側圖示群，不需 margin-left:auto（漢堡已用 margin-left:auto 推右） */
    .nav-right {
        margin-left: 0;
        gap: 4px;
        flex-shrink: 0;
    }

    /* 手機版：nav-menu 已用 position:fixed 脫離 flex 流，flex-basis 歸零不佔空間 */
    .nav-right .nav-menu {
        flex: 0 0 0;
        overflow: visible;  /* 讓 fixed 選單正常顯示，不被裁切 */
    }

    /* 手機版：登入按鈕只顯示圖示 */
    .nav-login-btn span { display: none; }
    .nav-login-btn { padding: 8px 10px; min-width: 42px; justify-content: center; }

    /* 手機版：會員名稱和箭頭隱藏 */
    .nav-member-name,
    .nav-member-caret { display: none; }
    .nav-member-btn { padding: 4px 6px; }

    /* 側滑選單（手機版） */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 210px;
        height: 100vh;
        background-color: var(--white) !important;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        z-index: 600 !important;   /* 強制高於遮罩層(500) */
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 70px;
        overflow-y: auto;
        visibility: hidden;
    }

    .nav-menu.active {
        right: 0;
        visibility: visible;
    }

    .nav-menu ul {
        flex-direction: column;
        width: 100%;
    }

    .nav-menu ul li {
        width: 100%;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-menu ul li a {
        display: block;
        padding: 18px 12px;
        text-align: center;
        font-size: 1rem;
        color: var(--text-color);
    }

    /* Logo 縮小 */
    .brand-logo {
        height: 60px;
    }

    /* Hero */
    .hero-banner {
        height: auto;
        min-height: 320px;
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    /* 產品卡片：手機全寬 */
    .product-card {
        flex: 0 1 100%;
        max-width: 400px;
    }

    /* 信任區塊：單欄 */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* 關於我們：上下排列 */
    .about-col {
        min-width: 100%;
    }

    /* 圖片滿版橫幅，保留圓角 */
    .about-section {
        padding: 0;
    }

    .about-row {
        gap: 0;
    }

    .image-side {
        width: 100%;
        min-width: 100%;
        padding: 0 15px;            /* 左右留邊，讓圓角可見 */
        box-sizing: border-box;
    }

    .image-wrapper {
        padding: 0;
        margin: 0;
        border-radius: 20px;        /* 容器套圓角 */
        overflow: hidden;           /* 裁切圖片四角 */
    }

    .image-wrapper img {
        width: 100%;
        height: 220px;              /* 固定高度，橫向拉伸填滿 */
        object-fit: cover;          /* 拉伸填滿，不留白 */
        border-radius: 0;           /* 由容器控制圓角，圖片本身不需要 */
        box-shadow: none;
        display: block;
    }

    /* 文字區塊補回內距 */
    .text-side {
        padding: 30px 20px;
    }

    /* 「因為愛，所以更專業」標題不換行 */
    .text-side h2 {
        font-size: 1.5rem;
        white-space: nowrap;
    }

    /* page-header 標題同步縮小 */
    .page-header h1 {
        font-size: 1.5rem !important;
        white-space: nowrap;
    }

    /* 新聞列表：單欄 */
    .news-grid {
        grid-template-columns: 1fr !important;
    }

    /* 食用建議步驟：直排 */
    .method-steps {
        flex-direction: column;
        gap: 20px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    /* 頁籤文字縮小 */
    .tab-btn {
        font-size: 0.95rem;
        padding: 12px 8px;
        margin-right: 8px;
    }

    /* 報告區塊：直排 */
    .report-summary-box {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
    }

    /* 分頁過濾器換行 */
    .news-filter {
        flex-wrap: wrap;
    }
}

/* ============================================================
   17. 文章內頁版面（article layout）
   ============================================================ */

/* 整體兩欄佈局 */
.article-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    padding: 50px 20px;
}

/* 主文章欄 */
.article-main {
    flex: 3;
    min-width: 0;
}

/* 麵包屑 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #999;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--primary-orange); }

.breadcrumb i { font-size: 0.7rem; }

.breadcrumb span { color: var(--primary-orange); }

/* 文章 header */
.article-header {
    margin-bottom: 25px;
}

.article-header h1 {
    font-size: 1.9rem;
    line-height: 1.4;
    color: var(--text-color);
    margin: 12px 0;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 0.88rem;
    color: #aaa;
}

.article-meta i { margin-right: 5px; }

/* 封面圖 */
.article-cover {
    width: 100%;
    border-radius: 25px;
    margin-bottom: 35px;
    display: block;
    object-fit: cover;
    max-height: 420px;
}

/* 文章內文 */
.article-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
}

.article-body h3 {
    font-size: 1.2rem;
    color: var(--primary-orange);
    margin: 35px 0 12px;
    padding-left: 12px;
    border-left: 4px solid var(--primary-orange);
}

.article-body p { margin-bottom: 16px; }

.article-body strong { color: var(--text-color); }

/* 引用區塊 */
.article-quote {
    background: var(--secondary-yellow);
    border-left: 5px solid var(--primary-orange);
    border-radius: 0 15px 15px 0;
    padding: 20px 25px;
    margin: 28px 0;
    color: #5A4B40;
    font-style: italic;
    line-height: 1.7;
}

.article-quote i {
    color: var(--primary-orange);
    margin-right: 8px;
    font-size: 1rem;
}

/* 文章列表樣式 */
.article-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}

.article-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    border-bottom: 1px dashed #f0f0f0;
    color: #555;
}

.article-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

/* 分享列 */
.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    margin-top: 50px;
    font-size: 0.95rem;
    color: #777;
}

.article-share a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.article-share a:first-of-type { color: #3b5998; }
.article-share a:last-of-type  { color: #00b900; }
.article-share a:hover         { transform: scale(1.2); }

/* 回上頁按鈕 */
.article-nav { margin-top: 25px; }

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: gap 0.2s;
}

.btn-back:hover { gap: 12px; }

/* ── 側邊欄 ── */
.article-sidebar {
    flex: 1;
    min-width: 260px;
    position: sticky;
    top: 110px;
}

/* 推薦產品 */
.sidebar-product {
    background: var(--secondary-yellow);
    border-radius: 25px;
    padding: 25px;
    text-align: center;
    margin-bottom: 25px;
}

.sidebar-product h4 {
    margin: 0 0 15px;
    color: var(--text-color);
}

.sidebar-product img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.sidebar-product p {
    font-weight: bold;
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

.sidebar-product .btn-primary {
    display: block;
    font-size: 0.9rem;
    text-align: center;
}

/* 熱門文章 */
.sidebar-hot {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 25px;
    padding: 25px;
}

.sidebar-hot h4 {
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary-yellow);
    color: var(--text-color);
}

.sidebar-hot ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-hot li {
    border-bottom: 1px dashed #eee;
    padding: 10px 0;
}

.sidebar-hot li:last-child { border-bottom: none; }

.sidebar-hot a {
    text-decoration: none;
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
    display: block;
    transition: color 0.2s;
}

.sidebar-hot a:hover { color: var(--primary-orange); }

/* ── news.html 篩選列更新 ── */
.news-main {
    padding: 50px 20px;
}

.news-filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── footer 樣式（新版語意化） ── */
.site-footer {
    background: #5A4B40;
    color: #fff;
    padding: 60px 0 0;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    padding-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.footer-col h4 { margin-bottom: 15px; }

.footer-col p {
    color: #ccc;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-col p i { margin-right: 8px; }

.footer-col ul {
    list-style: none;
    padding: 0;
    line-height: 2.2;
}

.footer-col ul a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--primary-orange); }

.footer-social {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #fff;
    font-size: 1.4rem;
    transition: color 0.2s;
}

.footer-social a:hover { color: var(--primary-orange); }

.footer-copy {
    text-align: center;
    border-top: 1px solid #6d5d52;
    padding: 18px 0;
    font-size: 0.82rem;
    color: #aaa;
}

/* ── news.html 分類篩選功能 ── */
/* 使用 data-category 做 JS 篩選，隱藏時 display:none */

/* ── RWD：文章內頁手機版 ── */
@media (max-width: 768px) {
    .article-layout {
        flex-direction: column;
        padding: 30px 15px;
        gap: 30px;
    }

    .article-sidebar {
        position: static;
        min-width: 100%;
    }

    .article-header h1 {
        font-size: 1.4rem;
    }

    .article-cover {
        border-radius: 15px;
        max-height: 240px;
    }

    .article-body {
        font-size: 1rem;
    }

    .news-filter-bar {
        gap: 8px;
    }
}

/* 產品列表樣式調整 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(90, 75, 64, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid #FFF9F2;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #fff;
    z-index: 10;
}

/* 各功能代表色 */
.tag-joint { background-color: #79A37D; }    /* 關節力 - 綠 */
.tag-skin { background-color: #7BB8D4; }     /* 柔膚力 - 藍 */
.tag-gut { background-color: #E6B347; }      /* 好腸力 - 黃 */
.tag-immunity { background-color: #A68CBF; } /* 免疫盾 - 紫 */
.tag-vitality { background-color: #FF9D42; } /* 寵活力 - 品牌橘 */

.product-info h3 {
    font-family: 'ZCOOL Quanyi', sans-serif;
    color: #5A4B40;
    margin-bottom: 10px;
}

.product-info h3 small {
    display: block;
    font-size: 0.9rem;
    color: #8D7E71;
    font-weight: normal;
}

.btn-detail {
    display: inline-block;
    padding: 8px 20px;
    background-color: transparent;
    border: 1.5px solid #FF9D42;
    color: #FF9D42;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-detail:hover {
    background-color: #FF9D42;
    color: #fff;
}

/* --- 產品清單區塊樣式 --- */
.products-section {
    background-color: #FFF9F2; /* 品牌輔助背景 */
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.brand-font {
    font-family: 'ZCOOL Quanyi', sans-serif;
    color: #5A4B40;
    font-size: 2.5rem;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.product-item {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

.product-card {
    background: #fff;
    border-radius: 25px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(90, 75, 64, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 懸停效果：背景變為該產品的輔助色，邊框變為品牌色 */
.product-card:hover {
    transform: translateY(-10px);
    background-color: var(--accent-color);
    border-color: #FF9D42;
}

.product-label {
    position: absolute;
    top: 16px;
    right: 0;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px 0 0 20px;   /* 左圓右切齊卡片邊緣 */
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
    z-index: 10;                     /* 確保浮在圖片上方 */
}

.product-img {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 16px;           /* 灰框四周留白，凸顯產品 */
    box-sizing: border-box;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.product-content h3 {
    font-family: 'ZCOOL Quanyi', sans-serif;
    color: #5A4B40;
    margin-bottom: 5px;
}

.product-content small {
    display: block;
    color: #8D7E71;
    font-size: 0.9rem;
    font-family: 'Noto Sans TC', sans-serif;
}

.tech-tag {
    background: #FF9D42;
    color: #fff;
    display: inline-block;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    margin: 10px 0;
}

.description {
    font-size: 0.95rem;
    color: #5A4B40;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-more {
    display: block;
    padding: 10px;
    border: 1.5px solid #5A4B40;
    border-radius: 50px;
    color: #5A4B40;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-more:hover {
    background: #5A4B40;
    color: #fff;
}
