  /* 收涎介紹 */
  #收涎介紹 p strong.h4.text-danger {
    display: block;
    background-color: #b52026;   /* 品牌主色 */

    /* 疊加收涎感紋理 */
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(248, 230, 184, 0.05) 0%, transparent 10%),
        radial-gradient(circle at 80% 70%, rgba(248, 230, 184, 0.05) 0%, transparent 10%),
        url('../img/bg/paper-fibers.png'); /* 增加紙質高級感 */

    color: #ffffff !important;
    text-align: center;
    padding: 45px 20px;
    margin: 40px 0;

    /* 立體感 */
    box-shadow: 
        inset 0 0 100px rgba(0,0,0,0.3),
        0 15px 35px rgba(181, 32, 38, 0.2);

    /* 燙金邊框微調 */
    border-top: 3px double #f8e6b8;    
    border-bottom: 3px double #f8e6b8; 

    font-size: 1.7rem !important;
    font-weight: 900 !important;
    letter-spacing: 3px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    transition: all 0.5s ease;
  }

  /* 裝飾：左側改為「收涎餅乾」意象的 Icon */
  #收涎介紹 p strong.h4.text-danger::before {
    content: "\f1db"; /* FontAwesome 的 circle-thin，象徵圓圓餅乾 */
    font-family: FontAwesome;
    color: #f8e6b8;
    position: absolute;
    left: 12%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.3;
  }

  /* 裝飾：右側改為「收涎餅乾」意象的 Icon */
  #收涎介紹 p strong.h4.text-danger::after {
    content: "\f1db";
    font-family: FontAwesome;
    color: #f8e6b8;
    position: absolute;
    right: 12%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.3;
  }

  /* 懸停：讓餅乾 Icon 產生發光律動 */
  #收涎介紹 p strong.h4.text-danger:hover::before,
  #收涎介紹 p strong.h4.text-danger:hover::after {
    opacity: 0.8;
    transform: translateY(-50%) scale(1.2);
    transition: all 0.5s ease;
  }
  /* END收涎介紹 */

  /* 收涎目錄 */
  .row-5-col {
      display: flex;
      flex-wrap: wrap;
      margin-right: -10px;
      margin-left: -10px;
  }

  /* 每一格佔 20% */
  .col-5-item {
      position: relative;
      width: 100%;
      padding-right: 10px;
      padding-left: 10px;
      flex: 0 0 20%;
      max-width: 20%;
      margin-bottom: 20px;
  }

  /* 按鈕樣式：維持品牌紅邊框與白色基底 */
  .nav-simple-btn {
      display: flex;
      align-items: center;
      background: #fff;
      color: #333;
      border: 1px solid #e0e0e0;
      border-left: 4px solid #b52026; 
      padding: 12px 15px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 1.1rem;
      height: 60px;
      text-decoration: none !important;
      transition: all 0.3s;
  }

  .nav-simple-btn i {
      color: #b52026;
      font-size: 1.1rem;
      margin-right: 10px;
      width: 20px;
      text-align: center;
  }

  /* 懸停效果 */
  .nav-simple-btn:hover {
      background: #b52026;
      color: #fff !important;
      border-color: #b52026;
  }

  .nav-simple-btn:hover i {
      color: #fff;
  }

  /* 手機與平板適配：自動變換欄數 */
  @media (max-width: 1200px) {
      .col-5-item { flex: 0 0 25%; max-width: 25%; } /* 4 欄 */
  }
  @media (max-width: 992px) {
      .col-5-item { flex: 0 0 33.3333%; max-width: 33.3333%; } /* 3 欄 */
  }
  @media (max-width: 768px) {
      .col-5-item { flex: 0 0 50%; max-width: 50%; } /* 2 欄 */
  }

  /* END 收涎目錄 */

  /* 服務項目 */
  #item-main-services {
      padding: 100px 0;
      background: #f8f8f8 !important; /* 修改為淡灰色，讓白色卡片更明顯 */
      position: relative;
  }
  #item-main-services .section-header h3 {
      color: #b52026;
      font-weight: 900;
      letter-spacing: 2px;
  }
  .service-nav-col {
      background: #fff;
      border-radius: 20px;
      border: 1px solid #f0f0f0;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
      box-shadow: 0 5px 15px rgba(0,0,0,0.02);
      margin-bottom: 30px;
      height: 100%; /* 確保高度一致 */
  }
  .service-nav-col:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 40px rgba(181, 32, 38, 0.1);
      border-color: rgba(181, 32, 38, 0.2);
  }
  .service-nav-col .img-box {
      position: relative;
      overflow: hidden;
  }
  .service-nav-col .img-box img {
      transition: transform 0.6s ease;
  }
  .service-nav-col:hover .img-box img {
      transform: scale(1.1);
  }
  .service-nav-col .badge-no {
      position: absolute;
      bottom: 0;
      right: 0;
      background: #b52026;
      color: #fff;
      width: 45px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-style: italic;
      border-radius: 20px 0 0 0;
      font-size: 1.1rem;
  }
  .service-nav-content {
      padding: 25px 20px;
      text-align: center;
  }
  .service-nav-content h3 {
      margin: 0;
      font-size: 1.25rem;
      color: #b52026;
      font-weight: 700;
  }
  .service-nav-content h3 a {
      color: #333;
      text-decoration: none;
  }
  .btn-arrow {
      margin-top: 15px;
      display: inline-block;
      color: #b52026;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 1px;
  }
  /* END服務項目 */

  /* 參加人數 */
  #facts-shuyan-count {
    padding: 100px 0;
    /* 照片牆背景圖路徑 */
    background: url('../img/baby_party_1year/all-banner-2.jpg') center center no-repeat fixed;
    background-size: cover;
    position: relative;
    color: #fff;
  }

  /* 遮罩 */
  #facts-shuyan-count::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* 深色遮罩，確保文字白亮 */
    backdrop-filter: blur(3px); /* 輕微模糊背景，減少照片干擾 */
    z-index: 1;
  }

  #facts-shuyan-count .container {
    position: relative;
    z-index: 2; /* 確保內容在遮罩上方 */
  }

  /* 標題與數字優化 */
  #facts-shuyan-count .section-header h3 {
    color: #f8e6b8; /* 使用燙金色增加高級感 */
    font-weight: 900;
    letter-spacing: 2px;
  }

  #facts-shuyan-count .section-header p {
    color: #eee;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
  }

  /* 數字動態效果 */
  .counter-box {
    margin: 40px 0;
  }

  .counter-box span {
    font-family: "Montserrat", sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: #ffffff;
    display: block;
    line-height: 1;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
  }

  .counter-box p {
    padding: 0;
    margin: 10px 0 0 0;
    font-size: 1.5rem;
    color: #f8e6b8;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
  }

  /* 按鈕 */
  .facts-cta-btn {
    display: inline-block;
    padding: 12px 45px;
    border: 2px solid #f8e6b8;
    color: #f8e6b8 !important;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: 0.3s;
    text-decoration: none !important;
    margin-top: 20px;
  }

  .facts-cta-btn:hover {
    background: #f8e6b8;
    color: #b52026 !important;
    transform: scale(1.05);
  }

  @media (max-width: 768px) {
    .counter-box span { font-size: 3.5rem; }
    #facts-shuyan-count { padding: 60px 0; }
  }
  /* END參加人數 */

  /* 關於收涎 */
  #shuyan-catalog-full {
    padding: 100px 0;
    background: #fcfcfc;
  }

  /* 頂部文字區 */
  .catalog-intro-text {
    font-size: 1.15rem;
    line-height: 2;
    color: #333;
    background: #fff;
    padding: 30px;
    border-left: 5px solid #b52026;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin-bottom: 60px;
  }

  /* 精品卡片基礎 */
  .catalog-item-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    margin-bottom: 35px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    height: calc(100% - 35px);
    display: flex;
    flex-direction: column;
  }

  .catalog-item-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(181, 32, 38, 0.12);
    border-color: rgba(181, 32, 38, 0.2);
  }

  /* 圖片容器 */
  .catalog-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 11;
  }

  .catalog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
  }

  .catalog-item-card:hover .catalog-img-wrap img {
    transform: scale(1.1);
  }

  /* 數字索引標籤 */
  .catalog-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(181, 32, 38, 0.9);
    color: #fff;
    padding: 5px 15px;
    font-weight: 800;
    font-style: italic;
    font-size: 1.1rem;
    border-radius: 0 0 15px 0;
    z-index: 2;
  }

  /* 內容區 */
  .catalog-body-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  /* 標題優化：修正原本列表用 h1 的錯誤，改用 h4 */
  .catalog-body-content h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.5;
  }
  
  .catalog-body-content h4 a {
    color: #333;
    text-decoration: none;
    transition: 0.3s;
  }

  .catalog-item-card:hover .catalog-body-content h4 a {
    color: #b52026;
  }

  .catalog-body-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 0;
  }
  
  .catalog-body-content p a {
      color: inherit;
      text-decoration: none;
  }

  /* 底部連結 */
  .catalog-foot-link {
    margin-top: auto;
    padding-top: 15px;
    font-weight: 700;
    color: #b52026;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
  }
  .catalog-foot-link i { margin-left: 8px; transition: 0.3s; }
  .catalog-item-card:hover .catalog-foot-link i { transform: translateX(5px); }

  @media (max-width: 768px) {
    #shuyan-catalog-full { padding: 60px 0; }
  }
  /* END 關於收涎 */

  /* 影片介紹 */
  .video-container-premium {
      position: relative;
      z-index: 2;
      background: #fff;
      padding: 12px; /* 電腦版維持相框感 */
      border-radius: 4px;
      border: 1px solid #eee;
      transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }

  /* 懸停動態 */
  .video-container-premium:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 40px 100px rgba(181, 32, 38, 0.15);
  }

  /* RWD 調整：關鍵修正區 */
  @media (max-width: 991px) {
      #item-premium-cinema { 
          padding: 40px 0; /* 縮減上下間距 */
      }
      
      .cinema-frame { 
          padding: 10px 0; 
      }

      /* 手機版核心調整：取消白邊與圓角，並強制擴張 */
      .video-container-premium { 
          padding: 0;           /* 移除相框白邊 */
          border: none;        /* 移除邊框 */
          border-radius: 0;    /* 移除圓角 */
          box-shadow: none;    /* 移除投影，讓影片視覺更純粹 */
          
          /* 如果外層有 .container 的 padding，可以用負邊界推出去 (視情況調整) */
          margin-left: -15px;  
          margin-right: -15px;
      }

      /* 確保 iframe 在手機版也是 100% 寬度 */
      .video-container-premium iframe {
          width: 100% !important;
          border: 0;
      }
  }
  /* END 影片介紹 */

  /* 最新案例推薦分享 */
  .portfolio-wrap-refined {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    position: relative;
  }

  .portfolio-wrap-refined:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  }

  /* 強制圖片比例：解決大小不一問題 */
  .img-container-fixed {
    width: 100%;
    aspect-ratio: 16 / 10; /* 黃金比例 */
    overflow: hidden;
    position: relative;
  }

  .img-container-fixed img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 關鍵：自動裁切 */
    transition: transform 0.6s ease;
  }

  .portfolio-wrap-refined:hover .img-container-fixed img {
    transform: scale(1.1);
  }

  /* 資訊描述區塊 */
  .portfolio-info-premium {
    padding: 20px;
    text-align: center;
  }

  .portfolio-info-premium h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    height: 50px; /* 固定高度讓排版對齊 */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 最多兩行 */
    -webkit-box-orient: vertical;
  }

  .portfolio-info-premium h4 a {
    color: #333;
    transition: 0.3s;
    text-decoration: none;
  }

  .portfolio-wrap-refined:hover .portfolio-info-premium h4 a {
    color: #b52026;
  }

  .portfolio-date-label {
    color: #999;
    font-size: 0.9rem;
    display: block;
    letter-spacing: 1px;
  }

  /* 底部按鈕 */
  .cta-btn-all {
    display: inline-block;
    background: #b52026;
    color: #fff !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(181,32,38,0.2);
    text-decoration: none !important;
  }

  .cta-btn-all:hover {
    background: #333;
    transform: scale(1.05);
  }
  /* END 最新案例推薦分享 */

  /* 古裝禮服 */
  .clothing-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
  }

  .clothing-item {
    padding: 10px;
    flex: 0 0 25%; /* PC 一排四個 */
    max-width: 25%;
  }

  /* 禮服卡片精品化 */
  .clothing-wrap {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
  }

  .clothing-wrap:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(181, 32, 38, 0.12);
    border-color: #b52026;
  }

  /* 統一圖片比例：建議使用 3:4 的人像比例更顯服裝美感 */
  .clothing-img-box {
    width: 100%;
    aspect-ratio: 3 / 4; 
    overflow: hidden;
    background: #f9f9f9;
    position: relative;
  }

  .clothing-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
  }

  .clothing-wrap:hover .clothing-img-box img {
    transform: scale(1.1);
  }

  /* 資訊描述區塊 */
  .clothing-info {
    padding: 20px;
    text-align: center;
    background: #fff;
  }

  .clothing-info h5 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 8px;
    transition: 0.3s;
  }

  .clothing-wrap:hover .clothing-info h5 {
    color: #b52026;
  }

  .clothing-info p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
    height: 45px; /* 固定兩行高度 */
    overflow: hidden;
    margin-bottom: 0;
  }

  /* 底部大按鈕 */
  .btn-clothing-all {
    display: inline-block;
    background: #b52026;
    color: #fff !important;
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(181, 32, 38, 0.2);
    text-decoration: none !important;
    margin-top: 40px;
  }

  .btn-clothing-all:hover {
    background: #333;
    transform: scale(1.05);
  }

  /* 響應式調整 */
  @media (max-width: 1200px) {
    .clothing-item { flex: 0 0 33.33%; max-width: 33.33%; }
  }
  @media (max-width: 768px) {
    .clothing-item { flex: 0 0 50%; max-width: 50%; }
    .clothing-info { padding: 15px 10px; }
    .clothing-info h5 { font-size: 1rem; }
  }
  /* END 古裝禮服 */