/* Start custom CSS for text-editor, class: .elementor-element-3b7b199 *//* 容器樣式 */
  .product-container {
    display: flex;
    justify-content: center; /* 居中對齊 */
    padding: 30px 0;
    max-width: 1000px; /* 限制最大寬度，避免在寬螢幕上拉得太開 */
    margin: 0 auto; /* 居中容器 */
  }
  
  

  /* 單個產品卡片樣式 */
  .product-card {
    flex: 1; /* 讓每個卡片佔據等量空間 */
    max-width: 400px;
    border: 1px solid #e0e0e0; /* 輕微邊框，可選 */
    text-align: center;
    background-color: #f9f9f8; /* 淺灰色背景 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* 輕微陰影 */
  }

  /* 圖片區塊 - 必須是相對定位的容器 */
  .product-image-section {
    position: relative; /* &lt;&lt;&lt;&lt;&lt;&lt; [關鍵] 設為相對定位，供子元素絕對定位使用 */
    overflow: hidden;
    height: 300px; /* 固定圖片區塊高度 */
  }

  /* 背景圖片樣式 (底圖) */
  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 確保圖片覆蓋整個區塊 */
    display: block;
  }
  
  /* 疊加的香水瓶圖片樣式 */
  .overlay-bottle {
    position: absolute; /* &lt;&lt;&lt;&lt;&lt;&lt; [關鍵] 設為絕對定位，實現疊加 */
    top: 50%; /* 垂直居中 */
    left: 50%; /* 水平居中 */
    transform: translate(-50%, -50%); /* 根據自身尺寸進行精確居中 */
    width: 90%; /* 調整香水瓶在背景上的大小 (可依需求調整 50%~70%) */
    height: auto;
    z-index: 10; /* 確保它疊在背景圖之上 */
  }

  /* 產品名稱樣式 */
  .product-name {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0 10px;
    color: #5b4a3f;
    padding-top: 10px;
  }

  /* 香味標籤樣式 */
  .scent-tag {
    display: inline-block;
    background-color: #deb377; /* 溫暖的淺米色/棕色，模仿圖片風格 */
    color: #f9f9f8;
    padding: 3px 25px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 20px;
  }
  
  /* 引用區塊樣式 */
  .quote-section {
    padding: 20px 10px;
    background-color: #f9f9f8; /* 白色背景 */
    font-style: italic;
    font-weight: bold;
    color: #666;
    min-height: 100px; /* 確保引用區塊高度一致 */
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center;
  }
  
  /* 報價文字 */
  .quote-text {
    line-height: 1.5;
    font-size: 20px;
  }

  /* 購買按鈕區塊 */
  .buy-section {
    border-top: 1px solid #e0e0e0;
    background-color: #ff; /* 按鈕區塊的淺灰色背景 */
    padding:25px 0;
  }
  
 /* 立即購買按鈕樣式 - 替換成這個版本 */
.buy-button {
  /* 按鈕外觀設定 */
  background-color: #d5d1cc; /* &lt;--- 按鈕背景色 (深棕色/品牌色) */
  color: #5b4a3f;             /* &lt;--- 文字顏色 (白色) */
  padding: 10px 50px;         /* &lt;--- 增加垂直和水平填充 */
  border-radius: 5px;        /* &lt;--- 圓角半徑 (數值越大越圓) */
  cursor: pointer;
  
  /* 排版設定 (保持不變) */
  font-size: 16px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  text-decoration: none; /* 移除超連結底線 */
  
  /* 讓按鈕在其父容器 (.buy-section) 中居中 */
  margin: 0 auto;
}

  .buy-button:hover {
    color: #000;
  }

  /* 購物車圖標 (使用簡單文字圖標模擬) */
  .cart-icon {
    margin-right: 8px;
    font-size: 20px;
  }

  /* 響應式設計：在小螢幕上垂直堆疊 */
  @media (max-width: 768px) {
    .product-container {
      flex-direction: column;
      align-items: center;
      gap: 5px;
      padding: 20px 10px;
    }

    .product-card {
      max-width: 100%; /* 在手機上佔據更寬 */
    }
    
    .product-image-section {
      height: 250px; /* 在手機上調整圖片高度 */
    }
    .overlay-bottle{
         width: 90%;
    }
  }/* End custom CSS */