:root {
  /* 配色*/
  --peach-600:#ea927f;    /* header 上帶、fab 主色、footer 下層 */
  --peach-300:#f7b7a7;    /* 漸層過渡 */
  --peach-200:#f9c9bd;    /* footer 上層 */
  --ink:#333;
  --muted:#6f6f6f;
  --white:#fff;
  --border:#eaeaea;
}



/* ============ RWD（≤900px） ============ */


  @media (max-width: 900px){
    .simple-banner img{ height: 220px; }
  }

    /* ===== 菜色介紹 ===== */
  .flavors{
    background:#f7f7f7;    
    padding: 36px 0 72px;
  }

  /* 導航 */
  .flavors-nav{
    list-style:none; margin:0 0 28px; padding:0;
    display:flex; gap:42px; justify-content:center; align-items:center;
  }
  .flavors-nav button{
    background:transparent; border:0; cursor:pointer;
    font-size:20px; color:#d8a9a0;  
    letter-spacing:.06em; padding:8px 0; position:relative;
  }
  .flavors-nav button.active{
    color: var(--peach-600);   
    font-weight:700;
  }
  .flavors-nav button.active::after{
    content:""; position:absolute; left:50%; bottom:-8px;
    transform:translateX(-50%); width:24px; height:3px; border-radius:3px;
    background: var(--peach-600);
  }

  .flavor-panel{ display:none; }
  .flavor-panel.show{ display:block; animation:fadeUp 0.8s ease both;; }

  .flavor-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  column-gap: 60px;
  align-items: start; 
}


  .flavor-photo{ position:relative; }
  .flavor-photo img {
  width: 80%;
  height: auto;
  display: block;
  opacity: 0;    
  animation: photoFadeIn 1.2s ease forwards;
  animation-delay: 0.2s;       
}
  .flavor-photo .ph-fallback{
    width:100%; aspect-ratio: 4/3; background:#eaeaea; color:#999;
    display:grid; place-items:center; border-radius:8px;
  }

  .flavor-illust{
    position:absolute; left:28%; bottom:-40px; width:360px; pointer-events:none;
  }
  .flavor-illust img{ width:100%; height:auto; display:block; }
  .flavor-illust .ph-fallback{
    width:100%; aspect-ratio:1/1; background:#f4e3dc; color:#b78;
    display:grid; place-items:center; border-radius:14px; box-shadow:0 8px 16px rgba(0,0,0,.08);
  }

@keyframes illustFadeIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.flavor-illust{
  position: absolute;
  left: 30%;        
  bottom: -60px;     
  width: 360px;      
  pointer-events: none;
  z-index: 5;
  opacity: 0;        
  animation: illustFadeIn 1.8s ease-out forwards;
}

  .flavor-text {
  align-self: start;
  padding-top: 28px;
  color: var(--ink);      
  line-height: 1.8;
  font-family: "Noto Sans TC", system-ui, -apple-system, "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.flavor-text h2 {
  margin: 0 0 12px;
  font-size: 36px;         
  font-weight: 700;
  color: #905c44;         
  letter-spacing: .06em;
  line-height: 1.2;
}
  .flavor-text p {
  margin: 0;
  font-size: 18px;     
  color: #555;         
  line-height: 1.9;
  max-width: 480px;      
}

  @keyframes fadeUp{
    from{ opacity:0; transform:translateY(16px); }
    to{ opacity:1; transform:translateY(0); }
  }

/* 手機版（≤900px） */ 
@media (max-width: 900px){ 
  .flavor-grid{ display: block; position: relative;}
  .flavor-illust{ 
    position: absolute; 
    left: auto;
    right: 8%;
    bottom: 25%;
    transform: none;
    width: clamp(160px, 48vw, 220px); 
    margin: 0; 
    pointer-events: none; 
    z-index: 10; } 
    .flavor-photo img{ width: 70%; height: auto; display: block; } 
    .flavor-text{ margin-top: 4vw; padding-top: 0; text-align: left; } 
    .flavor-text p{ max-width: none; font-size: 16px; line-height: 1.9; } 
    .flavors-nav{ flex-wrap: wrap; gap: 18px 22px; justify-content: center; } }

    @keyframes photoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.journey-section {
  width: 100%;
  background-color: #fff;
  padding: 100px 0;
}

.journey-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
  padding: 0 40px;
}

.journey-text {
  flex: 1;
}
.journey-subtitle {
  font-size: 18px;
  color: #b1724e;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.journey-title {
  font-size: 48px;
  color: #633b27;
  font-weight: 700;
  margin-bottom: 20px;
}
.journey-desc {
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 40px;
}

.journey-btn {
  display: inline-block;
  background-color: #e88b6f;
  color: #fff;
  padding: 12px 36px;
  border-radius: 30px;
  font-size: 18px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.journey-btn:hover {
  background-color: #d86b4a;
}

.journey-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.journey-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.6s ease;
}
.journey-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 900px){
  .journey-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }
  .journey-title { font-size: 36px; }
  .journey-desc { font-size: 16px; }
  .journey-btn { font-size: 16px; padding: 10px 28px; }
}

.journey-banner{
  position: relative;
  width: 100%;
  min-height: 520px;
  background-image: url('/assets/images/common/promo-bg.jpg');
  background-repeat: no-repeat;
  background-position: right center;  
  background-size: min(780px, 46vw); 
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 0;
}

.journey-card {
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 40px 80px 60px;
  max-width: 560px;
  margin-left: 10%;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.journey-subtitle {
  font-size: 18px;
  color: #b1724e;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.journey-title {
  font-size: 48px;
  color: #633b27;
  font-weight: 700;
  margin-bottom: 20px;
}
.journey-desc {
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 40px;
}

.journey-btn {
  display: inline-block;
  background-color: #e88b6f;
  color: #fff;
  padding: 12px 36px;
  border-radius: 30px;
  font-size: 18px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.journey-btn:hover {
  background-color: #d86b4a;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px){
  .journey-banner {
    justify-content: center;
    padding: 80px 20px;
  }
  .journey-card {
    margin: 0;
    padding: 40px 30px;
    text-align: center;
  }
  .journey-title { font-size: 36px; }
  .journey-desc { font-size: 16px; }
  .journey-btn { font-size: 16px; padding: 10px 28px; }
}

.journey-full{
  position: relative;
  width: 100%;
  background-image: url('/assets/images/common/promo-bg.jpg');
  background-repeat: no-repeat;
  background-size: contain;   
  background-position: center top;
  min-height: clamp(560px, 62vw, 900px); 
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 0 140px;  
  overflow: visible;
}

.journey-card{
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.1);
  border-radius:20px;
  padding:40px 80px 60px;
  max-width:560px;
  margin-left:16%;
  z-index:2;
  animation:fadeUp 1s ease forwards;
  opacity:0;
}

.journey-card h2.journey-title {
  margin-top: 0;     
  padding-top: 0;     
  transform: translateY(-10px); 
}

.journey-subtitle {
  font-size: 18px;
  color: #b1724e;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.journey-title {
  font-size: 48px;
  color: #633b27;
  font-weight: 700;
  margin-bottom: 20px;
}
.journey-desc {
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 40px;
}

.journey-btn {
  display: inline-block;
  background-color: #e88b6f;
  color: #fff;
  padding: 12px 36px;
  border-radius: 30px;
  font-size: 18px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.journey-btn:hover {
  background-color: #d86b4a;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px){
  .journey-full {
    justify-content: center;
    padding: 80px 20px;
    background-position: center;
  }
  .journey-card {
    margin: 0;
    padding: 40px 30px;
    text-align: center;
  }
  .journey-title { font-size: 36px; }
  .journey-desc { font-size: 16px; }
  .journey-btn { font-size: 16px; padding: 10px 28px; }
}

/* ===== 菜色切換箭頭 ===== */
.flavor-arrows {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.flavor-arrows .arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background-color: var(--peach-600);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .3s ease, transform .3s ease;
}
.flavor-arrows .arrow:hover {
  background-color: #d86b4a;
  transform: scale(1.08);
}

/* ===== 菜色介紹箭頭 ===== */
.flavor-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.flavor-arrows .arrow {
  pointer-events: auto; 
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background-color: rgba(234, 146, 127, 0.9);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .3s ease, transform .3s ease;
}

.flavor-arrows .arrow:hover {
  background-color: #d86b4a;
  transform: scale(1.1);
}

.flavor-arrows .prev { margin-left: 2%; }
.flavor-arrows .next { margin-right: 2%; }

@media (max-width: 900px){
  .flavor-arrows .arrow {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .flavor-arrows .prev { margin-left: 4%; }
  .flavor-arrows .next { margin-right: 4%; }
}

#flavors,
.flavors {       
  position: relative;
}

#flavors .flavor-arrows,
.flavors .flavor-arrows{
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 10;       
}

/* ===== 菜色左右箭頭樣式===== */
.flavor-arrows .arrow {
  pointer-events: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--peach-200);
  background-color: transparent;  
  color: var(--peach-200);    
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.flavor-arrows .arrow:hover {
  background-color: var(--peach-200);
  color: #fff;
  transform: scale(1.1);
}

.flavor-arrows .prev { margin-left: 1%; }
.flavor-arrows .next { margin-right: 1%; }

@media (max-width: 900px){
  .flavor-arrows .arrow {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .flavor-arrows .prev { margin-left: 4%; }
  .flavor-arrows .next { margin-right: 4%; }
}


/*--------------------------------------------------------------------
-------------------------------------------------------------------*/
.simple-banner img {
  width: 100%;
  height: auto;
  display: block;
}

:root{
  --container-max: 1200px;
}

.flavor-illust{
  left: 24% !important;  
  bottom: -28px !important; 
  width: 340px;       
}
.flavor-text{
  transform: translateY(-12px);
}

@media (max-width: 900px){
  #flavors .flavor-arrows{
    top: 17%;         
  }
  #flavors .flavor-arrows .arrow{
    width: 42px; height: 42px; font-size: 18px;
  }
  #flavors .flavor-arrows .prev{ left: 12px; }
  #flavors .flavor-arrows .next{ right: 12px; }

  .flavor-illust{
    position: static !important;
    width: clamp(160px, 58vw, 240px) !important;
    margin: 8px auto 4px !important; 
    transform: none !important;
    z-index: 1 !important;
  }

  .flavor-text{
    transform: translateY(-6px);
  }
}

@media (max-width: 900px){

  .flavor-grid{ position: relative; }

  .flavor-illust{
    position: absolute !important;
    left: 45% !important;      
    bottom: 55% !important;       
    width: clamp(180px, 52vw, 240px) !important;
    margin: 0 !important;
    transform: none !important;
    z-index: 8 !important;
    pointer-events: none;
  }

  .flavor-text{
    margin-top: 14vw !important;
    transform: none !important;
  }
}

:root{ --container-max: 1200px; }

@media (min-width: 901px){
  .journey-full{
    width: auto !important;
    max-width: none !important;
    left: auto !important;
    right: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
    max-width: var(--container-max);
    padding-left: 24px;
    padding-right: 24px;
    background-position: right center !important;
    background-size: 115% auto !important;
    background-repeat: no-repeat !important;
    padding-top: 120px !important;
    padding-bottom: 160px !important;
    margin: 0 auto !important;
  }

  .journey-card{
    max-width: 440px !important;
    margin-left: 0 !important; 
    padding: 36px 56px 48px !important;
  }
}

@media (min-width: 901px){
  .flavors{
    width: auto !important;
    max-width: var(--container-max);
    margin: 0 auto !important;
    box-sizing: border-box;
    padding-left: 24px; 
    padding-right: 24px;
  }
}

@media (min-width: 901px){
  .flavor-arrows .prev{ margin-left: 0 !important; }
  .flavor-arrows .next{ margin-right: 0 !important; }
}

#flavors {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.journey-full {
  margin-top: 0 !important;  
  padding-top: 0 !important;
}

.flavors {
  background-color: transparent !important;
}


/*  跑馬燈區 */
.announcement-bar {
  position: relative;
  overflow: hidden;
  background-color: #F29B87; /* 007a4d綠色背景F29B87，可依品牌色調整 */
  color: #fff;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
}

/* 滑鼠移上去暫停 */
.announcement-bar:hover .announcement-content {
  animation-play-state: paused;
}


/* 內容動畫 */
.announcement-content {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 25s linear infinite;
}

/* 動畫關鍵影格 */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* 手機版隱藏跑馬燈 */
@media (max-width: 768px) {
    .announcement-bar {
        display: none;
    }
}


