/* ======= 最新消息 區塊 ======= */
  body #products {
    background-color: #888 !important; /* 極深色底 */
    background-image: 
        /* 1. 核心橘色光暈：營造深邃感 */
        radial-gradient(circle at 50% 50%, rgba(255, 161, 51, 0.05) 0%, transparent 75%),
        /* 2. 數位點陣紋理：使用 CSS 繪製比圖片更清晰 */
        radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        /* 3. 您原本的背景圖，改為 soft-light 融合模式 */
        url('../img/product.jpg') !important;
    
    background-size: auto, 40px 40px, cover !important; /* 控制點陣疏密度與底圖滿版 */
    background-position: center !important;
    background-repeat: no-repeat, repeat, no-repeat !important;
    background-blend-mode: normal, normal, soft-light !important;
    
    padding: 100px 0 !important;
    position: relative !important;
    overflow: hidden !important;
  }

  /* 案例卡片：極致磨砂玻璃效果 */
  body #products .news-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
    height: 100% !important;
    overflow: hidden !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4) !important;
  }

  /* 懸停時卡片升起與發光 */
  body #products .news-card:hover {
    transform: translateY(-15px) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 161, 51, 0.4) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6) !important;
  }

  /* 圖片縮放區 */
  body #products .news-img-wrap {
    height: 240px !important;
    position: relative !important;
    overflow: hidden !important;
  }

  body #products .news-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 1s ease !important;
  }

  /* VIEW CASE 懸停遮罩：這是之前可能漏掉的重點 */
  body #products .news-overlay {
    position: absolute !important;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 161, 51, 0.85) !important; /* 品牌橘色遮罩 */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    opacity: 0 !important;
    transition: 0.4s !important;
    text-decoration: none !important;
  }

  body #products .news-card:hover .news-overlay {
    opacity: 1 !important;
  }

  .btn-view {
    color: #fff !important;
    border: 2px solid #fff !important;
    padding: 8px 25px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
  }

  /* 內容區文字修正 */
  body #products .news-content {
    padding: 25px !important;
  }

  body #products .news-date {
    color: #999 !important;
    font-size: 13px !important;
    display: block !important;
    margin-bottom: 8px !important;
  }

  body #products .news-title {
    color: #ffffff !important; /* 強制標題白色 */
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    transition: 0.3s !important;
  }

  body #products .news-card:hover .news-title {
    color: #ffa133 !important; /* 懸停變橘色 */
  }

/* END ======= 最新消息 區塊 ======= */  


/* ======= 詳細文章 區塊 ======== */


/* 2. 文章標題區 */
#products .section-header h2 {
  color: #ffffff !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5) !important;
  text-align: left !important;
  border-left: 5px solid #ffa133 !important; /* 品牌橘色垂直線 */
  padding-left: 20px !important;
  margin-bottom: 10px !important;
}

#products .section-header time {
  display: block !important;
  color: #ffa133 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  margin-bottom: 5px !important;
  padding: 0 !important;
}

#products h5 {
  color: #999 !important;
  font-size: 14px !important;
  text-align: left !important;
  padding-left: 25px !important;
}

/* 3. 文章主體容器 */
.article-content-wrapper {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 60px 50px !important;
  margin-top: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* 4. 強制規範內容樣式 */
.article-content {
  color: #efefef !important;
  font-size: 17px !important;
  line-height: 2 !important;
  text-align: justify !important; /* 左右對齊增加質感 */
}

/* 圖片強制優化 */
.article-content img {
  display: block !important;
  max-width: 90% !important;
  height: auto !important;
  margin: 40px auto !important; /* 圖片上下留白增加呼吸感 */
  border-radius: 15px !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: transform 0.5s ease;
}
.article-content img:hover {
  transform: scale(1.02);
}

/* 針對內容中的段落與標題自動加強 */
.article-content p { margin-bottom: 25px !important; }
.article-content h1, .article-content h2, .article-content h3 {
  color: #ffa133 !important;
  margin-top: 50px !important;
  margin-bottom: 20px !important;
  font-weight: 700 !important;
}

/* 5. 分隔線優化 */
#products hr {
  border-color: rgba(255, 255, 255, 0.1) !important;
  margin: 40px 0 !important;
}

/* 手機版適應 */
@media (max-width: 768px) {
  .article-content-wrapper { padding: 30px 20px !important; }
  #products .section-header h2 { font-size: 22px !important; }
  .article-content { font-size: 15.5px !important; }
}


/* 1. 徹底清除原本 style.css 中間底部的裝飾線 */
body #products .section-header h2::before,
body #products .section-header h2::after {
  display: none !important;
  content: none !important;
}

/* 2. 重塑詳細頁標題區塊 */
body #products .section-header {
  text-align: left !important; /* 強制標題左對齊 */
  margin-bottom: 40px !important;
  position: relative !important;
}

/* 3. 左側垂直品牌線：模仿傳家古禮的專業感 */
body #products .section-header h2 {
  color: #ffffff !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  padding: 0 0 0 25px !important; /* 留出左側線條空間 */
  margin: 0 !important;
  text-shadow: none !important;
  letter-spacing: 1px !important;
  border-left: 6px solid #ffa133 !important; /* 寬一點的橘色垂直線 */
  text-transform: none !important; /* 避免強制大寫 */
}

/* 4. 時間樣式：置於標題上方，像專業期刊 */
body #products .section-header time {
  display: block !important;
  color: #ffa133 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  margin-bottom: 10px !important;
  padding-left: 25px !important; /* 與標題對齊 */
}

/* 5. 編輯資訊樣式 */
body #products .section-header h5 {
  color: #888 !important;
  font-size: 14px !important;
  margin-top: 15px !important;
  padding-left: 25px !important; /* 與標題對齊 */
  font-weight: 400 !important;
}

/* 6. 移除內文頂部的 hr，因為標題已經夠明顯了 */
body #products .box hr {
  display: none !important;
}

/* 手機版微調 */
@media (max-width: 768px) {
  body #products .section-header h2 {
    font-size: 24px !important;
    border-left-width: 4px !important;
    padding-left: 15px !important;
  }
  body #products .section-header time,
  body #products .section-header h5 {
    padding-left: 15px !important;
  }
}
/* END ======= 詳細文章 區塊 ======== */



